メールサーバーとしてpostfix + dovecotを実行しているVPSサーバーがあります。私はすでにうまく機能する2つのアカウントを作成しました。どちらも STARTTLS と SSL 経由でメールを送受信できます。
しかし、今日 3 つ目のアカウントを追加したところ、メールの受信のみが可能で、SMTP サーバーに接続できませんでした。したがって、間違ったパスワードの問題ではありません。SMTP 設定は、他の 2 つのアカウントと同じです。クライアントの設定は正しいはずです。
後置ログには次のように書かれています:
Aug 28 12:55:32 server postfix/smtpd[1645]: warning: SASL authentication failure: Password verification failed
Aug 28 12:55:32 server postfix/smtpd[1645]: warning: unknown[203.97.197.232]: SASL PLAIN authentication failed: authentication failure
Aug 28 12:55:35 server postfix/smtpd[1645]: warning: unknown[203.97.197.232]: SASL LOGIN authentication failed: authentication failure
main.cf の sasl および tls 設定は次のとおりです。
smtpd_sasl_auth_enable = yes
smtpd_sasl_type = cyrus
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_sasl_authenticated_header = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
smtpd_tls_auth_only = no
smtp_use_tls = yes
smtpd_use_tls = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
誰でも私を助けることができますか?
どうもありがとうございました。