SSMTP はエラー 550 を返します。

SSMTP はエラー 550 を返します。

RaspianがインストールされたRaspberry Piがあり、Eメールを送信できません。
SSMTP がインストールされており、通常、スクリプトで操作が完了したら通知するメールを送信します。

echo "$(date) Job completed" | mail -s "My subject" [email protected]

数ヶ月前、電子メールの受信が中断されるまで、すべてがうまく機能しました。スクリプトを手動で起動しようとしましたが、次のエラーが発生しました。

send-mail: 550 Your authenticating ID must match your sending address.

私のSSMTP設定に問題があるようです。当初、Eメールプロバイダはこれを確認しませんでしたが、今は機能しません。ここで私のファイルを見つけることができますssmtp.conf

#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=postmaster

# 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=mail

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

# The full hostname
hostname=raspberrypi

# 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
AuthUser=myUser
AuthPass=myPassword
mailhub=mysite.smtp.com:587
UseSTARTTLS=YES

何か間違っているようですが、私はシステム管理者でもなく、メールサービスの経験もあまりありません。提案するものはありますか?

答え1

authenticating ID must match your sending address.

mysite.smtp.comサーバー(またはこのサーバーが実行されているMTA)は、私のユーザー)、しかし他のユーザーにメールを送信します。

関連情報