2

Sendgridにリレー経由で電子メールを配信するようにPostfixを設定するのに問題があります。

次のエラーが発生します:「認証されていない送信者は許可されていません」

4

1 に答える 1

3

Sendgridへの認証を行うPostfix内のSASL構成のようです。以下を使用することができました:

smtpd_sasl_local_domain = $myhostname
smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination
mailbox_size_limit = 256000000

# Sendgrid Settings
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = static:SENDGRID_ACCOUNT_EMAIL_HERE:PASSWORD_HERE
smtp_sasl_security_options = noanonymous
smtp_tls_security_level = may
header_size_limit = 4096000
relayhost = [smtp.sendgrid.net]:587
于 2012-03-20T17:20:05.007 に答える