From 2f79fef586254f43f1c617b0cc4a4a991d266e5b Mon Sep 17 00:00:00 2001 From: Sebastian Silva Date: Wed, 9 Dec 2020 10:19:28 -0300 Subject: [PATCH] Hotfix for email sending in production (#8812) --- config/environments/production.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index b43b00b381..fb2eafa7c8 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -69,10 +69,10 @@ config.action_mailer.smtp_settings = { :address => ENV["SMTP_HOST"] || "smtp", :port => ENV["SMTP_PORT"] || 25, - :user_name => ENV["SMTP_USER"] || '', - :password => ENV["SMTP_PASS"] || '', - :authentication => ENV["SMTP_AUTH"] || '', - :enable_starttls_auto => ENV["SMTP_STLS"] || false + #:user_name => ENV["SMTP_USER"] || '', + #:password => ENV["SMTP_PASS"] || '', + #:authentication => ENV["SMTP_AUTH"] || '', + #:enable_starttls_auto => ENV["SMTP_STLS"] || false } # Enable threaded mode