From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/68742 Path: news.gmane.org!not-for-mail From: =?utf-8?B?55m944GE54aK?= Newsgroups: gmane.emacs.gnus.general Subject: Re: Using cache to read IMAP mail offline, with proper deletion of Spam Date: Fri, 17 Jul 2009 11:32:15 +0200 Message-ID: <87eisfac4g.fsf@ubuntu.byty-RDD> References: <87skgzlrki.fsf@ubuntu.byty-RDD> <871vohvs1u.fsf@lifelogs.com> <20090716081521.M93834@porzhiz.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1247823219 28167 80.91.229.12 (17 Jul 2009 09:33:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 17 Jul 2009 09:33:39 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M17166@lists.math.uh.edu Fri Jul 17 11:33:32 2009 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1MRjop-0002mI-Jh for ding-account@gmane.org; Fri, 17 Jul 2009 11:33:31 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1MRjnm-0007HB-T6; Fri, 17 Jul 2009 04:32:26 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1MRjnl-0007Gw-6C for ding@lists.math.uh.edu; Fri, 17 Jul 2009 04:32:25 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1MRjnk-0007Sz-E1 for ding@lists.math.uh.edu; Fri, 17 Jul 2009 04:32:25 -0500 Original-Received: from manon.vellum.cz ([89.250.243.243]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1MRjoI-00079c-00 for ; Fri, 17 Jul 2009 11:32:58 +0200 Original-Received: from ubuntu.byty-RDD (nat.wia.cz [80.250.1.238]) (authenticated bits=0) by manon.vellum.cz (8.14.3/8.14.3) with ESMTP id n6H9WFBn027780 for ; Fri, 17 Jul 2009 11:32:17 +0200 In-Reply-To: <20090716081521.M93834@porzhiz.org> (=?utf-8?B?IueZveOBhA==?= =?utf-8?B?54aKIidz?= message of "Thu, 16 Jul 2009 10:20:22 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.91 (gnu/linux) X-Spam-Status: No, score=3.0 required=4.1 tests=BAYES_00, RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_SORBS_WEB,RCVD_IN_XBL autolearn=no version=3.2.5 X-Spam-Level: *** X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on manon.vellum.cz X-Spam-Score: -0.0 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:68742 Archived-At: "=E7=99=BD=E3=81=84=E7=86=8A" writes: > So, at least temporarily as a fix, before it's debugged, this means redef= ining the `E' key in gnus group summary mode=20 > to first issue the operation associated with E and then remove the item f= rom the cache. I can do this, but with intense=20 (defun gnus-imap-cache-delete () (interactive) (gnus-summary-mark-as-expirable -1) (gnus-cache-remove-article) ) (add-hook 'gnus-summary-mode-hook (lambda () (local-set-key (kbd "E") 'gnus-imap-cache-delete) ) ) =E7=99=BD=E3=81=84=E7=86=8A