Postfix/Relayhost/Strato -> funktioniert nicht

aski

New Member
Hallo alle,

hoffe, jemand kann mir helfen.
Ich habe mit diversen Artikeln aus diversen Foren versucht, für meinen V-Server in postfix den Strato SMTP Server als relayhost zu definieren. Aber es will nicht klappen.

Folgendes habe ich in der main.cf zusammen getragen:
Code:
relayhost = smtp.strato.de:465
smtp_tls_security_level = encrypt
smtp_use_tls = yes
smtp_enforce_tls = yes
smtpd_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
smtp_sasl_password_maps = static:webmaster@mydomain.de:password
# smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_tls_wrappermode = yes

Ich habe smtp_sasl_password_maps als static in der main.cf als static definiert.
Alternativ habe ich es auch mit sasl_passwd versucht.
Inhalt der sasl_passwd:

Code:
smtp.strato.de:465 webmaster@mydomain.de:password

Natürlich auch postmap aufgerufen.

Aber egal, was ich mache, bekomme ich immer diese Fehlermeldung:

Code:
Apr 22 16:19:25 h2779534 postfix/smtp[22845]: 0F95826C0C79: to=<myrecepient@gmx.de>, relay=smtp.strato.de[81.169.145.133]:465, delay=0.32, delays=0.21/0.01/0.09/0.02, dsn=5.7.0, status=bounced (host smtp.strato.de[81.169.145.133] said: 530 5.7.0 User not authenticated (in reply to MAIL FROM command))

Ich habe ebenfalls schon Port 25 und Port 587 versucht. Dort komme ich nicht mal so weit, weil ich einen TLS Library Fehler kriege:

Code:
Apr 22 16:03:34 h2779534 postfix/smtp[21753]: SSL_connect error to smtp.strato.de[81.169.145.133]:25: -1
Apr 22 16:03:34 h2779534 postfix/smtp[21753]: warning: TLS library problem: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:s23_clnt.c:794:
Apr 22 16:03:34 h2779534 postfix/smtp[21753]: B2D2426C0C7C: Cannot start TLS: handshake failure

Ich gehe also davon aus, dass 465 der richtige Port ist.

Der in sasl_passwd definierte Benutzer kann sich über Webmail bei Strato anmelden und er kann auch erfolgreich über smtp.strato.de und imap.strato.de Emails senden und empfangen.

Was mache ich falsch?
Wer kann helfen?

Bin am Verzweifeln.

Danke und Gruß
Alex
 
/etc/postfix/main.cf abweichend von der Standard-Konfig hinzufügen bzw. Abändern.
Code:
relayhost = [smtp.strato.de]:465
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/relay_passwd
smtp_sasl_security_options = noanonymous
smtp_tls_wrappermode = yes
smtp_tls_security_level = encrypt

/etc/postfix/relay_passwd
Code:
[smtp.strato.de]:465 BENUTZERNAME:PASSWORT

postmap hash:/etc/postfix/relay_passwd und Postfix Reload durchführen.
 
Back
Top