| Author |
Message |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Fri Jun 06, 2003 9:21 am |
|
Some have not been receiving their email activation notices (no idea why). If you have not received your email in about 10 minutes after registering, something is wrong. Please PM me with your username if this happens. Thanks! |
|
|
|
 |
AnGeL Guest

|
Posted:
Fri Jun 06, 2003 12:33 pm |
|
You are trying to access a restricted area.
We are Sorry, but this section of our site is for Registered Users Only.
You can register for free by clicking here, then you can
access this section without restrictions. Thanks......
Can't PM you...^^^^^^^^^^^ is all you get when tries..
have tried twice to register this am.. thanks.. AnGeL |
|
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Fri Jun 06, 2003 1:09 pm |
|
I activated your id  |
|
|
|
 |
MickP Hangin' Around

Joined: Sep 17, 2003 Posts: 31 Location: Australia
|
Posted:
Sun Apr 04, 2004 10:06 pm |
|
This is happening on my sites, and a few others that I know of (both nuke and other cms) and seems to be mainly to users who have AOL, Hotmail, Msn or yahoo email addresses. |
|
|
|
 |
MissVicky New Member


Joined: Mar 23, 2004 Posts: 21
|
Posted:
Tue Apr 06, 2004 12:36 am |
|
Raven, how did you manually activate his id?
Miss Vicky |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Tue Apr 06, 2004 5:15 am |
|
That was from June 6, 2003. You expect me to remember that ? I was having email problems with my ISP. Download my . That allows you to activate them by just clicking on the link yourself. |
|
|
|
 |
BobMarion Former Admin in Good Standing

Joined: Oct 30, 2002 Posts: 1043 Location: RedNeck Land (known as Kentucky)
|
Posted:
Tue Oct 19, 2004 11:28 pm |
|
Not to chime in here but I found when coding NSNYA that the email headers are not correctly formatted. they use AOL and those others will trash the email useless the headers usewhich means the Your Account file needs to be updated to use something like: | Code: | $from = "From: $adminmail\r\n";
$from .= "Reply-To: $adminmail\r\n";
$from .= "Return-Path: $adminmail\r\n";
mail($user_email, $subject, $message, $from); | instead of | Code: | $from = "From: $adminmail\n";
$from .= "Reply-To: $adminmail\n";
$from .= "Return-Path: $adminmail\n";
mail($user_email, $subject, $message, $from); |
|
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Wed Oct 20, 2004 6:10 am |
|
I have posted about this elsewhere in the past. The RFC requires '\r\n' but most servers are not 'strict' and allow '\n'. |
|
|
|
 |
|
|
|
|