使用 Postfix 将特定发件人和收件人列入黑名单

使用 Postfix 将特定发件人和收件人列入黑名单

我遇到一种情况,需要将来自某家电子邮件的电子邮件列入黑名单,并将其发送到我们的某家本地电子邮件。在 Postfix 中可以阻止这种特定情况吗?

例如,来自[电子邮件保护][电子邮件保护]应列入黑名单,但其他来自[电子邮件保护]

答案1

您可以使用限制类。请参阅:

例如:

/etc/postfix/main.cf:
    smtpd_recipient_restrictions =
        check_recipient_access hash:/etc/postfix/protected_destinations
        ...
    smtpd_restriction_classes = bad_senders1
    bad_senders1 = check_sender_access hash:/etc/postfix/bad_senders1

/etc/postfix/bad_senders1:
    [email protected]   REJECT   You are not welcome here.
    ...

/etc/postfix/protected_destinations:
    [email protected]    bad_senders1
    ...

现在,只有当邮件发送到“protected_destinations”列表中右侧指定了“bad_senders1”限制类别的地址时,其信封发件人地址属于“bad_senders1”限制类别的电子邮件才会被拒绝。

记得跑后图对于新创建的文件。

相关内容