使用sendmail發郵件的配置html
yum -y install sendmail
service sendmail startlinux
vim body.txt
test mail from linux.vim
mail -s "test mail from linux" yourname@163.com,yourname2@163.com <body.txtcentos
mailq #查看郵件隊列
cat /var/log/maillogbash
【注意:】 多個郵件地址以西文,分割;測試
配置郵件發送顯示帳號ui
vim + /etc/mail.rc # For Linux and BSD, this should be set. set bsdcompat set from=devops #把devops換成本身想顯示的名稱
------------------------------------------------------------this
郵件相關配置的文件spa
/etc/aliases.net
------------------------------------------------------------
如使用外部郵箱smtp方式發郵件,設置smtp的驗證規則配置,同時,在network中配hostname定義,sendmail發郵件只識別hostname.
配置時from和=間不要有空格,否則提示「 Non-null variable name required」。
vim /etc/mail.rc
set from=yourname@163.com smtp=smtp.163.com
set smtp-auth-user=yourname@163.com smtp-auth-password=yourpassword smtp-auth=login
vim /etc/sysconfig/network
hostname mail.163.com
---------------------------------
【測試過程問題記錄】
一、163的郵箱開啓smtp服務時必須設置受權碼,在/etc/mail.rc smtp-auth-password設置成受權碼,否則錯給你看
smtp-server: 535 Error: authentication failed
二、163郵箱不開啓smtp服務,換個錯誤給你看
smtp-server: 550 User has no permission
三、安裝後遇到 以下錯誤則安裝mailx
-bash: mail: command not found
yum install mailx
[root@localhost logs]# mailx -s "testilink" linjin200@163.com </data/aa.txt
【總結】
用smtp發個郵件好糾結,各路神仙都要照顧到,否則哪哪都要罷個工。