萬盛學電腦網

 萬盛學電腦網 >> 服務器教程 >> postfix反垃圾郵件設置

postfix反垃圾郵件設置

   增加防止發件人身份偽造的配置:

 代碼如下  

# smtpd related config
smtpd_recipient_restrictions =
  permit_mynetworks,
  permit_sasl_authenticated,
#  reject_non_fqdn_hostname,
  reject_non_fqdn_sender,
  reject_non_fqdn_recipient,
  reject_unauth_destination,
  reject_unauth_pipelining,
  reject_invalid_hostname

 

smtpd_sender_restrictions =
  permit_mynetworks,
  check_recipient_access hash:/etc/postfix/local_recipient,
  permit_sasl_authenticated,
  reject_sender_login_mismatch,
  reject_authenticated_sender_login_mismatch,
  reject_unauthenticated_sender_login_mismatch,
  reject_unknown_sender_domain

# SMTP AUTH config here
broken_sasl_auth_clients = yes
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous

  補充:

  配置extmail不允許偽造不存在的本地郵件地址發郵件,不允許並仿冒他人郵件地址發送郵件

  cd /etc/postfix/

  cat >mysql_virtual_sender_maps.cf<

  user = extmail

  password = extmail

  hosts = localhost

  dbname = extmail

  table = mailbox

  select_field = username

  where_field = username

  additional_conditions = AND active = '1'

  EOF

  vim main.cf

  smtpd_sender_login_maps =

  mysql:/etc/postfix/mysql_virtual_sender_maps.cf

  smtpd_sender_restrictions =

  permit_mynetworks,

  reject_sender_login_mismatch,

  reject_authenticated_sender_login_mismatch,

  reject_unauthenticated_sender_login_mismatch使配置生效

  postfix reload

copyright © 萬盛學電腦網 all rights reserved