我想拒绝来自发件人的电子邮件,但只针对特定收件人。示例:
发件人[email protected]
已被阻止[email protected]
。 发件人[email protected]
已被阻止[email protected]
。
...
但所有其他收件人都可以收到来自[email protected]
和 的邮件[email protected]
。我也在同一个 Postfix 上使用托管多个域。
我找到了类似这样的解决方案https://dan.langille.org/2019/01/25/using-postfix-to-block-mail-based-on-from-sender-and-to-recipient/
他们建议使用smtpd_restriction_classes
。但这扩展性不好,因为如果我必须设置 50 条规则(发送者-接收者对),我将需要创建 50 个文件,包含 50 个类。这很繁琐。
Postfix 有没有更好的解决方案?