2015年12月29日 星期二

Postfix 郵件系統覆寫寄件者

php 安裝在 Linux 系統上的 Apache 時, 可以用內建 Postfix 郵件系統寄信,

不過寄件者會被覆寫成 apache 或是 www-data.

首先檢查 php.ini 的設定

[mail function]
; For Win32 only.
SMTP = localhost

; For Win32 only.
;sendmail_from = ***@yourdomain.com

; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =\r

接著調整 postfix main.cf 的設定內容

加上
smtp_generic_maps = hash:/etc/postfix/generic

內容
[email protected]   [email protected]

接著執行
postmap /etc/postfix/generic

重新啟動 postfix
/etc/init.d/postfix restart

完成後信件就能以 [email protected] 寄出




PS. 在一些早期版本的 Postfix 需要設定的檔案不同

改為加上
sender_canonical_maps = hash:/etc/postfix/canonical

內容
[email protected]   [email protected]

接著執行
postmap /etc/postfix/generic

重新啟動 postfix
/etc/init.d/postfix restart

沒有留言:

張貼留言