私はこの( https://workaround.org/ispmail/squeeze/big-picture )チュートリアルに従ってメールサーバーを設定しました。
特定のユーザーからのメール、特定の文字列が含まれているメール、またはタイトルが何かと一致するメールを拒否できるようにしたいと思います。
これは可能ですか?
ユーザーにMySQLを使用しており、マルチドメイン環境にいます。
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