From 28063bd1d9e725957cf45cba3d8847fd2aa0fdd1 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 6 Dec 2023 16:05:33 +0100 Subject: [PATCH] fix(docker): fix getting configuration value from env MOBILIZON_SMTP_TLS Closes #1381 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 cef88c266..5e78abe7b 100644 --- a/config/docker.exs +++ b/config/docker.exs @@ -49,7 +49,7 @@ config :mobilizon, Mobilizon.Web.Email.Mailer, port: System.get_env("MOBILIZON_SMTP_PORT", "25"), username: System.get_env("MOBILIZON_SMTP_USERNAME", nil), password: System.get_env("MOBILIZON_SMTP_PASSWORD", nil), - tls: System.get_env("MOBILIZON_SMTP_TLS", :if_available), + tls: System.get_env("MOBILIZON_SMTP_TLS", "if_available"), allowed_tls_versions: [:"tlsv1.2", :"tlsv1.3"], tls_options: [ verify: :verify_peer,