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

相關資訊