help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to hide Gnus email headers?


From: Giorgos Keramidas
Subject: Re: How to hide Gnus email headers?
Date: 21 May 2004 12:09:21 +0300
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

Richard Wellum <rwellum@cisco.com> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]