迷惑メール対策 (Sender address reject)
参考
現在の設定確認
# main.cfで追加設定したもの
$ postconf -n | grep smtpd_sender_restrictions
smtpd_sender_restrictions =
# 初期値 (postconf -n で出力がなかった場合こちらでも確認)
$ postconf -d | grep smtpd_sender_restrictions
smtpd_sender_restrictions =
設定を行う(hash:を使う場合)
smtpd_sender_restrictions =
check_sender_access hash:/etc/postfix/access
bma.rec.mpse.jp REJECT
vp.pl REJECT
bxz.jp REJECT
bis-news.com REJECT
nextsb19.org REJECT
omence.asia REJECT
jp365.asia REJECT
japan-onlline-shop.mobi REJECT
blue REJECT
academy-sophrology.biz REJECT
seikotuin88.org REJECT
受信を拒否したいドメイン名を列挙。
ここのものはメールアドレスの末尾に該当する。(/blue$/)
- 試しに [email protected] 宛にメール送ってみたところ、これまで通り送信できた。
- 試しに [email protected] からメールを受信してみたところ、これまで通り送信できた。
sudo /usr/sbin/postmap access
sudo /etc/init.d/postfix restart
運用
追加をしたい場合、/etc/postfix/access
に追記し同様にpostmap access
する。
(その際/etc/init.d/postfix restart
は不要)
正規表現での指定(regexp:を使う場合)
- regex - Custom wildcard configuration in postfix - Stack Overflow
- Ubuntu Manpage: regexp_table - format of Postfix regular expression tables
/41news23.org$/ REJECT
/blue$/ REJECT
/red$/ REJECT
/pink$/ REJECT
/mobi$/ REJECT
smtpd_sender_restrictions =
check_sender_access regexp:/etc/postfix/access
ログ
smtpd_helo_restrictions でブロックした場合 (今回の設定例には載せていないが)
Nov 13 05:53:02 mail01 postfix/smtpd[21883]: NOQUEUE: reject: RCPT from unknown[122.231.33.216]: 554 5.7.1 : Helo command rejected: Access denied; from=[email protected] to=[email protected] proto=SMTP helo=
smtpd_sender_restrictions でブロックした場合
Nov 13 05:53:05 mail01 postfix/smtpd[21786]: NOQUEUE: reject: RCPT from unknown[121.234.230.209]: 554 5.7.1 [email protected]: Sender address rejected: Access denied; from=[email protected] to=[email protected] proto=SMTP helo=
Author And Source
この問題について(迷惑メール対策 (Sender address reject)), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/902b3c859346f6c00168著者帰属:元の著者の情報は、元の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 .