From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/27714 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-group-get-new-news broken again Date: 04 Dec 1999 23:20:44 -0500 Organization: U of Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <2niu2evx0j.fsf@tiger.jia.vnet> References: <87d7smpywj.fsf@cenderis.demon.co.uk> <87g0xilkcj.fsf@mharnois.workgroup.net> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035164690 25986 80.91.224.250 (21 Oct 2002 01:44:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:44:50 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id XAA27325 for ; Sat, 4 Dec 1999 23:23:11 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id WAB11716; Sat, 4 Dec 1999 22:22:57 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 04 Dec 1999 22:23:05 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id WAA17548 for ; Sat, 4 Dec 1999 22:22:51 -0600 (CST) Original-Received: from mailhop1.nyroc.rr.com (mailhop1-1.nyroc.rr.com [24.92.226.166]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id XAA27315 for ; Sat, 4 Dec 1999 23:22:24 -0500 (EST) Original-Received: from mailout2.nyroc.rr.com ([10.92.226.121]) by mailhop1.nyroc.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with ESMTP id com for ; Sat, 4 Dec 1999 23:20:32 -0500 Original-Received: from heart.cs.rochester.edu ([24.24.58.252]) by mailout2.nyroc.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with ESMTP id com for ; Sat, 4 Dec 1999 23:14:10 -0500 Original-Received: (from zsh@localhost) by heart.cs.rochester.edu (8.9.3/8.9.3) id XAA27343; Sat, 4 Dec 1999 23:20:44 -0500 X-Authentication-Warning: tiger.jia.vnet: zsh set sender to zsh@cs.rochester.edu using -f Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: Simon Josefsson's message of "05 Dec 1999 01:43:07 +0100" Original-Lines: 43 User-Agent: Gnus/5.0803 (Gnus v5.8.3) XEmacs/21.2 (Shinjuku) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:27714 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:27714 >>>>> "Simon" == Simon Josefsson writes: Simon> Michael Harnois writes: >> > I have mail groups at level 1, and news groups at level 3. I >> > use C-u 2 g to get new email messages. >> >> > A few days ago, this worked, but now it doesn't (it doesn't get >> > any new messages). I'm using CVS gnus, and this coincides >> > approximately with the 0.99->5.8.2->5.8.3 change, I guess. >> >> I reported it three days ago, so it's at least that old... Simon> Hm, does it go away if you remove my speedup-patch, by applying this Simon> patch below? Commited some days ago, so it might be it. Simon> If so, what does the select method for your level 1 group look like? Simon> (`G e' in the group buffer, on the group) Simon> --- gnus-start.el Sun Dec 5 01:34:31 1999 Simon> +++ gnus-start.el.~5.41~ Sun Dec 5 01:32:59 1999 Simon> @@ -1550,10 +1542,7 @@ Simon> (setcdr (assoc method retrievegroups) Simon> (cons group (cdr (assoc method retrievegroups)))) Simon> (push (list method group) retrievegroups)) Simon> - (if (member method scanned-methods) Simon> - (setq active (gnus-activate-group group)) Simon> - (setq active (gnus-activate-group group 'scan)) Simon> - (push method scanned-methods)) Simon> + (setq active (gnus-activate-group group 'scan)) Simon> (inline (gnus-close-group group)))))) Simon> ;; Get the number of unread articles in the group. I think the patch speed up most mail sources correctly except directory, since there is a hack code in nnmail-get-new-mail (nnmail.el:1426), which only fetch the contents of a single group's spool file. With the patch, `2 g' fetching for the first group inhibits fetching from other spool files. For those users who do not use directory as a mail source, this patch would not be a problem. -- Shenghuo