summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <jas@extundo.com>2005-12-06 12:57:35 +0000
committerSimon Josefsson <jas@extundo.com>2005-12-06 12:57:35 +0000
commit98b537f7151dc58c764edbdcf6542345639ebf96 (patch)
tree6fde79e264ec9535635203a1f01fd997127b71cf
parent0dac35b8733bae17488128e8265d0c4cade00b78 (diff)
downloademacs-98b537f7151dc58c764edbdcf6542345639ebf96.tar.gz
* mail/smtpmail.el (smtpmail-try-auth-methods): Make password
prompts work for AUTH PLAIN.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/mail/smtpmail.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 82ca1b89d97..4bae7d698fe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu>
* frame.el (set-frame-parameter): Add doc string.
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index 1a280ffc7f4..175e32becdf 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -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)))