# HG changeset patch # User Thomas De Schampheleire # Date 1518203954 -3600 # 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 -r 85d812ab4c64 -r e12c4a3ce996 development.ini --- 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. diff -r 85d812ab4c64 -r e12c4a3ce996 kallithea/lib/paster_commands/template.ini.mako --- 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>## 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.