Le 01/01/2025 à 21:26, Christian Seberino via Postfix-users a écrit :
[...]
      server.login("cs@bighelp.business", password)
[...]
=================================================================================
doveconf -n
=================================================================================
[...]
passdb {
   driver = pam
}
[...]
userdb {
   driver = passwd
}

You're using the system auth databases, which have no notion of auth realm (ie. domain).

With your current config, Dovecot is trying to find a system user whose login is literally "cs@bighelp.business".

You need to configure auth_username_format = %n in Dovecot so it strips the domain before querying PAM.

To trying the login on the Dovecot side, without any interaction with Postfix, you can use (as root) :

doveadm auth test username password

Then, once it's working, you can move on to the Postfix/Dovecot integration.
_______________________________________________
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org

Reply via email to