# HG changeset patch # User Thomas De Schampheleire <[email protected]> # Date 1437061421 -7200 # Thu Jul 16 17:43:41 2015 +0200 # Node ID 5073d54eaac76411f8ab281892f58f4946d69334 # Parent c024931198851143a30a4e218bbc9d7ff70927e1 e-mail: clarify that smtp_use_ssl defaults to false
Commented settings in configuration files conventionally indicate the default value. diff --git a/development.ini b/development.ini --- a/development.ini +++ b/development.ini @@ -43,7 +43,7 @@ pdebug = false #smtp_password = #smtp_port = #smtp_use_tls = false -#smtp_use_ssl = true +#smtp_use_ssl = false ## Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.) #smtp_auth = diff --git a/kallithea/bin/template.ini.mako b/kallithea/bin/template.ini.mako --- a/kallithea/bin/template.ini.mako +++ b/kallithea/bin/template.ini.mako @@ -37,7 +37,7 @@ pdebug = false #smtp_password = #smtp_port = #smtp_use_tls = false -#smtp_use_ssl = true +#smtp_use_ssl = false <%text>## Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.)</%text> #smtp_auth = diff --git a/kallithea/config/deployment.ini_tmpl b/kallithea/config/deployment.ini_tmpl --- a/kallithea/config/deployment.ini_tmpl +++ b/kallithea/config/deployment.ini_tmpl @@ -38,7 +38,7 @@ pdebug = false #smtp_password = #smtp_port = #smtp_use_tls = false -#smtp_use_ssl = true +#smtp_use_ssl = false ## Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.) #smtp_auth = diff --git a/production.ini b/production.ini --- a/production.ini +++ b/production.ini @@ -42,7 +42,7 @@ pdebug = false #smtp_password = #smtp_port = #smtp_use_tls = false -#smtp_use_ssl = true +#smtp_use_ssl = false ## Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.) #smtp_auth = diff --git a/test.ini b/test.ini --- a/test.ini +++ b/test.ini @@ -42,7 +42,7 @@ pdebug = false #smtp_password = #smtp_port = #smtp_use_tls = false -#smtp_use_ssl = true +#smtp_use_ssl = false ## Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.) #smtp_auth = _______________________________________________ kallithea-general mailing list [email protected] http://lists.sfconservancy.org/mailman/listinfo/kallithea-general
