main.cf中與bcc有關的三個設置
參數 |
含義 |
sender_bcc_maps |
經過 postfix 發送出去的郵件 |
recipient_bcc_maps |
經過 postfix 接收到的郵件 |
always_bcc |
經過 postfix 發送和接收的任何郵件。參數是單獨的 *一個* 郵件地址 |
注意:
- 若是設置了整個域的 bcc,又爲域內的某個用戶單獨設置了 bcc,則只有域的 bcc 會生效。
- bcc 不支持多個地址,只能是單個地址。
如何設置
若是你的postfix管理着多個郵件域,你但願將全部的進出郵件都轉發到一個地址,使用always_bcc進行簡單配置就能夠了。
編輯/etc/postfix/main.cf,加入
always_bcc = user@simple.org
若是須要爲不一樣的域設置不一樣的轉發地址,只針對個別用戶轉發或只須要保存接收信件,則只能使用sender_bcc_maps與recipient_bcc_maps了。
編輯/etc/postfix/main.cf,加入
sender_bcc_maps = hash:/etc/postfix/sender_bcc_maps
recipient_bcc_maps = hash:/etc/postfix/recipient_bcc_maps
而後創建/etc/postfix/sender_bcc_maps與/etc/postfix/recipient_bcc_maps
## 用戶##
#a@a.org c@c.org
#b@b.org c@c.org
## 全域##
#@a.org c@c.org
#@b.org c@c.org
根據你的須要,設置爲全域或者單個用戶便可
編輯完成後須要生成hash db,不然postfix讀不到配置文件
postmap hash:/etc/postfix/sender_bcc_maps
postmap hash:/etc/postfix/recipient_bcc_maps
最後執行postfix reload重載配置文件,你的更改就生效了