diff options
author | David Roetzel <david@roetzel.de> | 2019-05-07 12:32:20 +0200 |
---|---|---|
committer | David Roetzel <david@roetzel.de> | 2019-07-29 15:42:32 +0200 |
commit | 1480b87f3187d794e4142d4de165604d348369ec (patch) | |
tree | a4426122dd56f424665e442ad007cf6bb346570f /actionmailer | |
parent | cecbc2340abec0ba96db9394f397f1e5a67c449d (diff) | |
download | rails-1480b87f3187d794e4142d4de165604d348369ec.tar.gz rails-1480b87f3187d794e4142d4de165604d348369ec.tar.bz2 rails-1480b87f3187d794e4142d4de165604d348369ec.zip |
Improve documentation of `:ssl/:tls` option [ci skip]
Add missing bullet point to make clear this is
actually a separate option from
`:openssl_verify_mode`.
Add `:ssl/:tls`-option to guides as well [ci skip]
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index c1ac9c2ad1..c2f2d593d3 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -408,7 +408,7 @@ module ActionMailer # really useful if you need to validate a self-signed and/or a wildcard certificate. You can use the name # of an OpenSSL verify constant (<tt>'none'</tt> or <tt>'peer'</tt>) or directly the constant # (<tt>OpenSSL::SSL::VERIFY_NONE</tt> or <tt>OpenSSL::SSL::VERIFY_PEER</tt>). - # <tt>:ssl/:tls</tt> Enables the SMTP connection to use SMTP/TLS (SMTPS: SMTP over direct TLS connection) + # * <tt>:ssl/:tls</tt> Enables the SMTP connection to use SMTP/TLS (SMTPS: SMTP over direct TLS connection) # # * <tt>sendmail_settings</tt> - Allows you to override options for the <tt>:sendmail</tt> delivery method. # * <tt>:location</tt> - The location of the sendmail executable. Defaults to <tt>/usr/sbin/sendmail</tt>. |