GNU bug report logs -
#20672
[PATCH] Support hiding deleted IMAP messages
Previous Next
Reported by: Nikolaus Rath <Nikolaus <at> rath.org>
Date: Wed, 27 May 2015 04:30:08 UTC
Severity: wishlist
Tags: patch
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Package: gnus
Tags: patch
Hello,
The attached patch introduces a new server variable,
nnimap-hide-deleted. If non-nil, articles with the IMAP \Deleted flag
will not be included in Summary buffers.
This is intended to increase operability with other IMAP mailreaders and
the new 'never value for nnimap-expunge (see patch in bug 20670).
Thanks for considering.
Best,
-Nikolaus
--
GPG encrypted emails preferred. Key id: 0xD113FCAC3C4E599F
Fingerprint: ED31 791B 2C5C 1613 AF38 8B8A D113 FCAC 3C4E 599F
»Time flies like an arrow, fruit flies like a Banana.«
[nnimap_hide_deleted.diff (text/x-diff, inline)]
--- nnimap.el.bak 2015-05-26 19:28:32.453605543 -0700
+++ nnimap.el 2015-05-26 21:10:58.221688253 -0700
@@ -134,6 +134,10 @@
likely value would be \"text/\" to automatically fetch all
textual parts.")
+(defvoo nnimap-hide-deleted nil
+ "If non-nil, articles flagged as deleted (using the IMAP
+\\Delete flag) will not be shown in the Summary buffer.")
+
(defgroup nnimap nil
"IMAP for Gnus."
:group 'gnus)
@@ -180,7 +184,7 @@
(nnimap-find-process-buffer nntp-server-buffer))
(defun nnimap-header-parameters ()
- (format "(UID RFC822.SIZE BODYSTRUCTURE %s)"
+ (format "(UID FLAGS RFC822.SIZE BODYSTRUCTURE %s)"
(format
(if (nnimap-ver4-p)
"BODY.PEEK[HEADER.FIELDS %s]"
@@ -239,12 +243,17 @@
(and (re-search-forward "UID \\([0-9]+\\)" (line-end-position)
t)
(match-string 1)))
- (setq lines nil)
+ (setq flags
+ (and (re-search-forward "FLAGS (\\([^)]+\\))"
+ (line-end-position)
+ t)
+ (split-string (match-string 1))))
(setq size
(and (re-search-forward "RFC822.SIZE \\([0-9]+\\)"
(line-end-position)
t)
(match-string 1)))
+ (setq lines nil)
(beginning-of-line)
(when (search-forward "BODYSTRUCTURE" (line-end-position) t)
(let ((structure (ignore-errors
@@ -258,20 +267,25 @@
(equal (upcase (nth 1 structure)) "RFC822"))
(nth 9 structure)
(nth 7 structure)))))
- (delete-region (line-beginning-position) (line-end-position))
- (insert (format "211 %s Article retrieved." article))
- (forward-line 1)
- (when size
- (insert (format "Chars: %s\n" size)))
- (when lines
- (insert (format "Lines: %s\n" lines)))
- ;; Most servers have a blank line after the headers, but
- ;; Davmail doesn't.
- (unless (re-search-forward "^\r$\\|^)\r?$" nil t)
- (goto-char (point-max)))
- (delete-region (line-beginning-position) (line-end-position))
- (insert ".")
- (forward-line 1)))))
+ (if (and nnimap-hide-deleted
+ (member "\\Deleted" flags))
+ (delete-region (line-beginning-position)
+ (or (re-search-forward "^\r$\\|^)\r?$" nil t)
+ (point-max)))
+ (delete-region (line-beginning-position) (line-end-position))
+ (insert (format "211 %s Article retrieved." article))
+ (forward-line 1)
+ (when size
+ (insert (format "Chars: %s\n" size)))
+ (when lines
+ (insert (format "Lines: %s\n" lines)))
+ ;; Most servers have a blank line after the headers, but
+ ;; Davmail doesn't.
+ (unless (re-search-forward "^\r$\\|^)\r?$" nil t)
+ (goto-char (point-max)))
+ (delete-region (line-beginning-position) (line-end-position))
+ (insert ".")
+ (forward-line 1))))))
(defun nnimap-unfold-quoted-lines ()
;; Unfold quoted {number} strings.
This bug report was last modified 4 years and 281 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.