Hi
I have been setting up a web page, WWW and mail server using the Xampp package. So far I have been able to overcome all my inexperience with the help of guides and what not, but have walked in to something I dont find any answer to.
My one PHP script requires e-mail verification, and I use PHPmailer through Mercury for that. I set up Mercury to use my Gmail, and everything works just fine, except for a communication gap between Mercury and PHPmailer.
I submit registration details and after a while I get :
Warning: fsockopen() [function.fsockopen]:
unable to connect to :25 (A connection attempt failed because the
connected party did not properly respond after a period of time, or
established connection failed because connected host has failed to
respond.
) in C:\Inetpub\PhP and Sql\xampp\htdocs\class.smtp.php on line 122
1. I changed the time-out in the PHPscript to 60 seconds even, but no luck.
2. The process completes successfully though, and I get my mail in Gmail without any problems.
T 20100130 024535 4b639d11 Connection from 127.0.0.1
T 20100130 024535 4b639d11 HELO danie
T 20100130 024535 4b639d11 MAIL FROM:<postmaster@localhost>
T 20100130 024535 4b639d11 RCPT TO:<7fatcowsinfo@gmail.com>
T 20100130 024535 4b639d11 DATA
T 20100130 024535 4b639d11 DATA - 29 lines, 661 bytes.
T 20100130 024535 4b639d11 QUIT
T 20100130 024535 4b639d11 Connection closed with 127.0.0.1, 0 sec. elapsed.
Is there some setting in Mercury that I need to set in order for it to acknowledge to the script that the process was successful ? Or am I missing something else completely ?