Dockage breaks outbound SMTP #573
Unanswered
dlehman83
asked this question in
Ask for Help
Replies: 1 comment 1 reply
-
I'm sure I'm missing something but you haven't specified an smtp port (normally port 25) during your telnet attempt. Is that just overeager data sanitisation? Or is the telnet attempt going to the default telnet port (by default port 23) ? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
🛡️ Security Policy
📝 Describe your problem
I have been trying to get SMTP working for one of my containers and it kept failing / timing out. I started troubleshooting at the host level and found dockage to be the issue. There is no mapping in the compose file to port 25 so this makes no sense.
If the dockage container is stopped, I can telnet to port 25
when I start the dockage container, telnet to port 25 gets connection refused.
Below is the output of this test.
I'm not sure if I have something configured wrong or if I need to open a bug report.
📝 Error Message(s) or Log
root@Docker:/opt/dockge# telnet smtpip 25
Trying smtpip...
Connected to 1 smtpip.
Escape character is '^]'.
220 smtphostname ESMTP Postfix (Ubuntu)
quit
221 2.0.0 Bye
Connection closed by foreign host.
root@Docker:/opt/dockge# cat compose.yaml
root@Docker:/opt/dockge# docker compose up -d
[+] Running 2/2
✔ Network dockge_default Created 0.1s
✔ Container dockge-dockge-1 Started 0.6s
root@Docker:/opt/dockge# telnet smtpip 25
Trying smtpip...
telnet: Unable to connect to remote host: Connection refused
root@Docker:/opt/dockge#
🐻 Dockge Version
1.4.2
💻 Operating System and Arch
Ubuntu 24.04 x86_64
🌐 Browser
Chrome 126
🐋 Docker Version
27.1.0, build 6312585
🟩 NodeJS Version
No response
Beta Was this translation helpful? Give feedback.
All reactions