安裝
由於默認的倉庫中沒有包含sSMTP,所以我們使用Fedora's EPEL repo (http://fedoraproject.org/wiki/EPEL)
先安裝EPEL repo

wget http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
rpm -ivh epel-release-5-4.noarch.rpm
yum -y install ssmtp

vim /etc/ssmtp/ssmtp.conf

新增

[email protected]
AuthPass=kiwifafa8888  #密碼的部分不要有特殊符號,使用英數即可。
FromLineOverride=YES
mailhub=smtp.gmail.com:587
UseSTARTTLS=YES
TLS_CA_File=/etc/pki/tls/certs/ca-bundle.crt

#反查表文件 /etc/ssmtp/revaliases 里面设置

#root:[email protected]:smtp.gmail.com:587

vim /etc/ssmtp/revaliases

root:[email protected]:smtp.gmail.com:587

service sendmail stop

把sendmail服務關掉

chkconfig --list sendmail
chkconfig sendmail off
mv /usr/sbin/sendmail /usr/sbin/sendmail_bk

做link

ln -s `which ssmtp` /usr/sbin/sendmail

測試發信
echo "This is a test mail." | mailx -s "test mail" [email protected]
若有收到信,表示成功。
mail [email protected]

By tony

自由軟體愛好者~喜歡不斷的思考各種問題,有新的事物都會想去學習嘗試 做實驗並熱衷研究 沒有所謂頂天的技術 只有謙虛及不斷的學習 精進專業,本站主要以分享系統及網路相關知識、資源而建立。 Github http://stnet253.github.io

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料