postfix SSL_accept error from localhost

uek

New Member
Hallo,

ich habe folgendes Problem mit meinem Mailserver (Postfix/Dovecot)

Für IMAP/OPO3 verwende ich STARtTLS für smtp SSL/TLS
sntp funktioniert imap/pop nichrt aufgrund eines SSL-accept error vom server:
(Austzug aus der mail.err)


imap dovecot: pop3-login: Fatal: master: service(pop3-login): child 21343 returned error 89 (Fatal failure)
Mar 27 17:40:06 imap dovecot: imap-login: Fatal: master: service(imap-login): child 21344 returned error 89 (Fatal failure)
Mar 27 17:40:06 imap dovecot: pop3-login: Fatal: Error reading configuration: read(/var/run/dovecot/config) failed: read(size=8192) failed: Connection reset by peer
Mar 27 17:40:06 imap dovecot: imap-login: Fatal: Error reading configuration: read(/var/run/dovecot/config) failed: read(size=8192) failed: Connection reset by peer
Mar 27 17:45:02 imap dovecot: config: Fatal: Error in configuration file /etc/dovecot/dovecot.conf line 69: Unknown setting: default_mail_env
Mar 27 17:45:02 imap dovecot: master: Error: service(config): command startup failed, throttling for 60 secs
Mar 27 17:45:02 imap dovecot: imap-login: Fatal: Error reading configuration: read(/var/run/dovecot/config) failed: read(size=8192) failed: Connection reset by peer
Mar 27 17:45:02 imap dovecot: master: Error: service(imap-login): command startup failed, throttling for 60 secs
Mar 27 17:45:02 imap dovecot: master: Error: service(pop3-login): command startup failed, throttling for 60 secs
Mar 27 17:45:02 imap dovecot: pop3-login: Fatal: Error reading configuration: read(/var/run/dovecot/config) failed: read(size=8192) failed: Connection reset by peerWrite failed: Broken pipe 996955 sent adjust 51621

und aus der mail.log



Mar 27 17:45:02 imap dovecot: config: Fatal: Error in configuration file /etc/dovecot/dovecot.conf line 69: Unknown setting: default_mail_env
Mar 27 17:45:02 imap dovecot: master: Error: service(config): command startup failed, throttling for 60 secs
Mar 27 17:45:02 imap dovecot: imap-login: Fatal: Error reading configuration: read(/var/run/dovecot/config) failed: read(size=8192) failed: Connection reset by peer
Mar 27 17:45:02 imap dovecot: master: Error: service(imap-login): command startup failed, throttling for 60 secs
Mar 27 17:45:02 imap dovecot: master: Error: service(pop3-login): command startup failed, throttling for 60 secs
Mar 27 17:45:02 imap dovecot: pop3-login: Fatal: Error reading configuration: read(/var/run/dovecot/config) failed: read(size=8192) failed: Connection reset by peer
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: connect from localhost[::1]
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: SSL_accept error from localhost[::1]: lost connection
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: lost connection after CONNECT from localhost[::1]
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: disconnect from localhost[::1]


Anbei meine main.cf
https://pastebin.com/qK78SV06
master.cf
https://pastebin.com/QxAP0kR8

dovecot.conf

Was muss ich wie ändern damit das SSL-Zertifikat akzeptiert und die Konfiguration gelesen wird.

DANKE

Uli
 
Da steht der Fehler doch bereits drin:

Mar 27 17:45:02 imap dovecot: config: Fatal: Error in configuration file /etc/dovecot[/I]/dovecot.conf line 69: Unknown setting: default_mail_env
Mar 27 17:45:02 imap dovecot: master: Error: service(config): command startup failed, throttling for 60 secs

Du hast einen ungültigen Eintrag in deiner Dovecot-Konfig. Korrigieren und dann sollte Dovecot auch laufen (sofern du nicht noch andere Konfigurationsfehler gemacht hast). Die anderen Dovecot-Fehler sind Folgen hiervon.

Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: connect from localhost[::1]
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: SSL_accept error from localhost[::1]: lost connection
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: lost connection after CONNECT from localhost[::1]
Mar 27 17:45:02 imap postfix/smtps/smtpd[21650]: disconnect from localhost[::1]

Hat nichts mit dem Mailabruf zu tun. Irgendein Programm auf deinem Server versucht eine Verbindung zum Port 465 aufzubauen (veralteter Port für explizit verschlüsseltes SMTP) und die SSL-Aushandlung schlägt fehl. Welches Programm das ist, geht aus den Logs nicht hervor.
 
Back
Top