Skip to content

Commit

Permalink
fix: don't default mailer config to plain auth
Browse files Browse the repository at this point in the history
  • Loading branch information
jakerenzella committed Dec 17, 2024
1 parent 3ff0c5d commit c1ea913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c1ea913

Please sign in to comment.