From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9295 Path: main.gmane.org!not-for-mail From: David Moore Newsgroups: gmane.emacs.gnus.general Subject: Re: [rgnus] FCC in message-mode to nnml group? Date: 07 Jan 1997 18:11:15 -0800 Sender: dmoore@sdnp5.ucsd.edu Message-ID: References: <0fybe5i4s9.fsf@fraxinus.daimi.aau.dk> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035149341 17549 80.91.224.250 (20 Oct 2002 21:29:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:29:01 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.4/8.8.4) with SMTP id SAA00953 for ; Tue, 7 Jan 1997 18:27:48 -0800 Original-Received: from UCSD.EDU (mailbox1.ucsd.edu [132.239.1.53]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Wed, 8 Jan 1997 03:13:32 +0100 Original-Received: from sdnp5.ucsd.edu (sdnp5.ucsd.edu [132.239.79.10]) by UCSD.EDU (8.8.3/8.6.9) with SMTP id SAA20703 for ; Tue, 7 Jan 1997 18:13:25 -0800 (PST) Original-Received: by sdnp5.ucsd.edu (SMI-8.6/SMI-SVR4) id SAA20215; Tue, 7 Jan 1997 18:11:15 -0800 Original-To: "(ding) Gnus Mailing List" X-Face: "oX;zS#-JU$-,WKSzG.1gGE]x^cIg!hW.dq>.f6pzS^A+(k!T|M:}5{_%>Io<>L&{hO7W4cicOQ|>/lZ1G(m%7iaCf,6Qgk0%%Bz7b2-W3jd0m_UG\Y;?]}4s0O-U)uox>P3JN)9cm]O\@,vy2e{`3pb!"pqmRy3peB90*2L Mail-Copies-To: never In-Reply-To: Steven L Baur's message of 07 Jan 1997 14:58:07 -0800 Original-Lines: 32 X-Mailer: Red Gnus v0.79/XEmacs 19.15 Xref: main.gmane.org gmane.emacs.gnus.general:9295 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9295 Steven L Baur writes: > There's Gcc too as Lars pointed out, but I've never bothered to figure > out how to use it with nnml. I use Gcc to keep a copy of everything > outgoing in nnfolder+archive, but Fcc -> *.spool -> nnml for everything > outgoing that isn't going to come back like non-list email. I currently use this. If you want to also Gcc everything into your archive group, just don't set gnus-message-archive-method to nil. I find it more convient than fcc. Although it can be nice to have the mail run through the nnmail splitting process... Big disadvantage to Gcc is that you have to have Gnus running to send mail if you want it foldered away. ;;; This controls the Gcc header for messages. (setq gnus-message-archive-method nil gnus-outgoing-message-group (lambda () (goto-char (point-max)) (let ((group (or gnus-newsgroup-name ""))) (cond ((message-news-p) "nnml+email:news.archive") ((string-match "^nnml\\+email:" group) gnus-newsgroup-name) ((string-match "^nndir:gnus-bug" group) "nnml+email:mail.list.ding") (t "nnml+email:mail.misc")))) )