From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/5357 Path: main.gmane.org!not-for-mail From: Felix Lee Newsgroups: gmane.emacs.gnus.general Subject: september 0.45, gnus-server-equal Date: Wed, 28 Feb 1996 08:17:49 -0800 Message-ID: <199602281617.IAA28026@desiree.teleport.com> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035145972 32540 80.91.224.250 (20 Oct 2002 20:32:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:32:52 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.3/8.6.9) with SMTP id JAA24636 for ; Wed, 28 Feb 1996 09:32:02 -0800 Original-Received: from desiree.teleport.com (desiree.teleport.com [192.108.254.21]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Wed, 28 Feb 1996 17:17:30 +0100 Original-Received: from teleport.com ([204.119.17.54]) by desiree.teleport.com (8.6.12/8.6.9) with ESMTP id IAA28026 for ; Wed, 28 Feb 1996 08:17:23 -0800 Original-To: ding@ifi.uio.no Xref: main.gmane.org gmane.emacs.gnus.general:5357 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:5357 symptom: when (eq gnus-read-active-file 'some) reading the active file only fetches data for a few newsgroups that I'm subscribed to. analysis: it's only fetching the groups that are explicitly labelled with the method (nntp "my-news-server"). most of the newsgroups in my gnus-newsrc-assoc were added in an earlier era, so they have a method of nil and therefore don't get fetched. comment: attaching the method to every item in gnus-newsrc-assoc is not very compact. here's a piece of my gnus-newsrc-assoc: (("comp.org.user-groups.apcug" 3 nil nil (nntp "news.teleport.com" (nntp-server-opened-hook (nntp-send-mode-reader nntp-send-authinfo-from-file)) (nntp-address "news.teleport.com"))) ("comp.org.user-groups.meetings" 3 nil nil (nntp "news.teleport.com" (nntp-server-opened-hook (nntp-send-mode-reader nntp-send-authinfo-from-file)) (nntp-address "news.teleport.com"))) ("comp.org.user-groups.management" 3 nil nil (nntp "news.teleport.com" (nntp-server-opened-hook (nntp-send-mode-reader nntp-send-authinfo-from-file)) (nntp-address "news.teleport.com"))) replicate it about 500 more times, and my newsrc.eld file becomes a couple megabytes. since there are relatively few different methods, it would be better to have an external representation more like this: ( (method-0 group-0-0 group-1-0 ...) (method-1 group-1-0 group-1-1 ...) ... )