環(huán)境
系統(tǒng):CentOS 6.8
準備
- 安裝擴展yum源
# yum -y install epel-release
msmtp安裝配置
-
安裝
# yum -y install msmtp
-
配置(若無/etc/msmtprc揩悄,請自建)
# vim /etc/msmtprc defaults logfile /var/log/msmtp.log account username host smtp.163.com from username@163.com auth login user username@163.com password yourpassword account default: username
mutt安裝配置
-
安裝
# yum -y install mutt
-
配置
# vi /etc/Muttrc set from="username@163.com" set sendmail="/usr/bin/msmtp" set use_from=yes set realname="張三" set editor="vim"
測試
# echo hello | mutt -s testmail testuser@163.com