From 6dbadc58aefb7ccb0dbc26b4a7963b256588089b Mon Sep 17 00:00:00 2001 From: shibao Date: Thu, 26 Jan 2023 19:55:59 -0500 Subject: [PATCH] fix runtime config --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index 456d8e5..8552a35 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -75,7 +75,7 @@ if config_env() == :prod do config :lokal, Lokal.Mailer, adapter: Swoosh.Adapters.SMTP, relay: System.get_env("SMTP_HOST") || raise("No SMTP_HOST set!"), - port: System.get_env("SMTP_PORT", 587), + port: System.get_env("SMTP_PORT", "587"), username: System.get_env("SMTP_USERNAME") || raise("No SMTP_USERNAME set!"), password: System.get_env("SMTP_PASSWORD") || raise("No SMTP_PASSWORD set!"), ssl: System.get_env("SMTP_SSL") == "true",