mirror of https://github.com/zulip/zulip.git
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:
parent
82e453d9fe
commit
726767ece5
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue