]> git.eshelyaron.com Git - emacs.git/commitdiff
mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
authorSimon Josefsson <jas@extundo.com>
Mon, 27 Dec 2004 11:30:04 +0000 (11:30 +0000)
committerSimon Josefsson <jas@extundo.com>
Mon, 27 Dec 2004 11:30:04 +0000 (11:30 +0000)
in upper case.  Reported by Wojciech Polak <polak@gnu.org> and
tiny patch from Sergey Poznyakoff.

lisp/ChangeLog
lisp/mail/smtpmail.el

index 42fdf4869f94e0ba775cda012c2c2aa432260ac0..c75197e316d852e0f13a991e440679a7eb9dee95 100644 (file)
@@ -1,3 +1,9 @@
+2004-12-27  Simon Josefsson  <jas@extundo.com>
+
+       * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
+       in upper case.  Reported by Wojciech Polak <polak@gnu.org> and
+       tiny patch from Sergey Poznyakoff.
+
 2004-12-27  Kenichi Handa  <handa@m17n.org>
 
        * international/utf-8.el (utf-translate-cjk-load-tables): Bind
index d356979ea26bfa46a45c7f3077dc21ae13147c13..57443abd4590aab7bb0b12faeed7b7dab88cb50b 100644 (file)
@@ -523,7 +523,7 @@ This is relative to `smtpmail-queue-dir'.")
     (when (and cred mech)
       (cond
        ((eq mech 'cram-md5)
-       (smtpmail-send-command process (format "AUTH %s" mech))
+       (smtpmail-send-command process (format "AUTH %s" (upcase mech)))
        (if (or (null (car (setq ret (smtpmail-read-response process))))
                (not (integerp (car ret)))
                (>= (car ret) 400))