diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-07-14 16:09:42 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-07-14 18:16:38 +0100 |
commit | 3b632b30d1cd3f66f3ac4635cf564c37a82135a4 (patch) | |
tree | 0cdf1653658a33c551ff8c44a76daa502db074ed /conf/general.yml-example | |
parent | 5e275809b6156c6eb6f1411fe4f22daa06bf55dc (diff) |
Add support for SMTP authentication and TLS.
Fixes #406. Include Perl modules necessary for Email::Send::SMTP to
handle TLS/SSL, and upgrade Dir::Self due to
https://rt.cpan.org/Public/Bug/Display.html?id=88393
Diffstat (limited to 'conf/general.yml-example')
-rw-r--r-- | conf/general.yml-example | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/conf/general.yml-example b/conf/general.yml-example index 0704fdb52..e98022052 100644 --- a/conf/general.yml-example +++ b/conf/general.yml-example @@ -156,9 +156,13 @@ RSS_LIMIT: '20' # How many reports to show per page on the All Reports pages ALL_REPORTS_PER_PAGE: 100 -# If you wish to send email through a SMTP server elsewhere, change this -# variable. +# If you wish to send email through a SMTP server elsewhere, change these +# variables. SMTP_TYPE should be one of '', 'ssl' or 'tls'. SMTP_SMARTHOST: 'localhost' +SMTP_TYPE: '' +SMTP_PORT: '' +SMTP_USERNAME: '' +SMTP_PASSWORD: '' # Gaze is a world-wide service for population density lookups. You can leave # this as is. |