From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44016 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: Adding headers to supersedes buffers Date: Tue, 26 Mar 2002 12:23:04 -0500 Organization: What did you have in mind? A short, blunt, human pyramid? Sender: owner-ding@hpc.uh.edu Message-ID: References: <3225897212316912@oakhurst.yi.org> <3226087887457301@oakhurst.yi.org> <3226089779771480@oakhurst.yi.org> <3226121299894383@oakhurst.yi.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1017163475 14535 127.0.0.1 (26 Mar 2002 17:24:35 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 26 Mar 2002 17:24:35 +0000 (UTC) Cc: ding@gnus.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16pugU-0003mK-00 for ; Tue, 26 Mar 2002 18:24:35 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16pufL-0004kY-00; Tue, 26 Mar 2002 11:23:23 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 26 Mar 2002 11:23:29 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id LAA00927 for ; Tue, 26 Mar 2002 11:23:17 -0600 (CST) Original-Received: (qmail 8825 invoked by alias); 26 Mar 2002 17:23:05 -0000 Original-Received: (qmail 8820 invoked from network); 26 Mar 2002 17:23:04 -0000 Original-Received: from multivac.student.cwru.edu (HELO multivac.cwru.edu) (qmailr@129.22.96.25) by gnus.org with SMTP; 26 Mar 2002 17:23:04 -0000 Original-Received: (qmail 7903 invoked by uid 500); 26 Mar 2002 17:23:26 -0000 Original-To: Thomas Skogestad In-Reply-To: <3226121299894383@oakhurst.yi.org> (Thomas Skogestad's message of "Tue, 26 Mar 2002 09:48:19 +0100") Mail-Copies-To: nobody Mail-Followup-To: tskogest@jusstud.uio.no, ding@gnus.org Original-Lines: 30 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/20.7 (i386-redhat-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44016 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44016 Thomas Skogestad wrote: > Maybe I've expressed myself somewhat misleading. I don't set > message-default-news-headers as part of posting styles, but in my regular > .gnus. > > I use (setq message-default-news-headers > "Fcc: ~/News/Articles\n") You can use this instead: (add-to-list 'gnus-posting-styles '((message-news-p) ("Fcc" "~/News/Articles"))) > ;Gcc > (setq gnus-message-archive-group > '((if (message-news-p) > (concat "sent-news-" (format-time-string "%Y-%B" (current-time))) > (concat "sent-mail-" (format-time-string "%Y-%B" (current-time)))))) Likewise: (add-to-list 'gnus-posting-styles '(t ("Gcc" (concat "sent-" (if (message-news-p) "news-" "mail-") (format-time-string "%Y-%B" (current-time)))))) > Neither of these are added when i supersede. I suppose that could be a bug anyway, but the above should work. paul