emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

error in smtpmail-try-auth-methods


From: MIYOSHI Masanori
Subject: error in smtpmail-try-auth-methods
Date: Sun, 01 Oct 2006 20:24:19 +0900
User-agent: Gnus/5.110006 (No Gnus v0.6) Meadow-3.00-dev (KIKU)

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

> 2006-09-28  Osamu Yamane  <address@hidden> (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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]