diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/mail/smtpmail.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 31a034e54e9..a4a80901e54 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-07-17 Simon Josefsson <jas@extundo.com> + + * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over + LOGIN. + 2005-07-16 Jose E. Marchesi <jemarch@gnu.org> * lisp/mail/smtpmail.el (smtpmail-auth-supported): Added the diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 480062286e0..55a4d060fad 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el @@ -207,7 +207,7 @@ This is relative to `smtpmail-queue-dir'.") (defvar smtpmail-queue-index (concat smtpmail-queue-dir smtpmail-queue-index-file)) -(defconst smtpmail-auth-supported '(cram-md5 login plain) +(defconst smtpmail-auth-supported '(cram-md5 plain login) "List of supported SMTP AUTH mechanisms.") ;;; |