From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/53355 Path: main.gmane.org!not-for-mail From: Chris Shenton Newsgroups: gmane.emacs.gnus.general Subject: Splitting based on different Maildir* sources? Date: 08 Jul 2003 16:32:21 -0400 Sender: ding-owner@lists.math.uh.edu Message-ID: <867k6sdaju.fsf@PECTOPAH.shenton.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1057704598 3443 80.91.224.249 (8 Jul 2003 22:49:58 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 8 Jul 2003 22:49:58 +0000 (UTC) Original-X-From: ding-owner+M1899@lists.math.uh.edu Wed Jul 09 00:49:57 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19a1Gk-0000qQ-00 for ; Wed, 09 Jul 2003 00:49:06 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19a1HJ-00025C-00; Tue, 08 Jul 2003 17:49:41 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19Zz8X-0001Zs-00 for ding@lists.math.uh.edu; Tue, 08 Jul 2003 15:32:29 -0500 Original-Received: (qmail 62528 invoked by alias); 8 Jul 2003 20:32:29 -0000 Original-Received: (qmail 62523 invoked from network); 8 Jul 2003 20:32:28 -0000 Original-Received: from 23.ebbed1.client.atlantech.net (HELO Shenton.org) (209.190.235.35) by sclp3.sclp.com with SMTP; 8 Jul 2003 20:32:28 -0000 Original-Received: (qmail 86091 invoked by uid 1001); 8 Jul 2003 20:32:22 -0000 Original-To: ding@gnus.org Original-Lines: 39 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:53355 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:53355 My MTA is qmail and it files my mail in to ~/Maildir/* and this works fine with a source specified like: (setq mail-sources '((maildir :plugged t) ;more sources elided )) I've been using DCC (dccproc client) to check for spammy mail, tag it with a line, then use a split-fancy rule like: ("X-DCC-.*-Metrics" "Body=many" "in.dcc-body-many") ("X-DCC-.*-Metrics" "Fuz[12]=many" "in.dcc-body-many") to file them into a spammy Gnus group. Now I'm trying to use dccproc to file them into a totally separate Maildir so Gnus doesn't have to file them. For those of you who care I do it like the following. In ~/.qmail: | /var/qmail/bin/condredirect chris-dccspam /bin/sh -c '! /usr/local/bin/dccproc -c CMN,10 -o /dev/null -w /home/chris/.dcc/whiteclnt' ./Maildir/ In ~/.qmail-dccspam: ./Maildir-dccspam/ But if I tell gnus to get it by specifying a source like: (maildir :path "/home/chris/Maildir-dccspam/") Then it will be slurped in like the rest of my mail and split into the same groups as the rest. Is there a way to file news from this /Maildir-dccspam/ into a separate group or hierarchy than all the rest of the mail? Thanks.