postfix でメール送信先を制限(固定)する
概要
開発環境等で特定の宛先にしかメールを送信したくない場合の設定メモ
設定内容
# vi /etc/postfix/main.cf
//以下を追加
canonical_maps = regexp:/etc/postfix/canonical.regexp
# vi /etc/postfix/canonical.regexp
#全てのメール
/^.+$/ [email protected]
#特定ドメインを除外
!/.+\@(hogehoge\.co\.jp|.*\.hogehoge\.jp)/ [email protected]
#送信先ドメインを変更
/@.+$/ @example.com
# /etc/init.d/postfix reload
# vi /etc/postfix/main.cf
//以下を追加
canonical_maps = regexp:/etc/postfix/canonical.regexp
# vi /etc/postfix/canonical.regexp
#全てのメール
/^.+$/ [email protected]
#特定ドメインを除外
!/.+\@(hogehoge\.co\.jp|.*\.hogehoge\.jp)/ [email protected]
#送信先ドメインを変更
/@.+$/ @example.com
# /etc/init.d/postfix reload
Author And Source
この問題について(postfix でメール送信先を制限(固定)する), 我々は、より多くの情報をここで見つけました https://qiita.com/quickguard/items/bc5c1c750d02486854d5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .