Skip to content

Commit

Permalink
Hotfix for email sending in production (publiclab#8812)
Browse files Browse the repository at this point in the history
  • Loading branch information
icarito authored and billymoroney1 committed Dec 28, 2021
1 parent f45d15b commit 2f79fef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/environments/production.rb
Expand Up @@ -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
Expand Down

0 comments on commit 2f79fef

Please sign in to comment.