私はRHEL 6.3を実行しているボックスを持っていて、メールでレポートを送信する必要があるアプリケーションがあります。この機能を動作させるには、ボックスでメールを構成する必要があります。さらに、ボックスにログインする代わりに、定期的な電子メールでルートアラートを受信するのが良いと思いました。
リレーとして使用することのみを目的として作成されたOffice 365アカウントを持っています。
Office 365 SMTPの詳細:
SMTP:pod51011.Outlook.comポート:587暗号化:TLS
私が試したこと:
- Defined the SMART_Host in the sendmail.mc
- Generated and configured sendmail certificates
- Created the AuthInfo file with SMTP credentials
- Eliminated from sendmail.mc localhost's loopback
- Got frustrated because even thought I configured everything (using different guides) sendmail kept trying to send them throught localhost.
8時間の複数回の試行後:
- Gave up on sendmail and slept 12 hours due to a massive headache.
- Decided to use SSMTP (because sendmail was a PITA) and people said SSMTP was easy to configure.
- Configured SSMTP and for some reason SASLAUTH said it couldn't connect to the SMTP.
- Got frustrated again and uninstalled SSMTP.
そして、私は今、sendmailを打ち負かしたいので、助けを求めています!誰かが私を正しい方向に向けることができますか?
SMTPに接続できなかったのは、会社がSMTPアクセスをブロックしていたためです。最終的にローカルSMTPを使用し、Postfixをこれらの手順で使用して機能させました。
また、Gmail経由でsendmailリレーを使用してこれを試してみましたが、セットアップがはるかに簡単に見えるため、代わりにpostfixを使用することを選択しました。自己署名証明書などを作成するプロセスを実行する必要はありません。このHOWTOはGmail向けですが、Office 365の場合もプロセスは非常に似ています。サーバー名と認証スキームを見つけるだけです。 http://rs20.mine.nu/w/2011/07/gmail-as-relay-Host-in-postfix/ 地域
sendmail.mc
を変更した後、/etc/mail/make
をビルドするためにsendmail.cf
を実行しましたか?新しいservice sendmail restart
を生成した後、sendmail.cf
も実行しましたか?
誰かが興味を持っている場合にGmailアカウントをsendmailに追加するスクリプトを作成しました。
#! /bin/bash
date=$(date +"%Y-%m-%d")
logFile=:Log File Location Goes HERE
authInfoPath="/etc/mail/authinfo/"
idpass="/etc/mail/authinfo/gmail-idpass"
sendmail="/etc/mail/sendmail.mc"
## Functions
determineLinuxFlavor()
{
os=$(grep -i "NAME=\"Amazon\ Linux\ AMI\"" /etc/os-release)
if [ -z "$os" ]; then
os=$(grep -i "NAME=\"Ubuntu\"" /etc/os-release)
if [ -z "$os" ]; then
os="UNKNOWN"
else
os="UBUNTU"
fi
else
os="CENTOS"
fi
printf $os
}
os=$(determineLinuxFlavor)
## About to start configuring send mail to relay through Gmail. ##
## @TODO: get the OS version and install dependencies based on OS
if [ $# -eq 5 ]; then
email=$1
password=$2
response=$3
choice=$4
personal=$5
else
# ask questions here
echo "## Enter the credentials of Gmail User account you wish to use. ##"
read -r -p "Enter the username of the Gmail account you are adding: " email
read -r -p "Enter the password of the Gmail account you are adding: " password
read -r -p "Would you like to send a test email? [y/N] " response
read -e -p "Would you like to check the log tail for errors? [y/n] " choice
read -e -p "Enter a personal email address to test the relay instalation: " personal
fi
## About to install the requiring dependencies... ##
if [ "$os" == "UBUNTU" ]; then
## Upgrading Ubuntu to the latest Sendmail Version. ##
apt-get install -y sendmail mailutils sasl2-bin > /dev/null 2>&1
Elif [ "$os" == "CENTOS" ]; then
## Upgrading CentOS to the latest Sendmail Version. ##
yum -y install sendmail mailutils mailx sendmail-bin sendmail-cf cyrus-sasl-plain
else
Invalid Flavor of Linux
exit
fi
echo -e ' \t '
## Create Gmail authentication file in a folder in which you will add Gmail user name and password.
echo -e ' \t '
mkdir $authInfoPath
cd $authInfoPath
echo "AuthInfo: \"U:root\" \"I:$email\" \"P:$password\"" >> $idpass
makemap hash $idpass < $idpass
chmod 700 $authInfoPath
echo -e ' \t '
echo -e ' \t '
echo "## Gmail Authentication Info injection complete. ##"
echo "Backing up Sendmail config File."
cp $sendmail $sendmail.$date
echo "Injecting Gmail Relay Code into sendmail.mc file."
cat <<'eof' >/tmp/gmail.conf
# Adding config for gmail #
define(`SMART_Host', `[smtp.gmail.com]')dnl
define(`RELAY_MAILER_ARGS', `TCP $h 587')dnl
define(`ESMTP_MAILER_ARGS', `TCP $h 587')dnl
define(`confAUTH_OPTIONS', `A p')dnl
TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE(`authinfo',`hash -o /etc/mail/authinfo/gmail-idpass.db')dnl
# End config for gmail #
eof
if [ "$os" == "UBUNTU" ]; then
sed -i $'/MAILER_DEFINITIONS/{e cat /tmp/gmail.conf\n}' $sendmail
Elif [ "$os" == "CENTOS" ]; then
sed -i '/dnl MASQUERADE_DOMAIN(mydomain.lan)dnl/r /tmp/gmail.conf' $sendmail
fi
echo -e ' \t '
echo "## Injection of Gmail Relay Code into Sendmail.mc Complete. ##"
echo "Rebuilding Sendmail & Restarting Service."
make -C /etc/mail
/etc/init.d/sendmail restart
if [ "$os" == "UBUNTU" ]; then
mail="mail.log"
Elif [ "$os" == "CENTOS" ]; then
mail="maillog"
fi
case "$response" in
[yY][eE][sS]|[yY])
echo -e "Mail Body - Test Message" | mail -s "TMBC is Mail Sending from CLI" -r $email $personal
[[ "$choice" == [Yy]* ]] && tail -n 10 /var/log/$mail || echo "Skipping log tail!"
;;
*)
echo "Skipping send test!"
;;
esac