使用Postfix通过Amazon SES发送邮件的
Linux服务器.从wordpress发送电子邮件时,由于信封地址不正确,电子邮件将被拒绝.
如何配置Postfix以始终将myemail@mydomain.com用作Envelope From地址?
解决方法
将以下内容放在/ etc / postfix / canonical中:
# Use the empty regexp to map *any* address to the desired envelope sender. // my-fixed-envelope-sender@example.org
将以下内容附加到/etc/postfix/main.cf:
canonical_maps = regexp:/etc/postfix/canonical canonical_classes = envelope_sender
重新加载Postfix:
postfix reload
请注意,这只会重写信封发件人(按要求),而不是“发件人:”标题.此外,如果您在接收来自外部世界的邮件的主机上设置此项,则可能会发生严重破坏.
有关详细信息,请参阅canonical(5)和canonical_maps和canonical_classes选项的文档.