Replies: 2 comments 5 replies
-
I think those are mutually exclusive. Meaning, only one can be Another working config would be:
Other than that, it could be that Stalwart blocked the local IP - check your logs for errors. Without more detailed errors, it is hard to diagnose anything. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm able to use my email with thunderbird, it's even configure settings automatically but in my django application I can't send an email through smtp. I tried different ports like 25, 465, 993 so on ... Nothing works. I know my django system is working because I already tested with outlook smtp. I couldn't understand why this is happening.
Only error I could say is:
SMTP AUTH extension not supported by server. when I'm using this settings.
EMAIL_HOST = 'mail.tahinli.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = '123'
EMAIL_USE_TLS: True
EMAIL_USE_SSL: True
465 and 25 ports stucks in loading, I mean returns nothing but infinite waiting.
Beta Was this translation helpful? Give feedback.
All reactions