From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/41573 Path: main.gmane.org!not-for-mail From: "Matt Armstrong" Newsgroups: gmane.emacs.gnus.general Subject: Re: "subscribed" has overloaded meaning in gnus? Date: Fri, 04 Jan 2002 10:02:46 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: <87wuyyaw21.fsf@squeaker.lickey.com> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035176947 6872 80.91.224.250 (21 Oct 2002 05:09:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 05:09:07 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: (qmail 27909 invoked from network); 4 Jan 2002 17:04:30 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 4 Jan 2002 17:04:30 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16MXkb-0002h5-00; Fri, 04 Jan 2002 11:03:25 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 04 Jan 2002 11:03:16 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id LAA08040 for ; Fri, 4 Jan 2002 11:03:04 -0600 (CST) Original-Received: (qmail 27891 invoked by alias); 4 Jan 2002 17:02:57 -0000 Original-Received: (qmail 27886 invoked from network); 4 Jan 2002 17:02:57 -0000 Original-Received: from hank.lickey.com (ident-is-dumb@64.81.100.235) by gnus.org with SMTP; 4 Jan 2002 17:02:57 -0000 Original-Received: from squeaker.lickey.com (squeaker.lickey.com [192.168.100.10]) by hank.lickey.com (Postfix) with ESMTP id AC76BEE3D for ; Fri, 4 Jan 2002 10:02:55 -0700 (MST) Original-Received: from localhost (localhost [127.0.0.1]) by squeaker.lickey.com (Postfix) with ESMTP id CC3A2BEC6 for ; Fri, 4 Jan 2002 10:02:54 -0700 (MST) Original-Received: by squeaker.lickey.com (Postfix, from userid 1000) id 1847EBEDD; Fri, 4 Jan 2002 10:02:53 -0700 (MST) Mail-Copies-To: never Original-To: Benjamin Rutt In-Reply-To: (Benjamin Rutt's message of "Fri, 04 Jan 2002 10:49:01 -0500") Original-Lines: 35 User-Agent: Gnus/5.090005 (Oort Gnus v0.05) Emacs/21.1 (i386-debian-linux-gnu) Mail-Followup-To: rutt+news@cis.ohio-state.edu, ding@gnus.org X-Delivery-Agent: TMDA/0.43+ (Python 2.1.1; linux-i686) X-Virus-Scanned: by AMaViS snapshot-20010714 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:41573 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:41573 Benjamin Rutt writes: > I'm using a couple month-old Oort 0.04. I'm a little confused as to > what 'subscribed' means as a group parameter. Yes I think it should be documented. There was a recent post to 'ding' that documented the MFT stuff. I don't know if this parameter was documented there or not. The group parameter "subscribed" simply means "consider the to-address or to-list parameter of this group to be that of a mailing list you're subscribed to." The only place it is currently used in Gnus is in gnus-find-subscribed-addresses. Perhaps the parameter should be "mailing-list-subscribed" or "address-subscribed" or "to-addresses-subscribed" something else? > (setq gnus-parameters '(("^nnml:mlist-.*" (subscribed . t)))) > (add-hook 'gnus-started-hook > (lambda () > (setq message-subscribed-regexps > (gnus-find-subscribed-addresses)))) Instead of the hook, I think this ended up being the "preferred" way of doing it. (setq message-subscribed-address-functions '(gnus-find-subscribed-addresses)) Your method is technically wrong since gnus-find-subscribed-addresses does not return a set of regexps (but it'll mostly work). -- matt