我正在尝试在 AWS EC2 实例上将后缀设置为 MTA。我想将它用作我的域的邮件服务器,并希望将它与 Outlook/Thunderbird 一起使用。
我以前从未设置过后缀,因此我在这里使用了这个很棒的指南:
http://flurdy.com/docs/postfix/
现在我可以通过 STARTTLS 连接到服务器到 mail.mydomain.com 并通过 Thunderbird 向我自己的电子邮件帐户 [email protected] 发送电子邮件。
但是,当我尝试向外部域 [email protected] 发送电子邮件时出现错误Relay access denied.
日志显示:
May 31 14:55:58 ip-172-31-23-97 postfix/smtpd[13500]: NOQUEUE: reject: RCPT from myhostname[97.192.4.67]: 554 5.7.1 <[email protected]>: Relay access denied; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<[192.168.178.64]>
我的后缀配置:
我知道有很多页面可以解决这个问题。
主要问题可以通过 来解决adjusting mynetworks
,smtpd_recipient_restrictions
或者smtpd_relay_restrictions
没有任何更改可以解决我的问题。
我能做些什么来解决这个问题?
我认为问题出在这里
尝试添加和网络 192.168.178.0/24 和 del #
smtpd_sasl_auth_enable = yes
是必须的。(不是 smtp_sasl_auth_enable)也许,可能需要更改 smtpd_recipient_restrictions 的顺序。
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, (other reject rules)