From 126727bf58d19d20642bd547072eb5fef1a9a22d Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 6 Dec 2023 16:07:03 +0100 Subject: [PATCH] fix(docker): fix getting default value for MOBILIZON_SMTP_SSL env Signed-off-by: Thomas Citharel --- config/docker.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/docker.exs b/config/docker.exs index 5e78abe7b..072bf28db 100644 --- a/config/docker.exs +++ b/config/docker.exs @@ -58,7 +58,7 @@ config :mobilizon, Mobilizon.Web.Email.Mailer, server_name_indication: ~c"#{System.get_env("MOBILIZON_SMTP_SERVER", "localhost")}", depth: 99 ], - ssl: System.get_env("MOBILIZON_SMTP_SSL", false), + ssl: System.get_env("MOBILIZON_SMTP_SSL", "false"), retries: 1, no_mx_lookups: false, auth: :if_available