From 2efcdb81432541e3806fa732dd1168feb78be308 Mon Sep 17 00:00:00 2001 From: Brian Kelly Date: Thu, 18 Jul 2024 14:59:50 -0500 Subject: [PATCH] Switch from SMTP to sendmail for delivering mail --- 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