From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/8820 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: M-g on nnml group Date: Mon, 26 Mar 2007 15:14:38 +0900 Organization: Emacsen advocacy group Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1174891185 29642 80.91.229.12 (26 Mar 2007 06:39:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Mar 2007 06:39:45 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon Mar 26 08:39:39 2007 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HViri-00082M-6Q for gegu-info-gnus-english@m.gmane.org; Mon, 26 Mar 2007 08:39:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HVitu-0008WD-8i for gegu-info-gnus-english@m.gmane.org; Mon, 26 Mar 2007 01:41:54 -0500 Original-Path: shelby.stanford.edu!newshub.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 29 Original-X-Trace: individual.net 85DPWUraBo8DQF4vAqSizQwmWwvIIzf22VJPUMxREaIXe9mtg= 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.110006 (No Gnus v0.6) Emacs/22.0.96 (gnu/linux) Cancel-Lock: sha1:JGG8/om6vVaqVELGt6iAlUQv3lo= Original-Xref: shelby.stanford.edu gnu.emacs.gnus:79003 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:8820 Archived-At: >>>>> In >>>>> Leo wrote: > I have an archive nnml group: Sent-Mails.2007. Each time I hit M-g on > this group, all servers defined in mail-sources (they are all gmail > accounts) are also checked and that makes it very slow. > Is this a bug? I don't think so. Because whether to check mails for nnml groups is controlled by `nnml-get-new-mail', of which the value is t. To make it a group parameter will have no effect since fetching mails is not done in the summary buffer. Instead, the following might help: --8<---------------cut here---------------start------------->8--- (defadvice gnus-summary-rescan-group (around dont-fetch-mails activate) "Don't fetch mails for certain nnml groups." (let ((nnml-get-new-mail (unless (string-match "\\`nnml:Sent-Mails\\." gnus-newsgroup-name) nnml-get-new-mail))) ad-do-it)) --8<---------------cut here---------------end--------------->8--- I have no idea if you wrote about the `M-g' command in the group buffer, not in the summary buffer. Regards,