答案1
您可以强制邮件服务器重写发件人地址。在 Postfix 上,可以这样做这方式:
- 在 postfix main.cf 上添加您的域名
mydomain
,并在 postfix main.cf 中启用通用映射:
postconf -e 'mydomain = example.com'
postconf -e 'smtp_generic_maps = hash:/etc/postfix/generic'
将重写规则放入
/etc/postfix/generic
:运行 postmap:
postmap /etc/postfix/generic
重新加载后缀:
postfix reload