diff options
| author | Simon Josefsson | 2005-12-06 12:57:35 +0000 |
|---|---|---|
| committer | Simon Josefsson | 2005-12-06 12:57:35 +0000 |
| commit | 98b537f7151dc58c764edbdcf6542345639ebf96 (patch) | |
| tree | 6fde79e264ec9535635203a1f01fd997127b71cf | |
| parent | 0dac35b8733bae17488128e8265d0c4cade00b78 (diff) | |
| download | emacs-98b537f7151dc58c764edbdcf6542345639ebf96.tar.gz emacs-98b537f7151dc58c764edbdcf6542345639ebf96.zip | |
* mail/smtpmail.el (smtpmail-try-auth-methods): Make password
prompts work for AUTH PLAIN.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 2 |
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 @@ | |||
| 1 | 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch) | ||
| 2 | |||
| 3 | * mail/smtpmail.el (smtpmail-try-auth-methods): Make password | ||
| 4 | prompts work for AUTH PLAIN. Also reported by Steve Allan | ||
| 5 | <seallan@verizon.net>. | ||
| 6 | |||
| 1 | 2005-12-06 L$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu> | 7 | 2005-12-06 L$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu> |
| 2 | 8 | ||
| 3 | * frame.el (set-frame-parameter): Add doc string. | 9 | * 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'.") | |||
| 569 | (concat "\0" | 569 | (concat "\0" |
| 570 | (smtpmail-cred-user cred) | 570 | (smtpmail-cred-user cred) |
| 571 | "\0" | 571 | "\0" |
| 572 | (smtpmail-cred-passwd cred)))) | 572 | passwd))) |
| 573 | (if (or (null (car (setq ret (smtpmail-read-response process)))) | 573 | (if (or (null (car (setq ret (smtpmail-read-response process)))) |
| 574 | (not (integerp (car ret))) | 574 | (not (integerp (car ret))) |
| 575 | (not (equal (car ret) 235))) | 575 | (not (equal (car ret) 235))) |