web-dev-qa-db-ja.com

特定のメールを拒否するようにpostfix / dovecotを設定する方法

私はこの( https://workaround.org/ispmail/squeeze/big-picture )チュートリアルに従ってメールサーバーを設定しました。

特定のユーザーからのメール、特定の文字列が含まれているメール、またはタイトルが何かと一致するメールを拒否できるようにしたいと思います。

これは可能ですか?

ユーザーにMySQLを使用しており、マルチドメイン環境にいます。

3
Axel Latvala

header_checksおよびbody_checksを使用して、特定の文字列をブロックできます。詳細 ここsmtpd_sender_restrictionsを使用して、特定のユーザーからのメールをブロックできます。詳細 ここ

#/etc/postfix/main.cf
header_checks = regexp:/etc/postfix/header.re
smtpd_sender_restrictions = check_sender_access hash:/etc/postfix/blacklisted_roles

#/etc/postfix/header.re
/^Subject:(.*) offensive_Word /     REJECT Inappropriate Word

#/etc/postfix/blacklisted_roles
[email protected]    REJECT
6
clement