>>>>> In <[EMAIL PROTECTED]>
>>>>> 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,
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english