Skip to content

Commit

Permalink
update ActionMailer config
Browse files Browse the repository at this point in the history
  • Loading branch information
stepchud committed Feb 21, 2025
1 parent 010dd8b commit c1349fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config/environments/dev.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@
config.action_mailer.smtp_settings = {
domain: ENV.fetch('HOST'),
address: ENV.fetch('SMTP_SERVER'),
port: ENV.fetch('SMTP_PORT', 587).to_i
port: ENV.fetch('SMTP_PORT', 587).to_i,
openssl_verify_mode: OpenSSL::SSL::VERIFY_NONE,
authentication: nil
}

config.action_mailer.default_url_options = { host: ENV.fetch('HOST', 'challenge-dev.app.cloud.gov') }
Expand Down

0 comments on commit c1349fa

Please sign in to comment.