Mercurial > emacs
changeset 67347:66e6a179905b
* mail/smtpmail.el (smtpmail-try-auth-methods): Make password
prompts work for AUTH PLAIN.
author | Simon Josefsson <jas@extundo.com> |
---|---|
date | Tue, 06 Dec 2005 12:54:59 +0000 |
parents | bdeb6c3bfc1b |
children | a4c86f9070f4 |
files | lisp/ChangeLog lisp/mail/smtpmail.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Dec 06 12:43:47 2005 +0000 +++ b/lisp/ChangeLog Tue Dec 06 12:54:59 2005 +0000 @@ -1,3 +1,8 @@ +2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch) + + * mail/smtpmail.el (smtpmail-try-auth-methods): Make password + prompts work for AUTH PLAIN. + 2005-12-06 L$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu> * frame.el (set-frame-parameter): Add doc string.
--- a/lisp/mail/smtpmail.el Tue Dec 06 12:43:47 2005 +0000 +++ b/lisp/mail/smtpmail.el Tue Dec 06 12:54:59 2005 +0000 @@ -569,7 +569,7 @@ (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)))