[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Setting Gcc to an nnimap group
- To: nnimap@extundo.com, ding@gnus.org
- Subject: Setting Gcc to an nnimap group
- From: Rajesh Godbole <argv@Sun.COM>
- Date: 09 Dec 1998 16:37:07 -0800
- Mail-Copies-To: never
- User-Agent: Gnus/5.070065 (Pterodactyl Gnus v0.65) XEmacs/21.0 (Poitou)
The following setup has worked for me, mostly. This sets up
my Gcc header to nnimap+aries:Mail/sent-{news,mail} depending
on whether I'm sending email or posting news.
Gotchas:
o The Mail/sent-{mail,news} folders on the server *need* to exist.
nnimap appends to these.
o message mode spits out a message Couldn't store article in group ...,
but the article gets appended to Mail/sent-mail
Other possibly beneficial things:
o Make the sent-mail and sent-news groups permanently visible and display
all through G c
o Set group level to 2 through S l (I set my nnimap folders to level 1,
so a 1 g gets email in that level and will skip the Gcc'ed folders)
HTH,
-rajesh
;;
;; Begin Setup for Gcc: nnimap+aries:Mail/sent-{mail,news}
;;
(setq gnus-message-archive-method
'(nnimap "aries"
(nnimap-server-address "aries")
(nnimap-imap-directory "~/Mail/")))
(setq gnus-message-archive-group
'((if (message-news-p)
"Mail/sent-news"
"Mail/sent-mail")))
;; End setup