E-Mail-Versand mit mailx/msmtp funktioniert nur für Root-Benutzer

E-Mail-Versand mit mailx/msmtp funktioniert nur für Root-Benutzer

Ich habe Mühe, eine Lösung zu finden. Ich habe heirloom-mailx und msmtp installiert, nachdem diesWebsite. Ich kann als Root-Benutzer E-Mails senden (mit Gmail). Das Problem besteht bei Nicht-Root-Benutzern: Die Nachrichten landen in einem Warteschlangenordner (/var/spool/mqueue) und werden nie gesendet.

Ich habe wenig Erfahrung mit Linux. Können Sie mir helfen?

System: Cubieboard 1 – Armbian Legacy Jessie Server 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.

E-Mail-Protokoll:

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 ist ein von Transmission erstellter Benutzer. Transmission ruft nach dem Herunterladen das folgende Skript auf:

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

Vielleicht könnte ich dem Skript die Parameter mailrc und msmtprc hinzufügen?

Antwort1

Sie müssen die Dateien .mailrcauch .msmtprcin Ihrem Home-Verzeichnis ablegen.

Überprüfen Sie, ob das Programm auch Konfigurationsdateien von lesen kann /etc/.

verwandte Informationen