From 362b6fe417ca3ebf66eedc56cb757521c16c2b0d Mon Sep 17 00:00:00 2001 From: Brian Kelly Date: Fri, 19 Jul 2024 10:33:02 -0500 Subject: [PATCH] Switch from SMTP to sendmail for delivering mail (#328) --- config/environments/production.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/environments/production.rb b/config/environments/production.rb index b55acd22..7f94281c 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -68,6 +68,8 @@ # Set this to true and configure the email server for immediate delivery to raise delivery errors. # config.action_mailer.raise_delivery_errors = false + config.action_mailer.delivery_method = :sendmail + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to # the I18n.default_locale when a translation cannot be found). config.i18n.fallbacks = true