Skip to content

Commit

Permalink
Merge pull request #3415 from manyfold3d/mail-fix
Browse files Browse the repository at this point in the history
Set SSL verify mode as string, not symbol
  • Loading branch information
Floppy authored Jan 16, 2025
2 parents 04f2944 + 97fe511 commit 5f7f256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Application < Rails::Application
user_name: ENV.fetch("SMTP_USERNAME", nil),
password: ENV.fetch("SMTP_PASSWORD", nil),
authentication: ENV.fetch("SMTP_AUTHENTICATION", nil)&.to_sym,
openssl_verify_mode: ENV.fetch("SMTP_OPENSSL_VERIFY_MODE", nil)&.to_sym,
openssl_verify_mode: ENV.fetch("SMTP_OPENSSL_VERIFY_MODE", nil),
open_timeout: ENV.fetch("SMTP_OPEN_TIMEOUT", nil)&.to_i,
read_timeout: ENV.fetch("SMTP_READ_TIMEOUT", nil)&.to_i
}.compact
Expand Down

0 comments on commit 5f7f256

Please sign in to comment.