From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/5414 Path: news.gmane.org!not-for-mail From: Xiao-Yong Jin Newsgroups: gmane.emacs.gnus.user Subject: Re: store sent mail and incoming mail in one group? Date: 20 Jul 2005 08:20:20 -0400 Organization: Columbia University 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 1138671137 27328 80.91.229.2 (31 Jan 2006 01:32:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:32:17 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:35:15 2006 Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!news.nask.pl!newsfeed.pionier.net.pl!news.glorb.com!newscon02.news.prodigy.com!newscon06.news.prodigy.com!prodigy.net!newsfeed.nyu.edu!newsmaster.cc.columbia.edu!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: banana.cc.columbia.edu Original-X-Trace: newsmaster.cc.columbia.edu 1121862020 24909 128.59.29.54 (20 Jul 2005 12:20:20 GMT) Original-X-Complaints-To: postmaster@columbia.edu Original-NNTP-Posting-Date: 20 Jul 2005 12:20:20 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:5556 Original-Lines: 45 X-Gnus-Article-Number: 5556 Tue Jan 17 17:35:15 2006 Xref: news.gmane.org gmane.emacs.gnus.user:5414 Archived-At: David Z Maze writes: > 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) It will be tricky to put my sent mails in group to which my mail replies. > > 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