Author |
Message |
blinksy
Hangin' Around

Joined: Apr 25, 2007
Posts: 33
|
Posted:
Mon Apr 30, 2007 8:37 am |
|
Hi,
I tried implementing the nuke no user email verification mod as All my registration emails go straight to junk email folders, leaving a lot of my users in the waiting section.
Can anyone suggest a way to either disable the user verification or get my emails out of the junk folder?
Sorry if this is the incorrect forum to post in  |
|
|
|
 |
hitwalker
Sells PC To Pay For Divorce

Joined:
Posts: 5661
|
Posted:
Mon Apr 30, 2007 8:56 am |
|
junk email folders of your members ? |
|
|
|
 |
blinksy

|
Posted:
Mon Apr 30, 2007 11:08 am |
|
Yes, I have been testing with various different email accounts and both in hotmail and gmail, my registration activation email goes into the junk email folder. When users are keen to visit my site half of them dont look in there and then forget about it. |
|
|
|
 |
hitwalker

|
Posted:
Mon Apr 30, 2007 11:59 am |
|
is the outgoing message and title somewhat altered or is it pure standard text ? |
|
|
|
 |
evaders99
Former Moderator in Good Standing

Joined: Apr 30, 2004
Posts: 3221
|
Posted:
Mon Apr 30, 2007 12:14 pm |
|
There's a number of No Mail / Auto-activation hacks you can try |
_________________ - Only registered users can see links on this board! Get registered or login! -
Need help? Only registered users can see links on this board! Get registered or login! |
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Mon Apr 30, 2007 5:52 pm |
|
blinksy wrote: | Yes, I have been testing with various different email accounts and both in hotmail and gmail, my registration activation email goes into the junk email folder. When users are keen to visit my site half of them dont look in there and then forget about it. |
Very odd. I have not seen that problem, at least not to the scale that you seem to be referring to. Some mail services will add headers to the emails in the junk folder that may give you a clue as to why they are considering it junk.
It might be good to take a look at the expanded email headers and see if anything stands out. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
blinksy

|
Posted:
Mon Apr 30, 2007 11:31 pm |
|
evaders99 wrote: | There's a number of No Mail / Auto-activation hacks you can try |
I tried to use one, but when it came to using your account all i got was blank white pages.
Can anyone suggest a good YA hack? |
|
|
|
 |
hitwalker

|
Posted:
Tue May 01, 2007 4:01 am |
|
try turning on error report,that will show some error as blank pages indicates that. |
|
|
|
 |
blinksy

|
Posted:
Tue May 01, 2007 8:39 pm |
|
Turned on error reporting and received.
Fatal error: Cannot redeclare makepass() in /home/metalthron/domains/metalthrone.net/public_html/modules/Your_Account/index.php on line 48
Here is a snippet of the YA file
Code:function makePass() {
$cons = "bcdfghjklmnpqrstvwxyz";
$vocs = "aeiou";
for ($x=0; $x < 6; $x++) {
mt_srand ((double) microtime() * 1000000);
$con[$x] = substr($cons, mt_rand(0, strlen($cons)-1), 1);
$voc[$x] = substr($vocs, mt_rand(0, strlen($vocs)-1), 1);
}
$makepass = $con[0] . $voc[0] .$con[2] . $con[1] . $voc[1] . $con[3] . $voc[3] . $con[4];
return($makepass);
}
function confirmNewUser($username, $user_email, $user_password, $user_password2, $random_num, $gfx_check, $user_question, $user_answer) {
global $stop, $EditedMessage, $sitename, $module_name, $minpass;
@include("header.php");
@include("config.php");
filter_text($username);
$username = $EditedMessage;
$user_viewemail = "0";
userCheck($username, $user_email);
userCheck2($user_question, $user_answer);
if (!$stop) {
$datekey = date("F j");
$rcode = hexdec(md5($_SERVER[HTTP_USER_AGENT] . $sitekey . $_POST[random_num] . $datekey));
$code = substr($rcode, 2, 6);
if (extension_loaded("gd") AND $code != $gfx_check AND ($gfx_chk == 3 OR $gfx_chk == 4 OR $gfx_chk == 6 OR $gfx_chk == 7)) {
title(""._NEWUSERERROR."");
OpenTable();
echo "<center><b>"._SECCODEINCOR."</b><br><br>"
.""._GOBACK."</center>";
CloseTable();
@include("footer.php");
die();
}
|
|
|
|
|
 |
montego

|
Posted:
Tue May 01, 2007 9:20 pm |
|
Is the full code around this function the following:
Code:
if (!function_exists('makepass')) {
function makePass() {
$cons = 'bcdfghjklmnpqrstvwxyz';
$vocs = 'aeiou';
for ($x=0; $x < 6; $x++) {
mt_srand ((double) microtime() * 1000000);
$con[$x] = substr($cons, mt_rand(0, strlen($cons)-1), 1);
$voc[$x] = substr($vocs, mt_rand(0, strlen($vocs)-1), 1);
}
mt_srand((double)microtime()*1000000);
$num1 = mt_rand(0, 9);
$num2 = mt_rand(0, 9);
$makepass = $con[0] . $voc[0] .$con[2] . $num1 . $num2 . $con[3] . $voc[3] . $con[4];
return($makepass);
}
}
|
I have a feeling you may not be using RavenNuke(tm) 2.10.00? |
|
|
|
 |
blinksy

|
Posted:
Tue May 01, 2007 10:06 pm |
|
This is the code from a No email YA hack file, not the RN file.
Code:function makePass() {
$cons = "bcdfghjklmnpqrstvwxyz";
$vocs = "aeiou";
for ($x=0; $x < 6; $x++) {
mt_srand ((double) microtime() * 1000000);
$con[$x] = substr($cons, mt_rand(0, strlen($cons)-1), 1);
$voc[$x] = substr($vocs, mt_rand(0, strlen($vocs)-1), 1);
}
$makepass = $con[0] . $voc[0] .$con[2] . $con[1] . $voc[1] . $con[3] . $voc[3] . $con[4];
return($makepass);
}
|
|
|
|
|
 |
blinksy

|
Posted:
Tue May 01, 2007 10:12 pm |
|
Hey i replaced the code with the RN YA bit pasted above and it all works great.
Problem is when trying to login after registering i simply get an Access Denied page. |
|
|
|
 |
montego

|
Posted:
Wed May 02, 2007 6:58 am |
|
The RN YA module code has moved around considerably and could look quite different since that original hack was written. You may be better off in the meantime just replacing what you have now with the index.php from the RN distro as it seems that the hack is not going well for you. You might be better served figuring out why your emails are getting into people's junk mail folders... I offerred an advice on that above.
I don't have much time these days, but I have put this on my "to do" list to check out that original hack and see if I can re-do that for RN. |
|
|
|
 |
montego

|
Posted:
Fri May 11, 2007 7:15 am |
|
BTW, it would still be helpful if you could post this:
Quote: |
It might be good to take a look at the expanded email headers and see if anything stands out.
|
|
|
|
|
 |
blinksy

|
Posted:
Fri May 11, 2007 7:50 am |
|
It seems to have fixed itself with time montego. I am not getting as many posts go to junk mail.
Will however, when i find the time to reinstall properly, look at finding a no activation hack.
Cheers |
|
|
|
 |
|