dev_settings: Remove port number from EMAIL_GATEWAY_PATTERN.

EMAIL_GATEWAY_PATTERN used to contain a port number in dev setttings
which made it impossible for the email mirror to accept emails sent to
it.
This commit is contained in:
Mateusz Mandera 2019-01-08 21:03:17 +01:00 committed by Tim Abbott
parent 82e453d9fe
commit 726767ece5
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ AUTHENTICATION_BACKENDS = (
)
EXTERNAL_URI_SCHEME = "http://"
EMAIL_GATEWAY_PATTERN = "%s@" + EXTERNAL_HOST
EMAIL_GATEWAY_PATTERN = "%s@" + EXTERNAL_HOST.split(':')[0]
NOTIFICATION_BOT = "notification-bot@zulip.com"
ERROR_BOT = "error-bot@zulip.com"
# SLOW_QUERY_LOGS_STREAM = "errors"