Postfix
Postfix - 如何阻止發送到特定域的電子郵件
我正在安裝 Postfix 的郵件伺服器,並且我僅出於合法目的使用該伺服器。
我需要阻止特定黑名單域的一些傳出電子郵件。有沒有辦法通過配置來做?
非常感謝您的幫助。
提前感謝卡西克
仔細查看可用的基本訪問控制應該會對您有所幫助;只需在拒絕訪問這些域的smtpd_recipient_restrictions中指定適當的訪問映射:
smtpd_recipient_restrictions = check_recipient_access hash:/etc/postfix/blacklisted_domains, permit_mynetworks, reject_unauth_destination, permit
並在
/etc/postfix/blacklisted_domains
:bad.domain1 REJECT bad.domain2 REJECT baduser@bad.domain3 REJECT
不要忘記
postmap
那個文件。