Skip to content
Snippets Groups Projects
Verified Commit 0dfed0b0 authored by cyrinux's avatar cyrinux :construction_worker_tone1:
Browse files

fix: false is a string

parent 88f3b0b9
No related branches found
No related tags found
No related merge requests found
Pipeline #31636 failed
...@@ -137,7 +137,7 @@ config :mobilizon, Mobilizon.Web.Email.Mailer, ...@@ -137,7 +137,7 @@ config :mobilizon, Mobilizon.Web.Email.Mailer,
port: System.get_env("MOBILIZON_SMTP_PORT", "25"), port: System.get_env("MOBILIZON_SMTP_PORT", "25"),
username: System.get_env("MOBILIZON_SMTP_USERNAME", nil), username: System.get_env("MOBILIZON_SMTP_USERNAME", nil),
password: System.get_env("MOBILIZON_SMTP_PASSWORD", nil), password: System.get_env("MOBILIZON_SMTP_PASSWORD", nil),
no_mx_lookups: System.get_env("MOBILIZON_SMTP_NO_MX_LOOKUP", false), no_mx_lookups: System.get_env("MOBILIZON_SMTP_NO_MX_LOOKUP", "false"),
auth: System.get_env("MOBILIZON_SMTP_AUTH", "if_available"), auth: System.get_env("MOBILIZON_SMTP_AUTH", "if_available"),
tls: System.get_env("MOBILIZON_SMTP_TLS", "if_available"), tls: System.get_env("MOBILIZON_SMTP_TLS", "if_available"),
tls_options: tls_options:
......
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