info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: M-g on nnml group


From: Katsumi Yamaoka
Subject: Re: M-g on nnml group
Date: Mon, 26 Mar 2007 15:14:38 +0900
User-agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.96 (gnu/linux)

>>>>> In <mailman.1418.1174851176.7795.info-gnus-english@gnu.org>
>>>>>   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,


reply via email to

[Prev in Thread] Current Thread [Next in Thread]