CentOSにmuttとmsmtpをインストールするメモ
1.muttのインストール
#yum install mutt -y
2.muttの設定
#vim /etc/Muttrc
set from="examplel@gmail.com"
set sendmail="/usr/local/msmtp/bin/msmtp"
set use_from=yes
set realname="username"
set editor="vim"
3.msmtpのインスール
#wget http://downloads.sourceforge.net/msmtp/msmtp-1.4.30.tar.bz2?big_mirror=0 #tar xf msmtp-1.4.30.tar.bz2
#yum install wget bzip2 -y
4.msmtp
#./configure –prefix=/usr/local/msmtp
#make
#make install
5.msmtpの設定
#cd /usr/local/msmtp
#mkdir etc
#cd etc
#vim msmtprc
追記
defaults
#log場所を設定
logfile /usr/local/msmtp/msmtp.log
# The SMTP server of the provider.
account test
# SMTPサーバ
host smtp.gamil.com
# 送信メールアドレス
from send@gamil.com
auth login
user to@gamil.com
password 123456
# Set a default account
account default: test