ここにある他のスレッドも確認しましたが、どれも私の問題を解決してくれないようです。送信メールを SMTP 経由で Postfix から Mailgun に中継しようとしています。私のサーバーも Plesk を実行しています。
私のPostfix設定は次のとおりです。
メイン.cf:
smtp_sasl_password_maps = hash:/etc/postfix/sasl_pass
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
smtp_sasl_mechanism_filter = AUTH LOGIN
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_dependent_relayhost
smtpd_sasl_auth_enable = yes
sasl_pass:
[smtp.mailgun.org]:587 [email protected]:password
送信者依存リレーホスト:
@mydomain.org [smtp.mailgun.org]:587
Mailgun では、私のドメインは DNS 検証済みであり、アカウントは SMS/電子メール検証済みであることを確認できます。 ご提案があれば、ぜひお知らせください。
答え1
私の間違いはSMTPを使ったことだったd_sasl_auth_enable = yes ではなく smpt_sasl_auth_enable です。これで、smtp と smtpd には違いがあることがわかりました...