Fedora Core 500の技
Valid XHTML 1.0!
正当なCSSです!

TOP > Linux > Fedoraの技 > 401-500 > 425

postfixですべてのメールにbccを指定するには

postfixを利用して送信されるすべてのメールに対して、強制的にbccを加えることができます。記録としてすべての送信メールを保存したいときなどに便利でしょう。

設定にはmain.cfでalways_bccを利用します。下記はjohnを指定した例です。

# vi /etc/postfix/main.cf
always_bcc = john

メールを送信すると、johnにも送信されることが分かります。

$ mail -s "hello from ringo to paul" paul < /dev/null
# tail /var/log/maillog
Sep 29 17:54:27 srever2 postfix/qmgr[4734]: 58292F8AAC: from=<ringo@server2.fedora500.jp>, size=296, nrcpt=2 (queue active)
Sep 29 17:54:27 srever2 postfix/local[5873]: 58292F8AAC: to=<john@server2.fedora500.jp>, relay=local, delay=0, status=sent (delivered to mailbox)
Sep 29 17:54:27 srever2 postfix/local[5874]: 58292F8AAC: to=<paul@server2.fedora500.jp>, orig_to=<paul>, relay=local, delay=0, status=sent (delivered to mailbox)

2005-12-03 作成