From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57658 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: Newbie ignorance about just reading email Date: Sun, 23 May 2004 16:49:53 -0400 Organization: What did you have in mind? A short, blunt, human pyramid? Sender: ding-owner@lists.math.uh.edu Message-ID: References: <16560.59075.110364.219708@crowfix.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1085345425 1482 80.91.224.253 (23 May 2004 20:50:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 23 May 2004 20:50:25 +0000 (UTC) Cc: ding@lists.math.uh.edu Original-X-From: ding-owner+M6198@lists.math.uh.edu Sun May 23 22:50:18 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BRzvF-00008Y-00 for ; Sun, 23 May 2004 22:50:17 +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 1BRzuy-0005p7-00; Sun, 23 May 2004 15:50:00 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BRzuu-0005p2-00 for ding@lists.math.uh.edu; Sun, 23 May 2004 15:49:56 -0500 Original-Received: from mirapoint2.tis.cwru.edu ([129.22.104.47] ident=mirapoint) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BRzut-0000NZ-PZ for ding@lists.math.uh.edu; Sun, 23 May 2004 15:49:55 -0500 Original-Received: from multivac.cwru.edu (multivac.ITS.CWRU.Edu [129.22.114.26]) by mirapoint2.tis.cwru.edu (MOS 3.4.3-CR) with SMTP id BEV24956; Sun, 23 May 2004 16:49:54 -0400 (EDT) Original-Received: (qmail 21670 invoked by uid 500); 23 May 2004 20:50:16 -0000 Original-To: Felix Finch In-Reply-To: <16560.59075.110364.219708@crowfix.com> (Felix Finch's message of "Sun, 23 May 2004 11:00:35 -0700") Mail-Copies-To: nobody Original-Lines: 20 User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57658 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57658 Felix Finch wrote: > (setq gnus-select-methods '((nnmaildir ""))) There's no such variable. The variables you're looking for are gnus-select-method and gnus-secondary-select-methods. I'd suggest: (setq gnus-select-method '(nnnil "")) (setq gnus-secondary-select-methods '((nnmaildir "" (directory "~/.nnmaildir/")))) > (setq mail-sources '((maildir :path "~/.nnmaildir/"))) If your mail is delivered directly into the same maildirs that you use as Gnus groups, then you don't need to set mail-sources. Also note that the :path of a maildir mail-source is itself a maildir, which directly contains cur, new, and tmp subdirectories. But the directory of an nnmaildir select method is up one level - a directory which contains maildirs. paul