From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/5404 Path: news.gmane.org!not-for-mail From: David Z Maze Newsgroups: gmane.emacs.gnus.user Subject: Re: store sent mail and incoming mail in one group? Date: Mon, 18 Jul 2005 12:16:28 -0400 Organization: Massachusetts Institute of Technology Message-ID: References: <871x5wvgn9.fsf@tux.edennetwork> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138671128 27288 80.91.229.2 (31 Jan 2006 01:32:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:32:08 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:35:14 2006 Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!newsfeed.pionier.net.pl!news-fra1.dfn.de!news-lei1.dfn.de!newsfeed.freenet.de!newspeer1.nwr.nac.net!news.maxwell.syr.edu!nntp.abs.net!news2.wam.umd.edu!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!dreaderd!not-for-mail Original-Newsgroups: gnu.emacs.gnus User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (usg-unix-v) Cancel-Lock: sha1:MRohz2UH3pi7zbaRssmym2P1uQo= Original-NNTP-Posting-Host: MASS-TOOLPIKE.MIT.EDU Original-X-Trace: 1121703388 senator-bedfellow.mit.edu 572 18.7.16.71 Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:5546 Original-Lines: 40 X-Gnus-Article-Number: 5546 Tue Jan 17 17:35:14 2006 Xref: news.gmane.org gmane.emacs.gnus.user:5404 Archived-At: Xiao-Yong Jin writes: > Somehow, I want my mail group to be managed more or less like the way > news groups do. That is I can see my mails in sort of subject in one > group where both my incoming mails and sent-out mails are listed. > > Does it mean what I only need is to put the sent mails in the same > group with my incoming mail? And how? I always bcc mail to myself: (require 'message) (setq message-required-mail-headers (nconc message-required-mail-headers (list '(Bcc . "dmaze@mit.edu")))) And then sort mail using nnmail-split-fancy with "any" tags: (setq nnmail-split-fancy `(| (: spam-split) (any mail "mail.misc.admin") (& ; mailing lists (to "ding@gnus\\.org" "mail.lists.gnus.ding") ; ... ) (& ; personal mail (any "friend@example\\.org" "mail.people.example.friend") ; ... ) (any "dmaze@.*mit\\.edu" "mail.misc.personal") "mail.misc.impersonal") nnmail-split-methods 'nnmail-split-fancy) Other people seem to like using Gnus' message-archive feature and inserting Gcc: headers in outgoing mail to archive in particlar groups; see info://gnus/Archived+Messages for details on how this works. --dzm