linux發不出郵件 重新安裝mail服務

安裝mailx
cd /home/apps
wget  http://ftp.debian.org/debian/pool/main/h/heirloom-mailx/heirloom-mailx_12.5.orig.tar.gz
wget  http://www.linuxfromscratch.org/patches/blfs/7.9/heirloom-mailx-12.5-fixes-1.patch


tar zxvf heirloom-mailx_12.5.orig.tar.gz
給mailx打補丁,把heirloom-mailx-12.5-fixes-1.patch放在heirloom-mailx_12.5同級目錄下
patch -p0 <heirloom-mailx-12.5-fixes-1.patch
cd heirloom-mailx_12.5
make
make install UCBINSTALL=/usr/bin/install

ln -s /home/apps/heirloom-mailx-12.5/mailx  /bin/mail

[root@worker2 heirloom-mailx-12.5]# mail -V
12.5 6/20/10

在/etc/nail.rc最後添加兩行:
set [email protected]  smtp=smtp.163.com
set smtp-auth-user=clg360Mon smtp-auth-password=360cll smtp-auth=login

##[email protected]打開smtp,設置授權碼爲360cll
安裝sendmail
yum install sendmail

啓動sendmail
service sendmail start

測試是否能發送郵件:
echo 'Tset ' | mail -s "Test test" [email protected]m    
發佈了54 篇原創文章 · 獲贊 4 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章