这可能是一个简单的问题,但我试图锁定哪些用户可以从本地计算机发送电子邮件。我通过在 /etc/postfix/allowed_recipients 文件上运行 newaliases 并设置类似于
smtpd_recipient_restrictions = hash:/etc/postfix/allowed_recipients, reject
以下内容的内容来锁定哪些用户可以接收电子邮件。它有效,但我如何对发件人限制执行相同的操作?
答案1
smtpd_sender_restrictions = reject_unknown_sender_domain, reject_unlisted_sender, check_sender_access hash:/etc/postfix-internal/localusers, reject
在 localusers 中,列出每个 OK 地址
[email protected] OK
[email protected] OK
或者您可以添加一个域,然后仅列出块
example.com OK
[email protected] 550 Account compromised
[email protected] 550 Account closed
答案2
看一下 postfix 文档。http://www.postfix.org/RESTRICTION_CLASS_README.html