Browse Source

Add SMTP_TLS variable for configuring TLS when server uses non-standard port (#4227)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
a3202fd51e
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      config/environments/production.rb

+ 1
- 0
config/environments/production.rb View File

@ -85,6 +85,7 @@ Rails.application.configure do
:ca_file => ENV['SMTP_CA_FILE'].presence,
:openssl_verify_mode => ENV['SMTP_OPENSSL_VERIFY_MODE'],
:enable_starttls_auto => ENV['SMTP_ENABLE_STARTTLS_AUTO'] || true,
:tls => ENV['SMTP_TLS'].presence,
}
config.action_mailer.delivery_method = ENV.fetch('SMTP_DELIVERY_METHOD', 'smtp').to_sym

Loading…
Cancel
Save