From 2c6bfe136a33cd27079a8b569366b01eebeae8cb Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sat, 26 Sep 2015 17:46:44 -0700 Subject: [PATCH] Remove confusing EMAIL_HOST_PASSWORD setting in SMTP configuration. This was one of the various configuration options made confusing by the secrets-to-configuration migration. Fixes #27. --- zproject/local_settings_template.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zproject/local_settings_template.py b/zproject/local_settings_template.py index caa8bba47e..fd0c65b1db 100644 --- a/zproject/local_settings_template.py +++ b/zproject/local_settings_template.py @@ -44,7 +44,8 @@ SSO_APPEND_DOMAIN = None # or empty to skip sending email. EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = '' -EMAIL_HOST_PASSWORD = '' +# If you're using password auth, you will need to put the password in +# /etc/zulip/zulip-secrets.conf as email_host_password. EMAIL_PORT = 587 EMAIL_USE_TLS = True