ssmtpを使用して電子メールを送信するのに問題があります。

ssmtpを使用して電子メールを送信するのに問題があります。

Raspbianからメールを送信できるように設定しようとしています。

送信しようとするとエラーが発生しますssmtp: Cannot open smtp.gmail.com:587(ポート:465も試しました)。

Googleは「セキュリティレベルの低いアプリへのアクセス」を設定し、Thunderbirdのマイアカウントで送受信できます。

以下を含めるようにインストールしてssmtp構成しました。/etc/ssmtp/ssmtp.conf

# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
[email protected]

# The place where the mail goes. The actual machine name is required no 
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=smtp.gmail.com:587

[email protected]
AuthPass=xxxxxxxxxxxxxx
UseTLS=YES
UseSTARTTLS=YES

# Where will the mail seem to come from?
rewriteDomain=gmail.com

# The full hostname
[email protected]

# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=YES

/etc/ssmtp/revaliasesまた、以下を含めるように設定しました。

# sSMTP aliases
# 
# Format:   local_account:outgoing_address:mailhub
#
# Example: root:[email protected]:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.
root:[email protected]:smtp.gmail.com:587

どんな提案がありますか?


以下に基づいて上記の設定を編集します。 https://wiki.archlinux.org/index.php/SSMTP

私はいくつかの追加テストを行いました。

  1. 別のSMTPサーバーを選択しましたが、うまくいきました。 (この機能はISPに直接接続する場合にのみ機能するため、使用したくありません。)

  2. アプリケーションのパスワードを設定しようとしましたが、「探している設定がアカウントには適用されません」という回答が届きました。 (おそらくアカウントに2段階認証プロセスがないためです。)

私が使用したいGmailアカウントは、Raspberry Piからメッセージを送信するために特別に作成されました。

ベストアンサー1

これは実装が簡単です。

 https://unix.stackexchange.com/questions/363814/simplest-way-to-send-one-line-mail-out-via-command-line-using-gmail/363815#363815

抜粋:

ssmtp次のコマンドを使用してインストールします。

sudo apt-get update
sudo apt-get install ssmtp

次に「/etc/ssmtp」に移動し、次のように「ssmtp.conf」を編集します。

root=rpi3abc@gmail
mailhub=smtp.gmail.com:465
FromLineOverride=YES
[email protected]
AuthPass=testing123
UseTLS=YES

次の行を送信します。

echo "Testing...1...2...3" | ssmtp [email protected]

これより簡単ではありません。

おすすめ記事