我sender_bcc_maps = pcre:/etc/postfix/conf/sender_bcc
的后缀在这个文件中有如下规则
/[email protected]/ [email protected]
现在我需要向多个电子邮件发送密件副本。我尝试使用空格和逗号作为分隔符,但没有成功。有什么解决办法吗?谢谢。
编辑: 解决方案是(感谢 dynax60)将副本发送到 sender_bcc_maps 文件中的别名。然后用所需的地址设置此别名。
答案1
- 在/etc/postfix/main.cf中:
sender_bcc_maps = pcre:/etc/postfix/sender_bcc
- 在/etc/postfix/sender_bcc中:
/[email protected]/ [email protected]
- 在$virtual_alias_maps中:
[email protected] [email protected], [email protected], [email protected]
答案2
在 main.cf 中尝试这个:
sender_bcc_maps = hash:/usr/local/etc/postfix/bcc
bcc文件的内容是:
[email protected] [email protected]
[email protected] [email protected]
[email protected] [email protected]
不要忘记 /usr/local/etc/postfix/ 下的 postmap bcc。