sendmail發件人郵箱設定命令
以前就碰到過設置發件人後綴的方式,這次遷移服務器居然忘記,從頭開始記錄下
1:第一種方法,修改/etc/hosts,據說sendmail使用hosts裡面的本地設置域名,修復方法如下
[html]
127.0.0.1 aizher.com
結果:不成功
2:第二種方法:修復/etc/mail/acess,增加
[html]
Connect:aizher.com RELAY
結果:不成功,不過還是在vim /etc/mail/local-host-names,增加如下
[html]
aizher.com
3:第三種方法,修改
[html]
編輯/etc/mail/sendmail.mc:
LOCAL_DOMAIN(`localhost.localdomain’)dnl
改為LOCAL_DOMAIN(`YOUDOMAIN.com')dnl
然後m4 sendmail.mc >sendmail.cf
service sendmail restart
結果,路徑不存在,失敗
[html]
m4:sendmail.mc:10: cannot open `/usr/share/sendmail-cf/m4/cf.m4': No such file or directory
4:第四種方法:修改主機名,記得之前修改過,主機名和sendmail的發送郵件有關,vim /etc/sysconfig/network
[html]
NETWORKING=yes
HOSTNAME=aizher.com
GATEWAY=219.234.xx.xx
通過如下命令,重啟網絡服務
/etc/init.d/network restart
通過如下命令重啟sendmail
/etc/rc.d/init.d/sendmail restart
結果:成功,已登陸用戶名的方式發送郵件
5:第五種方法:直接在php.ini中修改,
[html]
sendmail_path = /usr/sbin/sendmail -f
[email protected] -t -i
這時候,就以
[email protected]的方法發送email,搞定