mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
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
|
||||
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_mini_profiler = true
|
||||
|
||||
|
|
|
@ -36,7 +36,8 @@ Discourse::Application.configure do
|
|||
user_name: GlobalSetting.smtp_user_name,
|
||||
password: GlobalSetting.smtp_password,
|
||||
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?}
|
||||
|
|
Loading…
Reference in New Issue
Block a user