我已经使用iRedMail设置了邮件服务器。它应该充当Web应用程序的SMTP服务器。 Postfix仅限于localhost使用。
我们假设我创建了一个帐户web@example.com
。
我需要的是允许设置任意from
标头,例如bar@example.com
,甚至是baz@my-second-domain.com
目前这是拒绝:
postfix/smtpd[7386]: NOQUEUE: reject: RCPT from ***[127.0.0.1]: 550 5.1.0 <notlviv@pb.org.ua>: Sender address rejected: User unknown in virtual mailbox table; from=<notlviv@pb.org.ua> to=<some@email.com> proto=ESMTP helo=<[127.0.0.1]>
如何允许这样做?
答案 0 :(得分:0)
好的,想通了:
smtpd_reject_unlisted_sender = yes # set to no
# Sender restrictions
smtpd_sender_restrictions =
reject_unknown_sender_domain
reject_non_fqdn_sender
reject_unlisted_sender # comment this