From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/9060 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: gnus-summary-line-format setting for "Sent Folder" Date: Fri, 01 Jun 2007 08:29:47 +0900 Organization: Emacsen advocacy group Message-ID: References: <87bqg1c4o5.fsf@ixod.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1180654825 1235 80.91.229.12 (31 May 2007 23:40:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 31 May 2007 23:40:25 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Fri Jun 01 01:40:22 2007 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HtuFg-0000md-Lc for gegu-info-gnus-english@m.gmane.org; Fri, 01 Jun 2007 01:40:20 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HtuFg-0000Di-BA for gegu-info-gnus-english@m.gmane.org; Thu, 31 May 2007 19:40:20 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 41 Original-X-Trace: individual.net Z3n2MYEsOtPdpl8j7enknQRxYUFhw2Tk4x7IhmYxe5DmiyjUM= X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.0.990 (gnu/linux) Cancel-Lock: sha1:UNR+Kf+vthGeYtS+y9B+6ry9Auk= Original-Xref: shelby.stanford.edu gnu.emacs.gnus:79243 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:9060 Archived-At: >>>>> In <87bqg1c4o5.fsf@ixod.org> Mark T.B. Carroll wrote: > poppyer writes: >> How can I set the gnus-summary-line-format such that in the "Sent >> Folder", it shows "To field" rather than "From field". Obviously the >> From field is myself. > I don't know, but have you tried setting gnus-ignored-from-addresses? > Will that work well enough for you? Making the summary-line-format that indicates only the To field is not so easy. As Mark wrote, so I think it is sufficient to use `gnus-ignored-from-addresses'. See the Gnus manual: (info "(gnus)To From Newsgroups") <- Type `C-x C-e' here. If you use No Gnus v0.4 and greater, this will also be useful: --8<---------------cut here---------------start------------->8--- ;; Set the default values of `gnus-summary-to-prefix' ;; and `gnus-summary-newsgroup-prefix'. (eval-after-load "gnus-sum" '(progn (add-to-list 'gnus-newsgroup-variables `(gnus-summary-to-prefix . ,gnus-summary-to-prefix)) (add-to-list 'gnus-newsgroup-variables `(gnus-summary-newsgroup-prefix . ,gnus-summary-newsgroup-prefix)))) ;; Use the null prefix in the archive groups. (add-to-list 'gnus-parameters '("\\`nnfolder\\+archive:" (gnus-summary-to-prefix "") (gnus-summary-newsgroup-prefix ""))) --8<---------------cut here---------------end--------------->8--- The "\\`nnfolder\\+archive:" should be replaced with the regexp matching the group names that you use for archiving. Regards,