1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

* mail/smtpmail.el (smtpmail-try-auth-methods): Make password

prompts work for AUTH PLAIN.
This commit is contained in:
Simon Josefsson 2005-12-06 12:57:35 +00:00
parent 0dac35b873
commit 98b537f715
2 changed files with 7 additions and 1 deletions

View 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$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu>
* frame.el (set-frame-parameter): Add doc string.

View 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)))