From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/82377 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: gnus-add-to-list doesn't work for all groups Date: Tue, 09 Oct 2012 08:55:17 +0200 Message-ID: <87sj9odtii.fsf@thinkpad.tsdh.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1349765792 10963 80.91.229.3 (9 Oct 2012 06:56:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Oct 2012 06:56:32 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M30643@lists.math.uh.edu Tue Oct 09 08:56:39 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TLTk5-0004Ne-1M for ding-account@gmane.org; Tue, 09 Oct 2012 08:56:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1TLTiw-00086K-1C; Tue, 09 Oct 2012 01:55:26 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1TLTiu-00086B-1B for ding@lists.math.uh.edu; Tue, 09 Oct 2012 01:55:24 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1TLTis-00081O-Cw for ding@lists.math.uh.edu; Tue, 09 Oct 2012 01:55:23 -0500 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1TLTiq-0000zk-O7 for ding@gnus.org; Tue, 09 Oct 2012 08:55:20 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by deliver.uni-koblenz.de (Postfix) with ESMTP id B316AD2231 for ; Tue, 9 Oct 2012 08:55:19 +0200 (CEST) X-Virus-Scanned: amavisd-new at uni-koblenz.de Original-Received: from deliver.uni-koblenz.de ([127.0.0.1]) by localhost (deliver.uni-koblenz.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pgrsqJPr7oZd for ; Tue, 9 Oct 2012 08:55:19 +0200 (CEST) X-CHKRCPT: Envelopesender noch tsdh@gnu.org Original-Received: from thinkpad.tsdh.de (tsdh.uni-koblenz.de [141.26.67.142]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTPSA id 315F4D2230 for ; Tue, 9 Oct 2012 08:55:19 +0200 (CEST) User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.50 (gnu/linux) X-Spam-Score: -4.9 (----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:82377 Archived-At: Hi all, I've set `gnus-add-to-list' via group parameters to t in all my mailing list groups. --8<---------------cut here---------------start------------->8--- (setq gnus-parameters [...] (,(rx "nnimap+Uni:ml/") (gcc-self . "nnimap+Uni:Sent") (subscribed . t) (gnus-add-to-list t)) (,(rx "nnimap+Fastmail:INBOX.mailinglists.") (gcc-self . "nnimap+Fastmail:INBOX.Sent Items") (gnus-use-scoring t) (subscribed . t) (gnus-add-to-list t)))) --8<---------------cut here---------------end--------------->8--- What works is that in every summary buffer of a mailing list like nnimap+Fastmail:INBOX.mailinglists.ding nnimap+Fastmail:INBOX.mailinglists.emacs-devel gnus-add-to-list's value is t. However, whereas in the emacs-devel group above, hitting `a' already inserts the mailing list address as To (and gnus-mailing-list-mode is t), that doesn't happen in ding or any other group. I remember that I was once queried if emacs-devel@gnu.org should be added as to-list parameter when posting to emacs-devel. However, that didn't happen in any other mailing list group. Now I've grepped the Gnus source files for gnus-add-to-list, and it's only used in `gnus-post-news'. So I used `edebug-defun' to check why there's no to-list parameter added although `gnus-add-to-list' it t, and the answer is that this function isn't called at all when I send off a mail with `C-c C-c' (`message-send-and-exit'). Any ideas what's wrong? Bye, Tassilo