mailx/msmtp を使用して電子メールを送信することは、root ユーザーにのみ機能します。

mailx/msmtp を使用して電子メールを送信することは、root ユーザーにのみ機能します。

解決策を見つけようとしています。私はこれに従ってheirloom-mailxとmsmtpをインストールしました。場所。 Gmail を使用して root ユーザーにメールを送信できます。問題は root 以外のユーザーに発生します。メッセージはキューフォルダー(/var/spool/mqueue)に移動し、送信されません。

私はLinuxの経験がほとんどありません。助けてください?

システム: Cubieboard 1 - Armbian Legacy Jessie サーバー 3.4.112

.mailrc
set sendmail="/usr/bin/msmtp"
set message-sendmail-extra-arguments="-a gmail"
========================================================================================
.msmtprc
#Gmail account
defaults
logfile ~/msmtp.log

account gmail
auth on
host smtp.gmail.com
from [email protected]
auth on
tls on
# tls_trust_file /etc/ssl/cert.pem
tls_trust_file /usr/share/ca-certificates/mozilla/Equifax_Secure_CA.crt
user [email protected]
password XXX
port 587

account default : gmail
========================================================================================
/var/log/mail.info
Oct 30 21:08:52 localhost sm-mta[4429]: u9U129DY004614: to=<[email protected]>, ctladdr=<root@localhost> (0/0), delay=22:06:43, xdelay=00:00:00, mailer=esmtp, pri=11910461, relay=alt4.gmail-smtp-in.l.google.com., dsn=4.0.0, stat=Deferred: Connection timed out with alt4.gmail-smtp-in.l.google.com.

メールログ:

Nov  1 20:08:27 localhost sendmail[15107]: uA1M8RXu015107: from=debian-transmission, size=380, class=0, nrcpts=1, msgid=<201611012208.uA1M8RXu015107@localhost>, relay=debian-transmission@localhost
Nov  1 20:08:27 localhost sm-mta[15111]: uA1M8RiY015111: from=<debian-transmission@localhost>, size=628, class=0, nrcpts=1, msgid=<201611012208.uA1M8RXu015107@localhost>, proto=ESMTP, daemon=MTA-v4, relay=localhost [127.0.0.1]
Nov  1 20:08:27 localhost sendmail[15107]: uA1M8RXu015107: [email protected], ctladdr=debian-transmission (107/114), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30380, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (uA1M8RiY015111 Message accepted for delivery)
Nov  1 20:13:43 localhost sm-mta[15113]: uA1M8RiY015111: to=<[email protected]>, ctladdr=<debian-transmission@localhost> (107/114), delay=00:05:16, xdelay=00:05:16, mailer=esmtp, pri=120628, relay=alt4.gmail-smtp-in.l.google.com. [74.125.130.27], dsn=4.0.0, stat=Deferred: Connection timed out with alt4.gmail-smtp-in.l.google.com.

Debian-transmission は Transmission が作成したユーザーです。転送はダウンロード後に次のスクリプトを呼び出します。

printf "The torrent $TR_TORRENT_NAME was downloaded successfully at $TR_TIME_LOCATIME" | /usr/bin/mailx -s "Transmission downloaded : $TR_TORRENT_NAME" [email protected]

たぶんスクリプトにmailrcとmsmtprcパラメータを追加できますか?

ベストアンサー1

ファイルをホームディレクトリに.mailrc配置する必要があります。.msmtprc

プログラムがまだ構成ファイルを読み取ることができることを確認してください/etc/

おすすめ記事