Re: [exim] Unable to send email from email clients

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Graeme Fowler
Date:  
À: exim-users
Sujet: Re: [exim] Unable to send email from email clients
On Mon, 2009-06-08 at 08:31 -0600, Troy Wical wrote:
> tls_on_connect_ports=465:587


Remove 587 there and restart. 587 is not "tls on connect", it's a plain
port with the ability to accept a STARTTLS command. That's the source of
your sync errors.

Ideally you want something like this:

tls_advertise_hosts = *
tls_certificate = /path/to/crt
tls_privatekey = /path/to/key
daemon_smtp_ports = 25 : 465 : 587
tls_on_connect_ports = 465

Graeme