From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29792 Path: main.gmane.org!not-for-mail From: Holger Sparr Newsgroups: gmane.emacs.gnus.general Subject: Re: Header Fields and Split Fancy Date: 18 Apr 2000 16:28:22 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035166404 4747 80.91.224.250 (21 Oct 2002 02:13:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:13:24 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id 96731D051E for ; Tue, 18 Apr 2000 10:25:33 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id JAB22536; Tue, 18 Apr 2000 09:25:17 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 18 Apr 2000 09:24:43 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id JAA08025 for ; Tue, 18 Apr 2000 09:24:34 -0500 (CDT) Original-Received: from mfkpc34.mw.tu-dresden.de (mfkpc34.tu-dresden.de [141.30.108.94]) by mailhost.sclp.com (Postfix) with ESMTP id 23C7FD051E for ; Tue, 18 Apr 2000 10:24:48 -0400 (EDT) Original-Received: (from sparr@localhost) by mfkpc34.mw.tu-dresden.de (8.9.3/8.9.3) id QAA12899; Tue, 18 Apr 2000 16:28:22 +0200 X-Authentication-Warning: mfkpc34.mw.tu-dresden.de: sparr set sender to sparr@mfkrs1.mw.tu-dresden.de using -f Original-To: Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai=?iso-8859-1?q?_Gro=DFjohann?=) In-Reply-To: Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "18 Apr 2000 13:52:41 +0200" Original-Lines: 34 User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29792 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29792 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Grossjohann) writes: > > ,---- > > | (add-to-list nnmail-split-abbrev-alist > > | '((anyuc ."From\\|To\\|Cc\\|Sender\\|Newsgroup") > > | (mailuc . "Mailer-daemon\\|Postmaster\\|Uucp") > > | (touc . "To\\|Cc\\|Apparently-To\\|Resent-To\\|Resent-Cc") > > | (fromuc . "From\\|Sender\\|Resent-From")) > > | :group 'nnmail-split > > | :type '(repeat (cons :format "%v" symbol regexp))) > > `---- > > Delete the `:group' and `:type' clauses: > > (add-to-list nnmail-split-abbrev-alist > '((anyuc ."From\\|To\\|Cc\\|Sender\\|Newsgroup") > (mailuc . "Mailer-daemon\\|Postmaster\\|Uucp") > (touc . "To\\|Cc\\|Apparently-To\\|Resent-To\\|Resent-Cc") > (fromuc . "From\\|Sender\\|Resent-From"))) I did that before and got: Wrong type argument: symbolp, ((any . "from\\|to\\|cc ...)) So, I figured the `:type' part should be provided. Guess, I got confused by all these different *Help* buffers, locating all kinds of functions. However, the error message remains. Holger --