From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28831 Path: main.gmane.org!not-for-mail From: Colin Rafferty Newsgroups: gmane.emacs.gnus.general Subject: Re: Oort Gnus Date: 18 Jan 2000 15:16:25 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165609 31881 80.91.224.250 (21 Oct 2002 02:00:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:00:09 +0000 (UTC) Keywords: gnus-group-new-mail-list,new,mail,nnml,nil,method Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id E13A4D051E for ; Tue, 18 Jan 2000 15:19:24 -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 OAB13047; Tue, 18 Jan 2000 14:18:21 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 18 Jan 2000 14:17:36 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id OAA22194 for ; Tue, 18 Jan 2000 14:17:23 -0600 (CST) Original-Received: from pivsbh1.ms.com (pivsbh1.ms.com [199.89.64.103]) by mailhost.sclp.com (Postfix) with ESMTP id 80CBED051E for ; Tue, 18 Jan 2000 15:17:08 -0500 (EST) Original-Received: (from uucp@localhost) by pivsbh1.ms.com (8.9.3/fw v1.30) id PAA10908 for ; Tue, 18 Jan 2000 15:16:54 -0500 (EST) Original-Received: from localhost(127.0.0.1) by pivsbh1 via smap (4.1) id sma.9482265971.008546; Tue, 18 Jan 00 15:16:37 -0500 Original-Received: by pivsbh1.ms.com (8.9.3/8.9.3(vs)) id PAA08535 for ; Tue, 18 Jan 2000 15:16:37 -0500 (EST) X-Authentication-Warning: pivsbh1.ms.com: Processed from queue /var/spool/mqueue-vs X-Authentication-Warning: pivsbh1.ms.com: Processed by uucp with -C /etc/mail/sendmail.vs.cf X-Interface: IDMZ Original-Received: from unknown(144.14.9.190) by pivsbh1 via smap (4.1) id sma.9482265861.007227; Tue, 18 Jan 00 15:16:26 -0500 Original-Received: from sag3 (sag3.morgan.com [144.14.193.113]) by safid1.morgan.com (8.8.5/hub+ldap v2.4) with ESMTP id PAA25839 for ; Tue, 18 Jan 2000 15:16:26 -0500 (EST) Original-Received: (craffert@localhost) by sag3 (980427.SGI.8.8.8/sendmail.cf.client v1.05) id PAA73537; Tue, 18 Jan 2000 15:16:26 -0500 (EST) Original-To: GNUS Mailing List X-Attribution: > Mail-Copies-To: never X-Face: ""xJff%{>hr-{:QXl"Xk2O@@(+F]e{"%EYQiW@mUuvEsL>=mx96j12qW[%m;|:B^n{J8k?Mz[K1_+H;$v,nYx^1o_=4M,L+]FIU~[[`-w~~xsy-BX,?tAF_.8u&0y*@aCv;a}Y'{w@#*@iwAl?oZpvvv X-Y-Zippy: I'm receiving a coded message from EUBIE BLAKE!! In-Reply-To: merlyn@stonehenge.com's message of "18 Jan 2000 08:35:30 -0800" Original-Lines: 36 User-Agent: Gnus/5.070097 (Pterodactyl Gnus v0.97) XEmacs/21.2 (Millenium) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:28831 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:28831 Randal L Schwartz writes: > Well, there's the one major fix that is still necessary so that I > don't get 752 lines of "No new mail" when I "2 M-g" in the Summary > buffer. I'm glad I'm not holding my breath for the fix, but it makes > some operations next to useless. If you use nnml, run this function instead. You will only get the "No new mail" for the number of folders that have new mail. (defun gnus-group-get-new-nnml () "Get new mail only." (interactive) (let ((gnus-group-new-mail-list nil) (method '(nnml "")) (nnml-prepare-save-mail-hook (cons '(lambda () (setq gnus-group-new-mail-list (union gnus-group-new-mail-list (mapcar 'car group-art)))) nnml-prepare-save-mail-hook))) (when (gnus-check-server method) (gnus-request-scan nil method)) (while gnus-group-new-mail-list (let ((gnus-group-marked (mapcar '(lambda (group) (concat "nnml:" group)) gnus-group-new-mail-list))) (setq gnus-group-new-mail-list nil) (gnus-group-get-new-news-this-group))) (when gnus-goto-next-group-when-activating (gnus-group-next-unread-group 1 t)) (gnus-summary-position-point) (run-hooks 'gnus-after-getting-new-news-hook) (gnus-group-list-groups))) ;; Colin