diff options
author | Dalibor Nasevic <dalibor.nasevic@gmail.com> | 2011-03-03 01:03:25 +0100 |
---|---|---|
committer | Dalibor Nasevic <dalibor.nasevic@gmail.com> | 2011-03-03 01:03:25 +0100 |
commit | 80c0b00ba610384ab2bb8e7966104d22fb8c38e3 (patch) | |
tree | 28ef1d8683bf95d913ac02ba3f806650892719c3 /actionmailer/lib | |
parent | 4c9626664f7cf2549939466e9c0e1f5853948111 (diff) | |
download | rails-80c0b00ba610384ab2bb8e7966104d22fb8c38e3.tar.gz rails-80c0b00ba610384ab2bb8e7966104d22fb8c38e3.tar.bz2 rails-80c0b00ba610384ab2bb8e7966104d22fb8c38e3.zip |
Correct spelling for Base64 in action_mailer
Diffstat (limited to 'actionmailer/lib')
-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. |