fix runtime config
continuous-integration/drone/push Build is passing Details

This commit is contained in:
shibao 2023-01-26 19:48:58 -05:00
parent e568a2f073
commit 75fcbb1e65
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ if config_env() == :prod do
config :cannery, Cannery.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",