Xiao-Yong Jin <[EMAIL PROTECTED]> 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 . "[EMAIL PROTECTED]"))))

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 "[EMAIL PROTECTED]" "mail.lists.gnus.ding")
         ; ...
        )
        (& ; personal mail
         (any "[EMAIL PROTECTED]" "mail.people.example.friend")
         ; ...
        )
        (any "[EMAIL PROTECTED]" "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
_______________________________________________
Info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to