Skip to content

Commit 5f7f256

Browse files
authored
Merge pull request #3415 from manyfold3d/mail-fix
Set SSL verify mode as string, not symbol
2 parents 04f2944 + 97fe511 commit 5f7f256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/application.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Application < Rails::Application
6464
user_name: ENV.fetch("SMTP_USERNAME", nil),
6565
password: ENV.fetch("SMTP_PASSWORD", nil),
6666
authentication: ENV.fetch("SMTP_AUTHENTICATION", nil)&.to_sym,
67-
openssl_verify_mode: ENV.fetch("SMTP_OPENSSL_VERIFY_MODE", nil)&.to_sym,
67+
openssl_verify_mode: ENV.fetch("SMTP_OPENSSL_VERIFY_MODE", nil),
6868
open_timeout: ENV.fetch("SMTP_OPEN_TIMEOUT", nil)&.to_i,
6969
read_timeout: ENV.fetch("SMTP_READ_TIMEOUT", nil)&.to_i
7070
}.compact

0 commit comments

Comments
 (0)