From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/27435 Path: main.gmane.org!not-for-mail From: dave-mlist@bfnet.com Newsgroups: gmane.emacs.gnus.general Subject: Re: best setup for qmail and gnus Date: 01 Dec 1999 15:22:30 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: <877liz74vs.fsf@elric.arioch.oche.de> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035164464 24586 80.91.224.250 (21 Oct 2002 01:41:04 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:41:04 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id PAA04024 for ; Wed, 1 Dec 1999 15:28:13 -0500 (EST) 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 OAB02659; Wed, 1 Dec 1999 14:26:47 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 01 Dec 1999 14:26:48 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id OAA27087 for ; Wed, 1 Dec 1999 14:26:31 -0600 (CST) Original-Received: from knave.rad.directint.net (knave.rad.directint.net [207.168.228.90]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id PAA04002 for ; Wed, 1 Dec 1999 15:26:03 -0500 (EST) Original-Received: (qmail 21681 invoked by uid 2001); 1 Dec 1999 20:22:30 -0000 Original-To: ding@gnus.org In-Reply-To: Carsten Leonhardt's message of "01 Dec 1999 03:48:39 +0100" Original-Lines: 45 X-Mailer: Gnus v5.7/Emacs 20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:27435 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:27435 I would rather have qmail split my mail than gnus. One reason is because qmail runs in the background, while I have to wait for gnus to run in the foreground. Another reason is that in my case, qmail already knows how to split the mail, and I'd rather not have to tell Gnus how to (that's redundant). I have appended my .gnus file. Notice that I have set two mail-sources. I would like these mail-sources to go into different groups, preferably "test" and "misc". Is there an easy way to do this? Dave (add-hook 'gnus-group-mode-hook 'gnus-topic-mode) ; Put the "Incoming*" files here (setq mail-source-directory "~/Mail/Incoming/") (setq mail-sources '((maildir :path "/home/dave/Mail/test/Maildir/new") (maildir :path "/home/dave/Mail/misc/Maildir/new"))) ;(setq gnus-select-method '(nnml "private")) (setq gnus-secondary-select-methods `((nnml "") (nnfolder "archive"))) (setq gnus-uncacheable-groups "^nnml") (setq gnus-startup-file (concat gnus-directory ".newsrc")) (setq nnmail-message-id-cache-file (concat gnus-directory ".nnmail-cache")) (setq nnmail-treat-duplicates 'delete) (setq mail-source-crash-box (concat gnus-directory ".emacs-mail-crash-box")) (setq nnmail-message-id-cache-length 10000) (setq mail-source-delete-incoming nil) (setq gnus-visible-headers "^From:\\|^Subject:\\|^Newsgroups:\\|To:\\|Cc:") (setq user-mail-address "dave@bfnet.com") (setq system-name "bfnet.com") (setq mail-host-address "bfnet.com") (setq message-from-style nil) (setq message-user-organization "Berkeley Fluent Network") (setq nnfolder-directory "~/Mail/archives") (setq nnfolder-get-new-mail nil) (setq message-send-mail-function 'message-send-mail-with-qmail) (setq mail-user-agent 'message-user-agent) (setq message-qmail-inject-program "/home/dave/perl/qmail-inject-wrapper")