postfix 用户群发邮件的设置

  

公司内某用户aa(aa@domain.com)需要给全公司的编辑发送群发邮件(edit@domain.com),因此需要给该用户设置能够群发的权限。


postfix 用户群发邮件的设置


postfix用户群发邮件的设置具体内容如下:


1、/etc/postfix/main.cf


smtpd_restriction_classes = local_only

local_only = check_sender_access hash:/etc/postfix/local_sender,reject

smtpd_sender_restrictions = check_recipient_access hash:/etc/postfix/local_recipient

check_sender_access = hash:/etc/postfix/sender


2、/etc/postfix/local_sender //添加允许群发的用户


aa@domain.com ok

如果允许domain.com域的所有用户都能够群发,则设置如下:

domain.com ok


3、/etc/postfix/sender_login_maps


aa@domain.com aa


4、/etc/postfix/local_recipient //添加群账号


edit@domain.com local_only


5、生成hash表


postmap hash:/etc/postfix/sender_login_maps

postmap hash:/etc/postfix/local_sender

postmap hash:/etc/postfix/local_recipient

所有设置好之后,重启postfix

/etc/init.d/postfix restart

相关资讯