From c1ea913a6178a2d57d6510c8fd4a11a8d6a6d3a8 Mon Sep 17 00:00:00 2001 From: jakerenzella Date: Tue, 17 Dec 2024 15:48:32 +1100 Subject: [PATCH] fix: don't default mailer config to plain auth --- 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 6bb6af878..0d8f914a2 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -42,7 +42,7 @@ domain: ENV.fetch('DF_SMTP_DOMAIN', nil), user_name: ENV.fetch('DF_SMTP_USERNAME', nil), password: ENV.fetch('DF_SMTP_PASSWORD', nil), - authentication: ENV.fetch('DF_SMTP_AUTHENTICATION', 'plain'), + authentication: ENV.fetch('DF_SMTP_AUTHENTICATION', nil), enable_starttls_auto: true } end