答案1
您必须Sender-Dependent SASL authentication
在 Postfix 中进行配置。请将以下几行添加到您的main.cf
#/etc/postfix/main.cf
#...
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
relayhost = smtp.gmail.com:587
smtp_tls_security_level = may
smtp_sasl_security_options =
#...
并/etc/postfix/sasl_passwd
使用以下内容创建。
[email protected] username1:password1
[email protected] username2:password2
执行postmap /etc/postfix/sasl_passwd
并重新加载 postfix。
参考:Postfix 文档