]> git.eshelyaron.com Git - emacs.git/commitdiff
* mail/smtpmail.el (smtpmail-try-auth-methods): Make password
authorSimon Josefsson <jas@extundo.com>
Tue, 6 Dec 2005 12:57:35 +0000 (12:57 +0000)
committerSimon Josefsson <jas@extundo.com>
Tue, 6 Dec 2005 12:57:35 +0000 (12:57 +0000)
prompts work for AUTH PLAIN.

lisp/ChangeLog
lisp/mail/smtpmail.el

index 82ca1b89d9718657d830b01214c3f796f7dcb78c..4bae7d698fedeb2e6f6a291e6dde43559cc80435 100644 (file)
@@ -1,3 +1,9 @@
+2005-12-06  Nozomu Ando <nand@mac.com>  (tiny patch)
+
+       * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
+       prompts work for AUTH PLAIN.  Also reported by Steve Allan
+       <seallan@verizon.net>.
+
 2005-12-06  L\e$,1 q\e(Brentey K\e,Aa\e(Broly  <lorentey@elte.hu>
 
        * frame.el (set-frame-parameter): Add doc string.
index 1a280ffc7f4fc52b6dffcf452a94b8043abfb5c8..175e32becdf1bbf7fc71920ded8dd08134923170 100644 (file)
@@ -569,7 +569,7 @@ This is relative to `smtpmail-queue-dir'.")
                                        (concat "\0"
                                                (smtpmail-cred-user cred)
                                                "\0"
-                                               (smtpmail-cred-passwd cred))))
+                                               passwd)))
        (if (or (null (car (setq ret (smtpmail-read-response process))))
                (not (integerp (car ret)))
                (not (equal (car ret) 235)))