Added `openssl_verify_mode` parameter for action_mailer.
- parameter in `environments/production.rb` - documentation & default value (nil) in `discourse_defaults.conf`
This commit is contained in:
parent
773cf60224
commit
b53248178b
|
@ -63,6 +63,10 @@ smtp_authentication = plain
|
||||||
# enable TLS encryption for smtp connections
|
# enable TLS encryption for smtp connections
|
||||||
smtp_enable_start_tls = true
|
smtp_enable_start_tls = true
|
||||||
|
|
||||||
|
# mode for verifying smtp server certificates
|
||||||
|
# to disable, set to 'none'
|
||||||
|
smtp_openssl_verify_mode =
|
||||||
|
|
||||||
# enable MiniProfiler for administrators
|
# enable MiniProfiler for administrators
|
||||||
enable_mini_profiler = true
|
enable_mini_profiler = true
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,8 @@ Discourse::Application.configure do
|
||||||
user_name: GlobalSetting.smtp_user_name,
|
user_name: GlobalSetting.smtp_user_name,
|
||||||
password: GlobalSetting.smtp_password,
|
password: GlobalSetting.smtp_password,
|
||||||
authentication: GlobalSetting.smtp_authentication,
|
authentication: GlobalSetting.smtp_authentication,
|
||||||
enable_starttls_auto: GlobalSetting.smtp_enable_start_tls
|
enable_starttls_auto: GlobalSetting.smtp_enable_start_tls,
|
||||||
|
openssl_verify_mode: GlobalSetting.smtp_openssl_verify_mode
|
||||||
}
|
}
|
||||||
|
|
||||||
config.action_mailer.smtp_settings = settings.reject{|x,y| y.nil?}
|
config.action_mailer.smtp_settings = settings.reject{|x,y| y.nil?}
|
||||||
|
|
Loading…
Reference in New Issue