-
Got my docker container up and running, setup my nginx proxy manager to allow the ports 25/143/587 updates my dns record with the dkim keys created the empty postfix-access.cf and postfix-recieve.cf I'm able to connect to the server and login with thunderbird, But then i am unable to send or recieve emails. It keeps saying have the wrong password, but I'm sure I've entered it correctly, and any time i try the other password times, plain/encrypted etc, it says the server wants the plain password. here are the logs of the container booting, me connecting with thunderbird, and then me attempting to send an email via thunder bird.
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
Afaik NPM only supports HTTP(S). Edit: TIL this can be done with "streams" in NPM. |
Beta Was this translation helpful? Give feedback.
-
I would start with a basic setup and once that is working, start adding other things like NPM.
This looks like you did not provide a domain for the "admin" user? You probably want something like |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Ok, I think i see whats causing the issue, but i don't know whats causing it. In the server I've created the [email protected] account in Thunderbird I'm entering the [email protected] but when the server tries to process the login its only seeing the user name and not the full email. Thunderbird tries multiple attempts to login, after 3 fail2ban kicks in and bans the IP Im access the server from , which causes the imap connection to no longer report its starttls status. this is because thunderbird by default changes the username its using for authentication to just the user part of the email address, unless you manually over ride it. I have no clue how many months I have been scratching my head around this issue, but I'm glad to have finally solved it. I've been able to successfully log in, and connect to the server with thunderbird now. |
Beta Was this translation helpful? Give feedback.
Ok, I think i see whats causing the issue, but i don't know whats causing it.
In the server I've created the [email protected] account
in Thunderbird I'm entering the [email protected]
but when the server tries to process the login its only seeing the user name and not the full email.
Thunderbird tries multiple attempts to login, after 3 fail2ban kicks in and bans the IP Im access the server from , which causes the imap connection to no longer report its starttls status.
this is because thunderbird by default changes the username its using for authentication to just the user part of the email address, unless you manually over ride it.
I have no clue how many months I have be…