Ich habe versucht, E-Mails für die Weiterleitung an Google Mail zu konfigurieren und mit Postfix E-Mails an smtp.gmail.com weiterzuleiten. Es gelingt mir jedoch nicht, mich bei smtp.gmail.com zu authentifizieren. Dies ist eine wichtige Voraussetzung dafür, dass etwas funktioniert.
In den Mail-Protokollen wird nur Folgendes angezeigt:
Oct 29 15:50:14 gsnedders-1 postfix/master[6596]: daemon started -- version 2.7.1, configuration /etc/postfix
Oct 29 15:50:19 gsnedders-1 postfix/pickup[6598]: EBA1F78750: uid=1000 from=<gsnedders>
Oct 29 15:50:19 gsnedders-1 postfix/cleanup[6603]: EBA1F78750: message-id=<[email protected]>
Oct 29 15:50:19 gsnedders-1 postfix/qmgr[6599]: EBA1F78750: from=<[email protected]>, size=324, nrcpt=1 (queue active)
Oct 29 15:50:19 gsnedders-1 postfix/cleanup[6603]: F2D557874F: message-id=<[email protected]>
Oct 29 15:50:19 gsnedders-1 postfix/local[6605]: EBA1F78750: to=<[email protected]>, orig_to=<me>, relay=local, delay=0.04, delays=0.03/0.02/0/0, dsn=2.0.0, status=sent (forwarded as F2D557874F)
Oct 29 15:50:19 gsnedders-1 postfix/qmgr[6599]: F2D557874F: from=<[email protected]>, size=454, nrcpt=1 (queue active)
Oct 29 15:50:19 gsnedders-1 postfix/qmgr[6599]: EBA1F78750: removed
Oct 29 15:50:20 gsnedders-1 postfix/smtp[6606]: warning: SASL authentication failure: No worthy mechs found
Oct 29 15:50:20 gsnedders-1 postfix/smtp[6606]: F2D557874F: SASL authentication failed; cannot authenticate to server smtp.gmail.com[74.125.157.108]: no mechanism available
Und die Postfix-Konfiguration ist:
relayhost = [smtp.gmail.com]:587
smtp_use_tls = yes
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl/passwd
smtp_sasl_security_options = noanonymous
smtp_tls_eccert_file =
smtp_tls_eckey_file =
smtp_tls_security_level = may
smtp_tls_CAfile = /etc/postfix/cacert.pem
smtpd_tls_received_header = yes
tls_random_source = dev:/dev/urandom
smtpd_tls_security_level = may
/etc/postfix/master.cf
:,smtp unix - - y - - smtp -v
damit Sie weitere Details im Protokoll erhalten.Antworten:
Ah-ha! Das Installieren des
libsasl2-modules
Pakets löste das Problem.quelle
Laufen
sudo yum install cyrus-sasl cyrus-sasl-lib cyrus-sasl-plain
hat mir auf dem Amazon AWS-Server geholfen.
quelle
sudo yum installiere cyrus-sasl cyrus-sasl-lib cyrus-sasl-plain
arbeitete für mich mit Gmail-Relay-Setup (CentOS 7)
quelle
Ich habe dieses Problem erhalten (
tail -f /var/log/mailog
):Dann habe ich die Datei so geändert
/etc/postfix/main.cf
, dass folgende Zeilen zum Dateiende hinzugefügt wurdenInstallieren Sie dann die Abhängigkeit von postfix missing Modulen mit:
Dann Postfix neu starten
Endlich funktioniert es auf Centos 7
quelle