Skip to content
Snippets Groups Projects
Commit 7e4310b2 authored by Thomas Citharel's avatar Thomas Citharel
Browse files

Merge branch 'fix-docker-smtp-tls' into 'main'

fix(docker): allow to configure SMTP TLS

Closes #1363

See merge request framasoft/mobilizon!1467
parents 2cf45543 2ecdf05b
No related branches found
No related tags found
No related merge requests found
......@@ -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: :if_available,
tls: System.get_env("MOBILIZON_SMTP_TLS", :if_available),
allowed_tls_versions: [:"tlsv1.2", :"tlsv1.3"],
tls_options: [
verify: :verify_peer,
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment