:port => Settings.smtp_port,
:domain => Settings.smtp_domain,
:enable_starttls_auto => Settings.smtp_enable_starttls_auto,
+ :openssl_verify_mode => Settings.smtp_tls_verify_mode,
:authentication => Settings.smtp_authentication,
:user_name => Settings.smtp_user_name,
- :password => Settings.smtp_password,
- :openssl_verify_mode => OpenSSL::SSL::VERIFY_NONE
+ :password => Settings.smtp_password
}
# Set the host and protocol for all ActionMailer URLs
smtp_address: "localhost"
smtp_port: 25
smtp_domain: "localhost"
-smtp_enable_starttls_auto: false
+smtp_enable_starttls_auto: true
+smtp_tls_verify_mode: "none"
smtp_authentication: null
smtp_user_name: null
smtp_password: null