Author |
Message |
nivz
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: May 18, 2006
Posts: 5
|
Posted:
Fri May 19, 2006 6:19 pm |
|
Hi guys,
I tried using the search for hours to find a complete solution for this but i couldn't, nd that's y i'm making this post.
I have the latest ravennuke installed and running fine, the only thing is it can't send activation emails to any address other than the once on my domain itself.
I contacted the hosting company and they said they've disabled php Mail() on their servers so i have to use smtp, and gave me a link to some code. I have no idea how to use that code, no idea which files to modify. So if u guys can tell me which files i have to modify it would be of great help.
here's the code they showed me.
Common Code
Code:<?php
//new function
$to = "post@example.com";
$nameto = "Who To";
$from = "post@example.com";
$namefrom = "Who From";
$subject = "Hello World Again!";
$message = "World, Hello!";
authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);
?>
|
Function Code
Code:<?php
/* * * * * * * * * * * * * * SEND EMAIL FUNCTIONS * * * * * * * * * * * * * */
//Authenticate Send - 21st March 2005
//This will send an email using auth smtp and output a log array
//logArray - connection,
function authSendEmail($from, $namefrom, $to, $nameto, $subject, $message)
{
//SMTP + SERVER DETAILS
/* * * * CONFIGURATION START * * * */
$smtpServer = "mail.server.com";
$port = "25";
$timeout = "30";
$username = "smtpusername";
$password = "smtppassword";
$localhost = "localhost";
$newLine = "\r\n";
/* * * * CONFIGURATION END * * * * */
//Connect to the host on the specified port
$smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout);
$smtpResponse = fgets($smtpConnect, 515);
if(empty($smtpConnect))
{
$output = "Failed to connect: $smtpResponse";
return $output;
}
else
{
$logArray['connection'] = "Connected: $smtpResponse";
}
//Request Auth Login
fputs($smtpConnect,"AUTH LOGIN" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authrequest'] = "$smtpResponse";
//Send username
fputs($smtpConnect, base64_encode($username) . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authusername'] = "$smtpResponse";
//Send password
fputs($smtpConnect, base64_encode($password) . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authpassword'] = "$smtpResponse";
//Say Hello to SMTP
fputs($smtpConnect, "HELO $localhost" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['heloresponse'] = "$smtpResponse";
//Email From
fputs($smtpConnect, "MAIL FROM: $from" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['mailfromresponse'] = "$smtpResponse";
//Email To
fputs($smtpConnect, "RCPT TO: $to" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['mailtoresponse'] = "$smtpResponse";
//The Email
fputs($smtpConnect, "DATA" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['data1response'] = "$smtpResponse";
//Construct Headers
$headers = "MIME-Version: 1.0" . $newLine;
$headers .= "Content-type: text/html; charset=iso-8859-1" . $newLine;
$headers .= "To: $nameto <$to>" . $newLine;
$headers .= "From: $namefrom <$from>" . $newLine;
fputs($smtpConnect, "To: $to\nFrom: $from\nSubject: $subject\n$headers\n\n$message\n.\n");
$smtpResponse = fgets($smtpConnect, 515);
$logArray['data2response'] = "$smtpResponse";
// Say Bye to SMTP
fputs($smtpConnect,"QUIT" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['quitresponse'] = "$smtpResponse";
}
?>
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
Site Admin/Owner
![](modules/Forums/images/avatars/45030c033f18773153cd2.gif)
Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Fri May 19, 2006 10:51 pm |
|
nivz, I have "cleaned up" your post for easier reference
Create a file called authSendEmail.php and place the Function Code block in the file and store it in the includes folder. Now, where ever you have the php mail() function, add include_once('includes/authSendEmail.php'); to any script that uses the mail() function. Then use the Common Code to set up (replace your mail() code. So, in essence, the function authSendEmail replaces every occurrence of mail() and the Common Code is the setup code to call it. You could change the Common Code block to read
Code:<?php
//new function
$to = "post@example.com";
$nameto = "Who To";
$from = "post@example.com";
$namefrom = "Who From";
$subject = "Hello World Again!";
$message = "World, Hello!";
include_once('includes/authSendEmail.php');
authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);
?>
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nivz
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat May 20, 2006 12:24 am |
|
I think i got it, I'll give it a shot and see what happens.. Thanks so much for the info!!
-edit-
Where can i find the code to send the activation emails? that's all i want to modify. I'm a complete noob@php so I ruined my site a couple of times and had to re install everything. (so i'm kinda scared to edit anything )
-edit-
Found the mail function in Your_Account module.
Code:
mail($user_email, $subject, $message, "From: $from\nX-Mailer: PHP/" . phpversion());
|
if i change every call to
Code:
include_once('includes/authSendEmail.php');
authSendEmail($from, "MY NAME" , $user_email, $user_email, $subject, $message);
|
will this work?
Again, sorry for troubling you... |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nivz
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat May 20, 2006 2:36 am |
|
Hi guys, I tried this and it's not working.. can someone tell me whether i'm doing anything wrong? or is there any other way to get around this? please consider that my php understaning is quite low so please be kind enough to explain in a lil detail..
Thanks....
Nivz |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat May 20, 2006 5:58 am |
|
If you used this code
Code:<?php
//new function
$to = "post@example.com";
$nameto = "Who To";
$from = "post@example.com";
$namefrom = "Who From";
$subject = "Hello World Again!";
$message = "World, Hello!";
include_once('includes/authSendEmail.php');
authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);
?>
|
then change this code
Code:include_once('includes/authSendEmail.php');
authSendEmail($from, "MY NAME" , $user_email, $user_email, $subject, $message);
|
to this
Code:authSendEmail($from, "MY NAME" , $user_email, $user_email, $subject, $message);
|
Now, as to your problem in getting it to work ....
I haven't tested your Host's code. but let's assume, for the moment, that it does work. In comparing the 2 calls
authSendEmail($from, "MY NAME" , $user_email, $user_email, $subject, $message);
with
mail($user_email, $subject, $message, "From: $from\nX-Mailer: PHP/" . phpversion());
Let's assume that under the PHP Mail() function you had this:
$user_email = "raven@ravenphpscripts.com";
$subject = "Test Email";
$message = "This is a test mail using the PHP Mail() function.";
$from = "you@yourdomain.com"; //Needs a valid email address
mail($user_email, $subject, $message, "From: $from\nX-Mailer: PHP/" . phpversion()); should work.
Now, mapping that to your Host's new function authSendEmail($from, $namefrom, $to, $nameto, $subject, $message); it should look like this:
//new function
$to = "raven@ravenphpscripts.com";
$nameto = "Raven";
$from = "you@yourdomain.com"; //Needs a valid email address
$namefrom = "NIVZ";
$subject = "Test Email";
$message = "This is a test mail using the Host authSendEmail function.";
authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);
Technically speaking, that should work. Make sure you comment out the mail() function in your code.
You can test this outside of Your_Account module by doing this. Make sure that you have correctly filled in the
//SMTP + SERVER DETAILS
/* * * * CONFIGURATION START * * * */
$smtpServer = "mail.server.com";
$port = "25";
$timeout = "30";
$username = "smtpusername";
$password = "smtppassword";
$localhost = "localhost";
$newLine = "\r\n";
/* * * * CONFIGURATION END * * * * */
Code:<?
//new function
$to = "raven@ravenphpscripts.com";
$nameto = "Raven";
$from = "you@yourdomain.com"; //Needs a valid email address
$namefrom = "NIVZ";
$subject = "Test Email";
$message = "This is a test mail using the Host authSendEmail function.";
$logArray = array();
$logArray = authSendEmail("From: $from\nX-Mailer: PHP/" . phpversion(), $namefrom, $to, $nameto, $subject, $message);
var_dump($logArray);
/* * * * * * * * * * * * * * SEND EMAIL FUNCTIONS * * * * * * * * * * * * * */
//Authenticate Send - 21st March 2005
//This will send an email using auth smtp and output a log array
//logArray - connection,
function authSendEmail($from, $namefrom, $to, $nameto, $subject, $message)
{
//SMTP + SERVER DETAILS
/* * * * CONFIGURATION START * * * */
$smtpServer = "mail.server.com";
$port = "25";
$timeout = "30";
$username = "smtpusername";
$password = "smtppassword";
$localhost = "localhost";
$newLine = "\r\n";
/* * * * CONFIGURATION END * * * * */
//Connect to the host on the specified port
$smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout);
$smtpResponse = fgets($smtpConnect, 515);
if(empty($smtpConnect))
{
$output = "Failed to connect: $smtpResponse";
return $output;
}
else
{
$logArray['connection'] = "Connected: $smtpResponse";
}
//Request Auth Login
fputs($smtpConnect,"AUTH LOGIN" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authrequest'] = "$smtpResponse";
//Send username
fputs($smtpConnect, base64_encode($username) . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authusername'] = "$smtpResponse";
//Send password
fputs($smtpConnect, base64_encode($password) . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authpassword'] = "$smtpResponse";
//Say Hello to SMTP
fputs($smtpConnect, "HELO $localhost" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['heloresponse'] = "$smtpResponse";
//Email From
fputs($smtpConnect, "MAIL FROM: $from" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['mailfromresponse'] = "$smtpResponse";
//Email To
fputs($smtpConnect, "RCPT TO: $to" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['mailtoresponse'] = "$smtpResponse";
//The Email
fputs($smtpConnect, "DATA" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['data1response'] = "$smtpResponse";
//Construct Headers
$headers = "MIME-Version: 1.0" . $newLine;
$headers .= "Content-type: text/html; charset=iso-8859-1" . $newLine;
$headers .= "To: $nameto <$to>" . $newLine;
$headers .= "From: $namefrom <$from>" . $newLine;
fputs($smtpConnect, "To: $to\nFrom: $from\nSubject: $subject\n$headers\n\n$message\n.\n");
$smtpResponse = fgets($smtpConnect, 515);
$logArray['data2response'] = "$smtpResponse";
// Say Bye to SMTP
fputs($smtpConnect,"QUIT" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['quitresponse'] = "$smtpResponse";
return $logArray;
}
?>
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nivz
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat May 20, 2006 1:44 pm |
|
I did fill the smtp bits correctly, (same settings on the forum works fine). only thing I think I've done wrong is putting
include_once('includes/authSendEmail.php');
b4 every call to authSendEmail(). If i only have to use this line once in the code, where should i put it? in the beginning of the script? or just use it before the fist call to authSendEmail() and just use the function from there after?
I replaced the mail function in the code with authSendMail().
Thanks for all the help,
Nivz. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat May 20, 2006 4:08 pm |
|
You only need it once and I'd add it towards the top. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nivz
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat May 20, 2006 10:50 pm |
|
Hi Raven, Still no luck.. I tried to send a test message using the authSendEmail() on a test script and it first said the include file is not there. Then i moved it to the same folder as the script was and then didn't get any error messages.
but the email has not been sent.. i think it's the code my host gave me, doesnt seem to be working...
I'll contact my hosting provider again anyway and see how it goes.. Thanks a billion times for the help raven..
Regards,
Nivz. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Jun 06, 2006
Posts: 105
|
Posted:
Sun Jun 11, 2006 4:41 pm |
|
Hello,
ok, so I've tried this test, what I did was the include the entire thing into one file, and I actually get a responce from my provider, however it still fails, here is what I get :
array(10) { ["connection"]=> string(53) "Connected: 220 smtp101.rog.mail.re2.yahoo.com ESMTP " ["authrequest"]=> string(18) "334 VXNlcm5hbWU6 " ["authusername"]=> string(18) "334 UGFzc3dvcmQ6 " ["authpassword"]=> string(27) "235 ok, go ahead (#2.0.0) " ["heloresponse"]=> string(36) "250 smtp101.rog.mail.re2.yahoo.com " ["mailfromresponse"]=> string(8) "250 ok " ["mailtoresponse"]=> string(28) "502 unimplemented (#5.5.1) " ["data1response"]=> string(8) "250 ok " ["data2response"]=> string(14) "354 go ahead " ["quitresponse"]=> string(49) "451 See http://pobox.com/~djb/docs/smtplf.html. " }
so when going to the http://pobox.com/~djb/docs/smtplf.html address, it's telling me that "Bare LFs in SMTP" is the problem. I've looked at the script, and I can't see where this problem is coming from.
btw, the above output is exactly as it is shown. The outputs don't show any CR. How can I add that to the code to make it easier to read?
Thanks in advance,
Spyrule.
p.s. - btw, This is the closest I have come so far as to figure out wtf has been causing me to not be able to send via my provider. So A HUGE pre-thank you !!!! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jun 11, 2006 4:47 pm |
|
btw,
I myself and not much of a php coder, but I do understand the principles of code, and general syntax. Also, everything else works nearly perfectly on my server, This is my last hurdle.
so..... JUMP!...
spyrule. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
Site Admin
![](modules/Forums/images/avatars/0c0adf824792d6d341ef4.gif)
Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Sun Jun 11, 2006 9:30 pm |
|
Maybe try in the mail headers to end each header "node" string with "\r\n".
Sorry, having trouble reading the output above. |
_________________ 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! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jun 11, 2006 10:45 pm |
|
what the hell does that mean ?!?! LOL!..
uhh, ok. I _think_ I know what you mean.
let me try ... |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jun 11, 2006 11:18 pm |
|
HAHAHAHAHAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... I figured it out..
and it works beautifully.... now I just have to implement it into nuke.
Wooohoooo... (4 days of trying to figure out my email problems)... |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jun 11, 2006 11:35 pm |
|
ok,
so here is the final update for those people, whose email servers require CR before LS (which is smtp standard I think). Minor fix to Raven's code.
BEFORE:
Code:
// (near the bottom, right after the 3 headers lines)
fputs($smtpConnect, "To: $to\nFrom: $from\nSubject: $subject\n$headers\n\n$message\n.\n");
|
AFTER:
Code:
// (near the bottom, right after the 3 headers lines)
fputs($smtpConnect, "To: $to\r\nFrom: $from\r\nSubject: $subject\r\n$headers\r\n\r\n$message\r\n.\r\n");
|
Basically, I think raven forgot the CR ( \ r ) before each new line ( \ n ).
I bolded them to indicate as such. Plus SMTP protocol requires the message to end in CRLF.CRLF . so thats why the \ r \ n . \ r \ n at the end of the last fputs command.
Anyway, it's 1:30am and I gotta work @ 6... so g'night. be back tommorow with a final update if it works throughout nuke.
Spyrule
P.s. - I will sleep with a smile on my face. Cheers guys. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jun 11, 2006 11:36 pm |
|
oh yeah, the bold doesn't work inside the code window, so I removed them. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Jun 12, 2006 5:17 am |
|
glad we could help!
![RavensScripts](modules/Forums/images/smiles/ravensphpscripts.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Jun 12, 2006 7:53 pm |
|
Well, ok
so I got the initial test script to work... but now I cannot figure out how to IMPLEMENT it into the registration process. I'm pretty sure its in the /Your_Account/index.php
I've added an include_once("includes/AuthSendEmail.php");
just under the initial comments section in the index file,
Then when I would see
Code:mail($user_email, $subject, $message, "From: $adminmail\nX-Mailer: PHP/" . phpversion());
| I would replace with :
Code:authSendEmail($from , 'TUGEVE PASSWORD', $user_email, 'member info', $subject, $message);
|
I've hard written the "from name", and "to name", into the command, but that shouldn't make a difference?!? does it?
ANY... seriously.. ANY help would be HUGELY apreciated.
(had my hopes up all night, and don't feel like this NOT working again!).
Thanks in advance,
Spyrule. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 6:25 am |
|
Try changing your $from variable to what you see in the BEFORE code and see if that works, because other than that, it sure looks like it would work.
Also, I am sure you tested it. If it does not work, please be specific with how it did not work, any output produced, error messages, etc. so that we can help debug better.
Regards. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 4:14 pm |
|
yeah,
see that's the unusual part... I don't get ANY errors, nor bad output. just the generic "message has been delivered" message when doing activations.
And as for log files, I don't know where to set/look for errors from php. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 9:44 pm |
|
Within your config.php file there is a $display_errors = 0 (by default) -- in some installations it could say "FALSE". Set this to a 1. If you have access to some sort of host provided control panel (almost all do), you should also have access to some tool there to look at your Apache error log, which might catch different kinds of errors.
You may have the use "echo" to check the values of your variables being passed into the send function just to make sure they are getting valued / passed as you would expect them to (based on your prior testing of this function outside of nuke). |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 10:05 pm |
|
Thanks,
Unfortunetly, That is part of my ghost log problem... I run my own Windows 2003 server with IIS 6, php 5.0.4, and mySQL 4.1 . I always had problem with apache in windows, so I found IIS to be fairly simple once I started using it.
I will try the config.php file though.... |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 10:10 pm |
|
ok,
so after enabling error generation, I found that I had called the include file twice.
removed the second one, and that error went away.
Now I essentially get NO error, but I still don't get the email.... argh!.
This is driving me bonker. Anybody know of a way to modify ravens above script so that it dumps the responce to either the screen or a file? a file would be nice and clean, and would help me figure stuff out, without having to mess with visual output.
I am sadly not a very knowledgable php coder... I can read it, understand it, but I have NO IDEA where to start to make the additions to the code to do that. ANY help is greatly apreciated.
btw, I'm sorry for being a "leach" for info... I usually try and do my research and do my own work, but this one seriously has me stumped....
Thanks,
Spyrule. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 10:14 pm |
|
Just do something like this within your PHP code:
echo $from.'<br>';
Change the $from variable name to whatever you need to. The '<br>' is just to force a line break in your output. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 10:53 pm |
|
Ok,
so I added the echo commands as you suggested :
example before :
fputs($smtpConnect,"AUTH LOGIN" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authrequest'] = "$smtpResponse";
I added:
fputs($smtpConnect,"AUTH LOGIN" . $newLine);
$smtpResponse = fgets($smtpConnect, 515);
$logArray['authrequest'] = "$smtpResponse";
echo "Login: ".$logArray['authrequest'].".<br>";
So, now I get the output :
Quote: |
Connection: Connected: 220 smtp100.rog.mail.re2.yahoo.com ESMTP .
Login: 334 VXNlcm5hbWU6 .
UID: 334 UGFzc3dvcmQ6 .
Password: 235 ok, go ahead (#2.0.0) .
HELO: 250 smtp100.rog.mail.re2.yahoo.com .
Mail From: 250 ok .
RCPT To: 250 ok .
data: 354 go ahead .
data2responce: 451 See http://pobox.com/~djb/docs/smtplf.html. .
QUIT: .
|
Now, the link at the bottom points to a document that talks about bare LFs.
however, I cannot find any bare lfs in the data2 nor any other section for that matter. You can view my script here :
http://eve.tugeve.net/testmail.txt
It's fairly well easy to read...
data2 is near the bottom.
again, any suggestion or help.. or maybe its just one of those "another set of eyes" type situations.
spyrule. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spyrule
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 13, 2006 10:54 pm |
|
btw,
of course my testmail sample, has any UID/PSWs removed. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|