1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

Fix last commit.

This commit is contained in:
Simon Josefsson 2004-12-27 23:06:11 +00:00
parent e829899894
commit 1a63439b34
2 changed files with 3 additions and 4 deletions

View File

@ -98,11 +98,10 @@
* ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
it can appear unencoded and has been seen from yahoo.
2004-12-27 Simon Josefsson <jas@extundo.com>
2004-12-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* 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.
in upper case. Reported by Wojciech Polak <polak@gnu.org>.
2004-12-27 Kenichi Handa <handa@m17n.org>

View 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" (upcase mech)))
(smtpmail-send-command process (upcase (format "AUTH %s" mech)))
(if (or (null (car (setq ret (smtpmail-read-response process))))
(not (integerp (car ret)))
(>= (car ret) 400))