smtpout.secureserver.net
and has a PORT OF 80 OR 3535. But I can't seem to figure out where I can enter this port designation, since smtpout.secureserver.net does not support port 25.
I get the following if I enter smtp.secureserver.net:3535 or 80 in the smtp settings:
Could not connect to smtp host : 97 : Address family not supported by protocol
DEBUG MODE
Line : 112
File : smtp.php
Is there a line of code I will have to change maybe to get this to send outgoing e-mail?
If I leave out the port designation, I get the following, which is expected:
Could not connect to smtp host : 110 : Connection timed out
DEBUG MODE
Line : 112
File : smtp.php
So, playing around with the code, I found in smtp.php line 110:
- Code: Select all
if( !$socket = @fsockopen($board_config['smtp_host'], 25, $errno, $errstr, 20) )
{
message_die(GENERAL_ERROR, "Could not connect to smtp host : $errno : $errstr", "", __LINE__, __FILE__);
}
But changing that "25" to either one of my host's ports did not work either. It just gives me the Connection Timed Out error again.
:::EDIT:::
I've gotten it to go past that point now by messing with some other code, but now it fails:
Ran into problems sending Mail. Response: 451 Internal error.
DEBUG MODE
Line : 132
File : smtp.php
Line 132 is dealing with the password...
- Code: Select all
131: fputs($socket, base64_encode($board_config['smtp_password']) . "\r\n");
132: server_parse($socket, "235", __LINE__);
