The following change has caused an error in
smtpmail-try-auth-methods.

> 2006-09-28  Osamu Yamane  <[EMAIL PROTECTED]> (tiny change)
>
>       * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
>       lines in base64-encoded authentication response.

This patch seems to solve the problem.

--- ./smtpmail.el.orig  2006-09-30 07:14:55.121000000 +0900
+++ ./smtpmail.el       2006-10-01 20:12:29.972521600 +0900
@@ -554,7 +554,7 @@
                (>= (car ret) 400))
            (throw 'done nil))
        (smtpmail-send-command
-        process (base64-encode-string (smtpmail-cred-user cred t)))
+        process (base64-encode-string (smtpmail-cred-user cred) t))
        (if (or (null (car (setq ret (smtpmail-read-response process))))
                (not (integerp (car ret)))
                (>= (car ret) 400))

--
MIYOSHI Masanori


_______________________________________________
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to