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 -- ## List details at http://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
