Quote:
Originally Posted by kfiasche81
i have change it whit my real server..! but i receive the same error
|
That error is telling you it cannot communicate with your mail server. In order to determine if it's a plugin issue or a connection issue, you'll need to verify you can open a connection to
PORT 25 of the hostname reflected in the error message.
For example, if the error is:
Quote:
Warning: fsockopen() [function.fsockopen]: unable to connect to mymailserver.com:25 in /wmail/inc_smtp.php on line 51
|
You'll want to telnet to
MYMAILSERVER.COM:25 and see if you receive a reply.
Quote:
$ telnet mymailserver.com 25
Trying mymailserver.com...
Connected to mymailserver.com.
Escape character is '^]'.
220 mymailserver.com ESMTP
HELO
250 mymailserver.com
QUIT
221 mymailserver.com
Connection close by foreign host.
|
If you have a successful connection, it would look similar to the above. If the connection is
NOT successful, it will look similar to this:
Quote:
$ telnet mymailserver.com 25
Trying mymailserver.com...
telnet: Unable to connect to remote host: Connection refused
|
Hope this helps!