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

master
Eugen Rochko 7 years ago committed by GitHub
parent 1cceefce33
commit a3202fd51e
  1. 1
      config/environments/production.rb

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