我想要实现的最终结果是发出的电子邮件也应该进入发送箱。受到各种其他答案的启发,我尝试了多种方法来做到这一点,但到目前为止还没有奏效。
我能够发送和接收电子邮件,但它们永远不会被密件抄送。
相关配置是这样的:
postfix master.cf:
submission inet n - y - - smtpd
-o content_filter=smtp-amavis:[127.0.0.1]:10026
-o smtpd_tls_security_level=encrypt
-o smtpd_sasl_auth_enable=yes
-o smtpd_recipient_restrictions=permit_mynetworks,permit_sasl_authenticated,reject
-o smtpd_sasl_type=dovecot
-o smtpd_sasl_path=private/auth
-o sender_bcc_maps=/etc/postfix/sender_bcc
发件人_密件抄送:
[email protected] [email protected]
我已经设置了筛子来将其过滤到发送的文件夹中,并且已经确认该部分有效,但为什么没有任何内容被密件抄送?
注意:我也尝试过,而不是sender_bcc_maps,[电子邮件受保护],但它也不起作用。
我(大部分)已经弄清楚了。发生了一些事情。
所有这些都使得密件抄送得以发挥作用。我还有其他问题需要解决,但它们不相关。