Postfix - 发送到特定目标地址时特定源地址的未送达报告

Postfix - 发送到特定目标地址时特定源地址的未送达报告

在 Ubuntu 上使用 Postfix(版本 2.10.2.2,Zimbra 安装的一部分),我希望能够实现以下目标:

如果电子邮件来自[电子邮件保护]目标是[电子邮件保护]生成未送达报告,模拟地址[电子邮件保护]不再存在于此服务器上。

背景:我的一个用户不想再接收来自某个发件人的任何电子邮件,但希望保持当前地址处于活动状态。

答案1

使用限制类来自后缀的功能

在 main.cf 中

smtpd_restriction_classes = selective_sender
selective_sender = check_sender_access hash:/etc/postfix/blocked_sender

# put in smtpd*restriction
    ...
    check_recipient_access hash:/etc/postfix/recipient_access
    ...

在 /etc/postfix/recipient_access 中:

[email protected]       selective_sender

在 /etc/postfix/blocked_sender 中:

[email protected]     REJECT unknown_user

相关内容