>>> "AS" == Adam Sjøgren writes: > Uwe writes: >> I have set, as recommended in the documentation >> >> (setq gnus-message-archive-group >> '((if (message-news-p) >> "sent-news" >> "sent-mail"))) >> >> When I use gnus-group-mail in the main group buffer I obtain >> >> The following buffer >> >> ,---- >> | To: >> | Subject: >> | From: Uwe Brauer >> | Gcc: nnml+archive:sent-mail, nnml+archive:sent-news >> | --text follows this line-- >> `---- > Do you have anything else in your configuration about sent-news? > Something in group/topic parameters? No. > I have this: > (setq gnus-message-archive-group > '((if (message-news-p) > (concat "news-" (format-time-string "%Y")) > (concat "mail-" (format-time-string "%Y"))))) > in my .gnus, and when I press 'm' (gnus-group-mail) in the *Group* > buffer, I get: As I said I just followed the documentation which recommends (setq gnus-message-archive-group '((if (message-news-p) "sent-news" "sent-mail"))) However describe variable gnus-message-archive-group tells me: gnus-message-archive-group is a variable defined in ‘gnus.el’. Its value is ((if (message-news-p) "sent-news" "sent-mail")) Original value was ((format-time-string "sent.%Y-%m")) So everything should be fine I don't like the original setting since I want to distinguish between mail and news (maybe I shouldn't). I will try your setting Regards Uwe