Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upUnable to connect #551
Unable to connect #551
Comments
|
just for kicks I configured my mail client to try to connect to localhost. I tried using both "admin@whatever.io" and "admin" for the user name (both failed). tried port 587, with and without SSL (both failed), port 25. no can do. it cannot connect |
|
also, I've exec'd into the container (telnet's not available but nc is) and tried this:
where the parameter to AUTH PLAIN was generated like this (notice I'm using only "admin" as the account name ("admin@whatever.io" produces similar results)):
help? |
|
more thrashing about. I changed my
so as you can see, I turned debugging on, made the server SMTP only (I only need it to send mail), turned on SSL (with a self-signed cert), and enabled SASL's AUTHD. I also found PERMIT_DOCKER, which I believe means it can share services with my docker host (from where I'm performing the testing) I rebuilt the image like this:
I also tried connecting using openssl but that didn't go very well either:
I also found that my previous Base64 encryption was messed up. this is correct:
but when trying it I get authentication failures:
for both the account name "admin" and the fully-qualified version:
so I just can't get this to work |
|
all right. enough aggravation with this. I found something that actually just works: |
|
I closed the issue but, actually, I think I'll leave it open. I'm happy to work with whomever wants to help to see if we can figure it out and help the project |
|
Hi @ekkis, There are a lot of comments so I'm gonna try to answer as I can.
Let me know if I can help. |
|
Hi @ekkis, without news from you, I close this issue. |
I've started the container using docker-compose as suggested. successfully added an account:
$ setup.sh email listbut when I try to telnet into the server (I want to follow something like: http://commandlinemac.blogspot.com/2008/12/smtp-testing-from-command-line.html) I just get immediately disconnected
$ telnet localhost 25what could the issue here be?