smtp connect failed

hwp994108018

New Member
Hello,
I have mailwizz installed, and have a remote smtp server ready, it works, and I have tested it via https://www.gmass.co/smtp-test.
However, when I add Delivery Server, the system displays an error “
  • Connection could not be established with host IP :stream_socket_client(): Unable to connect to tcp://IP:25 (Connection timed out)
    Log data:
    ++ Starting Swift_SmtpTransport
    !! Connection could not be established with host IP :stream_socket_client(): Unable to connect to tcp://IP:25 (Connection timed out) (code: 0)
 
Most likely your hosting is blocking outgoing connections, this is why you could connect to the same smtp server from outside your host but not from within. Contact them and ask them about it.
 
PING google.com (142.250.217.238) 56(84) bytes of data.
64 bytes from pnlgaa-ay-in-f14.1e100.net (142.250.217.238): icmp_seq=1 ttl=118 time=1.24 ms
64 bytes from mia07s62-in-f14.1e100.net (142.250.217.238): icmp_seq=2 ttl=118 time=1.16 ms
64 bytes from pnlgaa-ay-in-f14.1e100.net (142.250.217.238): icmp_seq=3 ttl=118 time=1.39 ms
64 bytes from pnlgaa-ay-in-f14.1e100.net (142.250.217.238): icmp_seq=4 ttl=118 time=1.15 ms
64 bytes from mia07s62-in-f14.1e100.net (142.250.217.238): icmp_seq=5 ttl=118 time=1.18 ms
64 bytes from pnlgaa-ay-in-f14.1e100.net (142.250.217.238): icmp_seq=6 ttl=118 time=1.19 ms
64 bytes from mia07s62-in-f14.1e100.net (142.250.217.238): icmp_seq=7 ttl=118 time=1.22 ms
64 bytes from mia07s62-in-f14.1e100.net (142.250.217.238): icmp_seq=8 ttl=118 time=1.20 ms
^C
--- google.com ping statistics ---
8 packets transmitted, 8 received, 0% packet loss, time 7011ms
This seems to have nothing to do with the outgoing block.
 
You need to test the connection to the smtp hostname using the port 25, so maybe something like
Code:
telnet my-smtp-ip 25
ping is really useless in this case, it does not tell you if you can or cannot connect on a certain host and port combo.
 
Back
Top