postfix 用戶群發(fā)郵件的設(shè)置

  

公司內(nèi)某用戶aa(aa@domain.com)需要給全公司的編輯發(fā)送群發(fā)郵件(edit@domain.com),因此需要給該用戶設(shè)置能夠群發(fā)的權(quán)限。


postfix 用戶群發(fā)郵件的設(shè)置


postfix用戶群發(fā)郵件的設(shè)置具體內(nèi)容如下:


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 //添加允許群發(fā)的用戶


aa@domain.com ok

如果允許domain.com域的所有用戶都能夠群發(fā),則設(shè)置如下:

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

所有設(shè)置好之后,重啟postfix

/etc/init.d/postfix restart

相關(guān)資訊

推薦軟件