From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/31976 Path: main.gmane.org!not-for-mail From: Chris Shenton Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus-5.8.7 new groups status "*", can't enter; "Incoming*" files Date: Mon, 31 Jul 2000 22:52:41 -0400 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 1035168327 17171 80.91.224.250 (21 Oct 2002 02:45:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:45:27 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from fisher.math.uh.edu (fisher.math.uh.edu [129.7.128.35]) by mailhost.sclp.com (Postfix) with ESMTP id 34E4ED051E for ; Sun, 6 Aug 2000 15:06:23 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by fisher.math.uh.edu (8.9.1/8.9.1) with ESMTP id WAC24362; Mon, 31 Jul 2000 22:54:40 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 31 Jul 2000 22:53:50 -0500 (CDT) Original-Received: from Post-Office.UH.EDU (Post-Office.UH.EDU [129.7.1.20]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id WAA03284 for ; Mon, 31 Jul 2000 22:12:19 -0500 (CDT) Original-Received: from CONVERSION-DAEMON by Post-Office.UH.EDU (PMDF V5.2-32 #40812) id <0FYL00801EO1L5@Post-Office.UH.EDU> for ding@hpc.uh.edu; Mon, 31 Jul 2000 21:52:59 -0500 (CDT) Original-Received: from mailhost.sclp.com (www.taekwondo.net [209.196.61.66]) by Post-Office.UH.EDU (PMDF V5.2-32 #40812) with ESMTP id <0FYL0079DEO1AI@Post-Office.UH.EDU> for ding@hpc.uh.edu; Mon, 31 Jul 2000 21:52:49 -0500 (CDT) Original-Received: from Samizdat.uucom.com (samizdat.uucom.com [198.202.217.54]) by mailhost.sclp.com (Postfix) with ESMTP id 80BEFD051F for ; Mon, 31 Jul 2000 22:52:44 -0400 (EDT) Original-Received: (from cshenton@localhost) by Samizdat.uucom.com (8.9.3/8.9.3) id WAA01219; Mon, 31 Jul 2000 22:52:41 -0400 (EDT) In-reply-to: Cyrille Lefevre's message of "01 Aug 2000 04:06:33 +0200" Original-To: Cyrille Lefevre User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7 Original-Lines: 47 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:31976 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:31976 On 01 Aug 2000 04:06:33 +0200, Cyrille Lefevre said: Cyrille> what says G e (group->edit->info) ? Ah ha... I think you may have hit it here. Why does it think the nnml-directory and active-file are under Mail/out/ instead of just Mail? ;;; Editing the select method for `nnml:list.fw1-wizards@phoneboy.com'. ;; Type `C-c C-c' after you've finished editing. (nnml "" (nnml-get-new-mail nil) (nnml-inhibit-expiry t) (nnml-directory "~/Mail/out/") (nnml-active-file "~/Mail/out/active")) Uh huh: the only place "~/Mail/out/" appears in .gnus.el is where I to tell it what to do with archived outbound mail, per the *Info* on Archived Messages: ; How does the dir implied by gnus-message-archive-group ; interact with the nnml-directory used by gnus-message-archive-method? ; if I use (nnml "FOO) I get a virtual folder nnml+FOO which makes it ; annoying to Bm move sent articles to normal nnml folders. (setq gnus-message-archive-group (format-time-string "out.%Y-%m" (current-time))) ; put in "out" subdir (setq gnus-message-archive-method '(nnml "" ; no "out" prefix to prevent nnml+out: (nnml-get-new-mail nil) ; what's it do?? (nnml-inhibit-expiry t) (nnml-directory "~/Mail/out/") ;LC to avoid OUT and out? (nnml-active-file "~/Mail/out/active") )) I'm guessing the assignments are NOT local to this setq. Ahhhh... [sound of banging head, without heavy metal music] So I can nuke the nnml-directory and nnml-active-file lines, but I'd like to fix it: what's the right way to tell it to put archived outbound mail in ~/Mail/out/ or ~/Mail/out.%Y-%m? Thanks.