From bf0d19e5fdcf091a0a0a76461c04657c8ca368fe Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Sat, 3 Feb 2024 17:52:30 -0600 Subject: [PATCH] Convert to boolean --- config/environments/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index ec74b5c5..5ed96e05 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -76,7 +76,7 @@ Rails.application.configure do user_name: ENV["SMTP_USERNAME"], password: ENV["SMTP_PASSWORD"], authentication: ENV["SMTP_AUTHENTICATION"], - enable_starttls_auto: ENV["SMTP_ENABLE_STARTTLS_AUTO"] + enable_starttls_auto: ENV["SMTP_ENABLE_STARTTLS_AUTO"] == "true" } # Ignore bad email addresses and do not raise email delivery errors.