summaryrefslogtreecommitdiff
path: root/lisp/mail
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 /lisp/mail
parent0dac35b8733bae17488128e8265d0c4cade00b78 (diff)
downloademacs-98b537f7151dc58c764edbdcf6542345639ebf96.tar.gz
* mail/smtpmail.el (smtpmail-try-auth-methods): Make password
prompts work for AUTH PLAIN.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/smtpmail.el2
1 files changed, 1 insertions, 1 deletions
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)))