diff options
author | Dalibor Nasevic <dalibor.nasevic@gmail.com> | 2011-03-03 01:03:25 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-03-05 11:56:33 +0100 |
commit | 3457db712e1a66838ddd37e99fa86e108ad758a7 (patch) | |
tree | 838609beee45f199dc4d20b381a6d8c4133a453c /actionmailer | |
parent | 3673a6981e06365fc46fd7ebd4a5b0d5f8ee3c6e (diff) | |
download | rails-3457db712e1a66838ddd37e99fa86e108ad758a7.tar.gz rails-3457db712e1a66838ddd37e99fa86e108ad758a7.tar.bz2 rails-3457db712e1a66838ddd37e99fa86e108ad758a7.zip |
Correct spelling for Base64 in action_mailer
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 15b0d01154..16fcf112b7 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -291,7 +291,7 @@ module ActionMailer #:nodoc: # * <tt>:authentication</tt> - If your mail server requires authentication, you need to specify the # authentication type here. # This is a symbol and one of <tt>:plain</tt> (will send the password in the clear), <tt>:login</tt> (will - # send password BASE64 encoded) or <tt>:cram_md5</tt> (combines a Challenge/Response mechanism to exchange + # send password Base64 encoded) or <tt>:cram_md5</tt> (combines a Challenge/Response mechanism to exchange # information and a cryptographic Message Digest 5 algorithm to hash important information) # * <tt>:enable_starttls_auto</tt> - When set to true, detects if STARTTLS is enabled in your SMTP server # and starts to use it. |