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.
This commit is contained in:
Tim Abbott
2015-09-26 17:46:44 -07:00
parent db51a1c547
commit 2c6bfe136a

View File

@@ -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