From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.help Subject: Re: How to hide Gnus email headers? Date: 21 May 2004 12:09:21 +0300 Organization: An OTEnet S.A. customer Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1085132206 17870 80.91.224.253 (21 May 2004 09:36:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 21 May 2004 09:36:46 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri May 21 11:36:40 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BR6SG-0002SK-00 for ; Fri, 21 May 2004 11:36:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BR68e-0003LH-7J for geh-help-gnu-emacs@m.gmane.org; Fri, 21 May 2004 05:16:24 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-out1.nntp.be!propagator2-sterling!propagator3-cogent!in.nntp.be!news.grnet.gr!news.otenet.gr!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 25 Original-NNTP-Posting-Host: aris.bedc.ondsl.gr Original-X-Trace: usenet.otenet.gr 1085130573 16790 62.103.39.226 (21 May 2004 09:09:33 GMT) Original-X-Complaints-To: abuse@otenet.gr Original-NNTP-Posting-Date: Fri, 21 May 2004 09:09:33 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 Original-Xref: shelby.stanford.edu gnu.emacs.help:123343 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:18641 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:18641 Richard Wellum writes: > > Using Gnus to view my mail, I am trying to avoid seeing the unnecessary > headers each time. I have the following line in my .gnus: > > (setq gnus-visible-headers "^From:\\|^Subject:\\|^Cc:\\|^To:") > > But doesn't seem to help - I still see everything. > Any ideas where I am going wrong? Try using a list of headers rather than a regexp that matches all. In my .gnus file I have: ;; The headers that are shown for messages or news-articles. (setq gnus-visible-headers '("^From:" "^Date:" "^Subject:" "^To:" "^Cc:" "^Followup-To:" "^Reply-To:" "^Newsgroups:")) ;; The order of headers shown in article buffers. (setq gnus-sorted-header-list '("^Date:" "^From:" "^Reply-To:" "^Followup-To:" "^Subject:" "^To:" "^Cc:" "^Newsgroups:")) and it works like a charm. - Giorgos