参数 含义
代码: 全选
sender_bcc_maps 通过 postfix 发送出去的邮件
recipient_bcc_maps 通过 postfix 接收到的邮件
always_bcc 通过 postfix 发送和接收的任何邮件。参数是单独的 *一个* 邮件地址
如果设置了整个域的 bcc,又为域内的某个用户单独设置了 bcc,则只有域的 bcc 会生效。
bcc 不支持多个地址,只能是单个地址。
如何设置
如果你的postfix管理着多个邮件域,你希望将所有的进出邮件都转发到一个地址,使用always_bcc进行简单配置就可以了。
编辑/etc/postfix/main.cf,加入
代码: 全选
always_bcc = [email protected]
编辑/etc/postfix/main.cf,加入
代码: 全选
sender_bcc_maps = hash:/etc/postfix/sender_bcc_maps
recipient_bcc_maps = hash:/etc/postfix/recipient_bcc_maps
代码: 全选
## 用户##
#[email protected] [email protected]
#[email protected] [email protected]
## 全域##
#@a.org [email protected]
#@b.org [email protected]
编辑完成后需要生成hash db,否则postfix读不到配置文件
代码: 全选
postmap hash:/etc/postfix/sender_bcc_maps
postmap hash:/etc/postfix/recipient_bcc_maps