From 03c05456147dc2ad9af90c86f299d67019a7ee10 Mon Sep 17 00:00:00 2001 From: ueno Date: Thu, 2 Mar 2000 04:37:56 +0000 Subject: [PATCH] * lisp/nnimap.el (nnimap-request-article-part): Don't use `imap-capability' to detect BODYDETAIL response. --- lisp/nnimap.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/nnimap.el b/lisp/nnimap.el index 53d1e3f..41082eb 100644 --- a/lisp/nnimap.el +++ b/lisp/nnimap.el @@ -620,7 +620,7 @@ function is generally only called when Gnus is shutting down." (erase-buffer) (setq fetch-data (imap-fetch article part prop nil nnimap-server-buffer)) - (if (imap-capability 'IMAP4rev1 nnimap-server-buffer) + (if (eq prop 'BODYDETAIL) (insert (nth 2 (car fetch-data))) (insert fetch-data)) (nnheader-ms-strip-cr) -- 1.7.10.4