以下用到的檔案都在/etc/postfix下
1.# vi main.cf
新增下面幾行:
#設定只能[email protected] 給[email protected] 發郵件
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
2.#vi local_sender
加入允許**到all的郵件列表:
如果允許本域所有使用者可以**到all,則只新增
kin.com ok
即可。3.# vi local_recipient
添**賬號:
[email protected] local_only
4.建立local_recipient和local_sender的hash表
# postmap hash:/etc/postfix/local_sender
# postmap hash:/etc/postfix/local_recipient
在/etc/postfix目錄下生成2個db檔案:
local_recipient.db和local_sender.db
5.重啟postfix
# /etc/init.d/postfix restart
6.測試:只有在local_sender裡的使用者才能給[email protected]**,其他不受影響。
參考:http://www.extmail.org/forum/viewthread.php?tid=524
限制作用域列舉
enum class fsm operatingmode 上面這種列舉是限定作用域的一種列舉型別,列舉關鍵字之後接的class 是限制其作用域。列舉作用域 enumeration scope 是指列舉型別的成員的名字的作用域,起自其宣告之處,終止列舉定義結束之處。c語言規定,列舉型別的成員 enum...
php 關閉跨域ajax限制
本文通過設定access control allow origin來實現跨域。例如 客戶端的網域名稱是client.runoob.com,而請求的網域名稱是server.runoob.com。如果直接使用ajax訪問,會有以下錯誤 no access control allow origin hea...
CORS跨域限制與解除
cors 跨域資源共享 是一種機制,它使用額外的 http 頭來告訴瀏覽器 讓執行在乙個 origin domain 上的web應用被准許訪問來自不同源伺服器上的指定的資源。發起請求的域與請求指向的域所在的資源不一樣,就形成了跨域。域資源常常包括 協議 網域名稱 ip 埠號,若均相同,就是同域,若乙...