From: Simon Josefsson Date: Sun, 17 Jul 2005 07:44:34 +0000 (+0000) Subject: (smtpmail-auth-supported): Prefer PLAIN over LOGIN. X-Git-Tag: emacs-pretest-22.0.90~8067 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e81c51f0b220a1aa82dad3a7a022c7976c1adf68;p=emacs.git (smtpmail-auth-supported): Prefer PLAIN over LOGIN. --- 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 + + * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over + LOGIN. + 2005-07-16 Jose E. Marchesi * 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.") ;;;