Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
From: Katsumi Yamaoka <yamaoka@jpl.org>
To: info-gnus-english@gnu.org
Subject: Re: M-g on nnml group
Date: Mon, 26 Mar 2007 15:14:38 +0900	[thread overview]
Message-ID: <b4mvegobkfl.fsf@jpl.org> (raw)
In-Reply-To: <mailman.1418.1174851176.7795.info-gnus-english@gnu.org>

>>>>> 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	other threads:[~2007-03-26  6:14 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.1418.1174851176.7795.info-gnus-english@gnu.org>
2007-03-26  6:14 ` Katsumi Yamaoka [this message]
2007-03-26  7:53   ` Leo
     [not found]   ` <mailman.1434.1174895767.7795.info-gnus-english@gnu.org>
     [not found]     ` <b4mmz20wdim.fsf@jpl.org>
2007-03-26 10:48       ` Leo
2007-03-26 10:57     ` Katsumi Yamaoka
2007-03-26 12:22       ` Leo
2007-03-25 19:30 Leo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b4mvegobkfl.fsf@jpl.org \
    --to=yamaoka@jpl.org \
    --cc=info-gnus-english@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).