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
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    

你可能感兴趣的:(mail)