TLS bei Postfix

  18:04 Uhr 

http://forum.parallels.com/showthread.php?t=106832

Postfix bei Plesk 11 erfordert eine TLS Verbindungsverschlüsselung. Einige einfache eMail Clients, wie sie in Geräten wie Druckern oder Datenloggern vorkommen, scheinen damit ein Problem zu haben. Im Parallels Forum fand sich die Lösung.

Edit /etc/postfix/master.cf file

Original Value is like that:

submission inet n - - - - smtpd -o smtpd_enforce_tls=yes -o smtpd_tls_security_level=encyrpt-o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticate d,reject -o smtpd_sender_restrictions= -o smtpd_proxy_filter=127.$

Change it as like as this one

submission inet n - - - - smtpd -o smtpd_enforce_tls=no -o smtpd_tls_security_level=may -o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticate d,reject -o smtpd_sender_restrictions= -o smtpd_proxy_filter=127.$

Then start postfix, that removes STARTTLS requirement at postfix submission service.