From 6102def1abea1709e04dad7c306ca1b620ed4f44 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 17 Nov 2003 06:03:29 +0000 Subject: [PATCH 1/1] Synch to Gnus 200311170555. --- lisp/ChangeLog | 6 ++++++ lisp/imap.el | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e85ee42..6cf27d1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2003-11-17 Simon Josefsson + + * imap.el (imap-gssapi-auth-p): Don't check capability (some + servers remove AUTH=GSSAPI from capability response returned after + successful authentication). + 2003-11-16 Jesper Harder * gnus.el (gnus-getenv-nntpserver): Fix regexp and simplify. diff --git a/lisp/imap.el b/lisp/imap.el index ab46b50..0c7f5dc 100644 --- a/lisp/imap.el +++ b/lisp/imap.el @@ -828,8 +828,7 @@ Returns t if login was successful, nil otherwise." ret))) (defun imap-gssapi-auth-p (buffer) - (and (imap-capability 'AUTH=GSSAPI buffer) - (eq imap-stream 'gssapi))) + (eq imap-stream 'gssapi)) (defun imap-gssapi-auth (buffer) (message "imap: Authenticating using GSSAPI...%s" -- 1.7.10.4