From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64900 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: [gmane.emacs.devel] gnus-read-mark not preserved Date: Fri, 06 Jul 2007 10:08:49 +0900 Organization: Emacsen advocacy group Message-ID: References: <873b0oxwpr.fsf@escher.local.home> <87myys71l1.fsf@escher.local.home> <87r6nwm40f.fsf@florent.maison> <87ejjukg6s.fsf@florent.maison> <87ir921r5w.fsf@escher.local.home> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1183684228 17028 80.91.229.12 (6 Jul 2007 01:10:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 6 Jul 2007 01:10:28 +0000 (UTC) Cc: ding@gnus.org To: Stephen Berman Original-X-From: ding-owner+M13410@lists.math.uh.edu Fri Jul 06 03:10:26 2007 connect(): Connection refused 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 1I6cL4-0001Yi-8e for ding-account@gmane.org; Fri, 06 Jul 2007 03:10:26 +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 1I6cKN-0004ab-Ei; Thu, 05 Jul 2007 20:09:43 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1I6cKK-0004aG-GA for ding@lists.math.uh.edu; Thu, 05 Jul 2007 20:09:40 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1I6cKG-0002Fo-45 for ding@lists.math.uh.edu; Thu, 05 Jul 2007 20:09:40 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1I6cKE-0006Zx-00 for ; Fri, 06 Jul 2007 03:09:35 +0200 Original-Received: from [66.225.201.151] (helo=mail.jpl.org) by orlando.hostforweb.net with esmtpa (Exim 4.63) (envelope-from ) id 1I6cJg-0007mP-JC; Thu, 05 Jul 2007 20:09:00 -0500 X-Hashcash: 1:20:070706:stephen.berman@gmx.net::3LWjvG23oN32YcFp:0000000000000000000000000000000000000001GUz X-Hashcash: 1:20:070706:ding@gnus.org::OnsaS34gI/atavrs:00006ePD X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:l+lpYZgtV4oJSh3w76gMP/4WMe4= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64900 Archived-At: --=-=-= Hi, Doesn't your problem apply to this case? I tried using unpatched Gnus v5.11 for a couple of these days to read and post mail and news articles as usual, however I didn't encounter any other trouble. >>>>> Katsumi Yamaoka wrote: > The prerequisites to cause this bug are: > 1. You have persistent (i.e., cached, marked with `*') articles > that you have read (or marked as ticked) in a group. > 2. Some or all of those articles have been expired in the server. > 3. You have ever performed `gnus-agent-expire' or > `gnus-agent-regenerate', or have ever simply deleted the > ~/News/agent/ directory. (In the last case, the directory > and files are regenerated automatically.) > In that case, some or all of persistent articles that have been > expired in the server are recognized as unfetched articles, > because the Agent cannot fetch those headers from the server. > And then, they are all marked as unread when you run the `c' > command (`gnus-summary-catchup-and-exit'), that recognizes > unfetched articles as unread articles. [...] > The patch for Gnus v5.11 is here: --=-=-= Content-Type: text/x-patch Content-Disposition: inline --- gnus-sum.el~ 2007-06-06 15:39:11 +0000 +++ gnus-sum.el 2007-07-04 09:02:52 +0000 @@ -10514,7 +10514,8 @@ (gnus-sorted-nunion (gnus-sorted-intersection gnus-newsgroup-unreads gnus-newsgroup-downloadable) - gnus-newsgroup-unfetched))) + (gnus-sorted-difference gnus-newsgroup-unfetched + gnus-newsgroup-cached)))) ;; We actually mark all articles as canceled, which we ;; have to do when using auto-expiry or adaptive scoring. (gnus-summary-show-all-threads) --=-=-=--