changeset 7129:e12c4a3ce996

ini: error email settings are comma-separated under backlash Document how it email_to works under backlash. When specifying multiple email addresses to receive error emails, they should be comma-separated under backlash, rather than space-separated previously. Extra spaces should not be a problem but is not "supported"/"recommended".
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Fri, 09 Feb 2018 20:19:14 +0100
parents 85d812ab4c64
children c6a063723eb2
files development.ini kallithea/lib/paster_commands/template.ini.mako
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/development.ini	Fri Feb 09 20:18:52 2018 +0100
+++ b/development.ini	Fri Feb 09 20:19:14 2018 +0100
@@ -32,13 +32,13 @@
 #email_prefix = [Kallithea]
 
 ## Recipients for error emails and fallback recipients of application mails.
-## Multiple addresses can be specified, space-separated.
+## Multiple addresses can be specified, comma-separated.
 ## Only addresses are allowed, do not add any name part.
 ## Default:
 #email_to =
 ## Examples:
 #email_to = admin@example.com
-#email_to = admin@example.com another_admin@example.com
+#email_to = admin@example.com,another_admin@example.com
 email_to =
 
 ## 'From' header for error emails. You can optionally add a name.
--- a/kallithea/lib/paster_commands/template.ini.mako	Fri Feb 09 20:18:52 2018 +0100
+++ b/kallithea/lib/paster_commands/template.ini.mako	Fri Feb 09 20:19:14 2018 +0100
@@ -33,13 +33,13 @@
 #email_prefix = [Kallithea]
 
 <%text>## Recipients for error emails and fallback recipients of application mails.</%text>
-<%text>## Multiple addresses can be specified, space-separated.</%text>
+<%text>## Multiple addresses can be specified, comma-separated.</%text>
 <%text>## Only addresses are allowed, do not add any name part.</%text>
 <%text>## Default:</%text>
 #email_to =
 <%text>## Examples:</%text>
 #email_to = admin@example.com
-#email_to = admin@example.com another_admin@example.com
+#email_to = admin@example.com,another_admin@example.com
 email_to =
 
 <%text>## 'From' header for error emails. You can optionally add a name.</%text>