阻止本地 (unix) 用户发送邮件

阻止本地 (unix) 用户发送邮件

有没有办法阻止本地/unix 用户(或本地用户列表)通过mail命令(或者甚至在 postfix 中,这是我拥有的 MTA)发送邮件。

答案1

正如@Gilles 所建议的,我将在这里留下我所做的事情,以便其他人可以从中受益。

我的机器的主机是abcxyz.ovh.net,我试图阻止的用户是foobar

我最终创建了/etc/postfix/sender_access以下内容:

[email protected] REJECT

然后我用 编译了它postmap /etc/postfix/sender_access

最后,我将其添加到我的 Postfix 配置中:

smtpd_recipient_restrictions =
 check_sender_access hash:/etc/postfix/sender_access,
 ...,
 ...,
 ...,
 ...

相关内容