comparison mercurial/help/config.txt @ 19050:601c1e226889

smtp: use 465 as default port for SMTPS Before this patch, port 25 (wellknown port of SMTP) is used as default port, even if "[smtp] tls" is configured as "smtps". This patch uses port 465 (wellknown port of SMTPS) as default port, if "[smtp] tls" is configured as "smtps".
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Fri, 19 Apr 2013 01:26:23 +0900
parents c3b920980f22
children 9d88916fb56f
comparison
equal deleted inserted replaced
19049:2e5476980a57 19050:601c1e226889
1044 1044
1045 ``host`` 1045 ``host``
1046 Host name of mail server, e.g. "mail.example.com". 1046 Host name of mail server, e.g. "mail.example.com".
1047 1047
1048 ``port`` 1048 ``port``
1049 Optional. Port to connect to on mail server. Default: 25. 1049 Optional. Port to connect to on mail server. Default: 465 (if
1050 ``tls`` is smtps) or 25 (otherwise).
1050 1051
1051 ``tls`` 1052 ``tls``
1052 Optional. Method to enable TLS when connecting to mail server: starttls, 1053 Optional. Method to enable TLS when connecting to mail server: starttls,
1053 smtps or none. Default: none. 1054 smtps or none. Default: none.
1054 1055