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

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Graeme Fowler
日付:  
To: exim-users
題目: 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