Or rather, hiding certain things in each article. There usually is much too much cruft in most articles.
gnus-article-hide-headers
). See section 4.1 Hiding Headers.
gnus-article-hide-boring-headers
). See section 4.1 Hiding Headers.
gnus-article-hide-signature
). See section 3.17.9 Article Signature.
gnus-list-identifiers
. These
are strings some mailing list servers add to the beginning of all
Subject
headers--for example, `[zebra 4711]'. Any leading
`Re: ' is skipped before stripping. gnus-list-identifiers
may not contain \\(..\\)
.
gnus-list-identifiers
gnus-article-hide-pgp
). The
gnus-article-hide-pgp-hook
hook will be run after a PGP
signature has been hidden. For example, to automatically verify
articles that have signatures in them do:
;;; Hide pgp cruft if any. (setq gnus-treat-strip-pgp t) ;;; After hiding pgp, verify the message; ;;; only happens if pgp signature is found. (add-hook 'gnus-article-hide-pgp-hook (lambda () (save-excursion (set-buffer gnus-original-article-buffer) (mc-verify))))
gnus-article-hide-pem
).
banner
group parameter
(gnus-article-strip-banner
). This is mainly used to hide those
annoying banners and/or signatures that some mailing lists and moderated
groups adds to all the messages. The way to use this function is to add
the banner
group parameter (see section 2.10 Group Parameters) to the
group you want banners stripped from. The parameter either be a string,
which will be interpreted as a regular expression matching text to be
removed, or the symbol signature
, meaning that the (last)
signature should be removed, or other symbol, meaning that the
corresponding regular expression in gnus-article-banner-alist
is
used.
gnus-article-hide-citation
). Some variables for
customizing the hiding:
gnus-cited-opened-text-button-line-format
gnus-cited-closed-text-button-line-format
gnus-cited-lines-visible
gnus-article-hide-citation-maybe
) depending on the
following two variables:
gnus-cite-hide-percentage
gnus-cite-hide-absolute
gnus-article-hide-citation-in-followups
). This isn't very
useful as an interactive command, but might be a handy function to stick
have happen automatically (see section 4.3 Customizing Articles).
All these "hiding" commands are toggles, but if you give a negative prefix to these commands, they will show what they have previously hidden. If you give a positive prefix, they will always hide.
Also see section 3.17.1 Article Highlighting for further variables for citation customization.
See section 4.3 Customizing Articles, for how to hide article elements automatically.
Go to the first, previous, next, last section, table of contents.