From 6d3f30d0c8a9944ce636cd9038cdf9a35e1da1f7 Mon Sep 17 00:00:00 2001 From: Alexander Trost Date: Tue, 21 Mar 2017 16:37:19 +0100 Subject: [PATCH] Updated docker-compose.yml with email settings --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index b4cfa15..44e3879 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -45,6 +45,10 @@ services: SETTING_DEFAULT_FROM_EMAIL: "Zulip " SETTING_EMAIL_HOST: "smtp.example.com" SETTING_EMAIL_HOST_USER: "noreply@example.com" + SETTING_EMAIL_PORT: "587" + # It seems that the email server needs to use ssl or tls and can't be used without it + SETTING_EMAIL_USE_SSL: "False" + SETTING_EMAIL_USE_TLS: "True" SETTING_ALLOWED_HOSTS: "[ '*', '127.0.0.2' ]" ZULIP_AUTH_BACKENDS: "EmailAuthBackend" ZULIP_USER_CREATION_ENABLED: "True"