Merge branch 'environment-smtp-verify' of https://github.com/cfstras/discourse

This commit is contained in:
Sam 2014-05-14 11:25:05 +10:00
commit 810eda448f
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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?}