esackbauer
Yes, in the domain I set the transport.
I ran this command from the docs:
ss -tlpn | grep -E -w '25|80|110|143|443|465|587|993|995|4190'
and this is the result:
LISTEN 0 4096 0.0.0.0:587 0.0.0.0:* users:(("docker-proxy",pid=1059,fd=4))
LISTEN 0 4096 0.0.0.0:995 0.0.0.0:* users:(("docker-proxy",pid=1936,fd=4))
LISTEN 0 4096 0.0.0.0:993 0.0.0.0:* users:(("docker-proxy",pid=1999,fd=4))
LISTEN 0 4096 0.0.0.0:143 0.0.0.0:* users:(("docker-proxy",pid=2098,fd=4))
LISTEN 0 4096 0.0.0.0:25 0.0.0.0:* users:(("docker-proxy",pid=1413,fd=4))
LISTEN 0 4096 0.0.0.0:110 0.0.0.0:* users:(("docker-proxy",pid=2137,fd=4))
LISTEN 0 4096 0.0.0.0:80 0.0.0.0:* users:(("docker-proxy",pid=1375,fd=4))
LISTEN 0 4096 0.0.0.0:4190 0.0.0.0:* users:(("docker-proxy",pid=1888,fd=4))
LISTEN 0 4096 0.0.0.0:443 0.0.0.0:* users:(("docker-proxy",pid=1251,fd=4))
LISTEN 0 4096 0.0.0.0:465 0.0.0.0:* users:(("docker-proxy",pid=1340,fd=4))
LISTEN 0 4096 [::]:587 [::]:* users:(("docker-proxy",pid=1117,fd=4))
LISTEN 0 4096 [::]:995 [::]:* users:(("docker-proxy",pid=1942,fd=4))
LISTEN 0 4096 [::]:993 [::]:* users:(("docker-proxy",pid=2038,fd=4))
LISTEN 0 4096 [::]:143 [::]:* users:(("docker-proxy",pid=2109,fd=4))
LISTEN 0 4096 [::]:25 [::]:* users:(("docker-proxy",pid=1420,fd=4))
LISTEN 0 4096 [::]:110 [::]:* users:(("docker-proxy",pid=2147,fd=4))
LISTEN 0 4096 [::]:80 [::]:* users:(("docker-proxy",pid=1383,fd=4))
LISTEN 0 4096 [::]:4190 [::]:* users:(("docker-proxy",pid=1899,fd=4))
LISTEN 0 4096 [::]:443 [::]:* users:(("docker-proxy",pid=1283,fd=4))
LISTEN 0 4096 [::]:465 [::]:* users:(("docker-proxy",pid=1351,fd=4))
If I run
telnet in-v3.mailjet.com 587
it doesn’t connect so it seems like something is blocked, but I’m not sure how to fix it despite looking through lots of different posts on this forum already. Sorry for the lack of knowledge, I’m new to server management and trying to learn.