# HG changeset patch # User Thomas De Schampheleire # Date 2018-02-09 20:19:14 # Node ID e12c4a3ce99623db52fa0698f758708196e40983 # Parent 85d812ab4c64aa232ac6953c491a945164681ef0 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". diff --git a/development.ini b/development.ini --- a/development.ini +++ b/development.ini @@ -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. diff --git a/kallithea/lib/paster_commands/template.ini.mako b/kallithea/lib/paster_commands/template.ini.mako --- a/kallithea/lib/paster_commands/template.ini.mako +++ b/kallithea/lib/paster_commands/template.ini.mako @@ -33,13 +33,13 @@ #email_prefix = [Kallithea] <%text>## Recipients for error emails and fallback recipients of application mails. -<%text>## Multiple addresses can be specified, space-separated. +<%text>## Multiple addresses can be specified, comma-separated. <%text>## Only addresses are allowed, do not add any name part. <%text>## Default: #email_to = <%text>## 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 = <%text>## 'From' header for error emails. You can optionally add a name.