实际上,我正在使用 Postfix 服务器并尝试实现具有简单限制的分发列表。
我的假设:我创建了别名: [电子邮件保护]->[电子邮件保护],[电子邮件保护],[电子邮件保护]
我想限制[电子邮件保护]那样的话 [电子邮件保护] [电子邮件保护] 可以写入管理员列表。
根据 [http://postfix.cs.utah.edu/RESTRICTION_CLASS_README.html#internal][1]
我在文件中创建主文件:
...
smtpd_recipient_restrictions =
...
check_sender_access hash:/etc/postfix/sender_access,
check_recipient_access hash:/etc/postfix/protected_destinations,
...
smtpd_restriction_classes = insiders_only
insiders_only = check_sender_access hash:/etc/postfix/insiders, reject
文件在/etc/postfix/protected_destinations:
...
[email protected] insiders_only
...
文件内部人士:
[email protected] OK
[email protected] OK
但它的工作原理是阻止所有来自外部的传入电子邮件。正如我之前所写,我的目的是只允许来自managers_sender_list的地址写入[电子邮件保护] 并让其他活动以正常方式进行。
问题是:如何正确地实现这些假设?