我有一个别名转发电子邮件给有限数量的收件人。 这是一个私人别名,我们希望保留一定的通信。
问题1 :现在一个公众成员知道别名。 是否可以阻止一个特定的电子邮件地址能够发送电子邮件到有关的别名。 当然,阻止规则很容易被stream氓发件人使用不同的电子邮件地址绕开,但是我们可以根据具体情况解决。
Q2 :更好的select是将别名的使用限制在那些别名的电子邮件地址上。 例如:
abc: def, ghi, jkl, mno
电子邮件到别名abc @只能通过地址发送:def,ghi,jkl,mno
可实现的?
我按照迈克尔汉普顿提供的基于发件人SMTP信封地址的链接的build议,因此受到SMTP发件人欺骗。
/etc/postfix/main.cf: smtpd_recipient_restrictions = ... check_recipient_access hash:/etc/postfix/protected_destinations ...the usual stuff... 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] insiders_only /etc/postfix/insiders: my.domain OK matches my.domain and subdomains another.domain OK matches another.domain and subdomains