From: Emanuel Berg <embe8573@student.uu.se>
To: help-gnu-emacs@gnu.org
Subject: Re: In RMAIL in EMACS how do you display only message headers with a particular keyword?...
Date: Sun, 22 Sep 2013 16:52:39 +0200 [thread overview]
Message-ID: <871u4gnc1b.fsf@nl106-137-194.student.uu.se> (raw)
In-Reply-To: mailman.1786.1378892468.10748.help-gnu-emacs@gnu.org
Don Saklad <dsaklad@gnu.org> writes:
> In RMAIL in EMACS how do you display only message
> headers with a particular keyword?...
Try this:
;;; rmail headers
(setq rmail-displayed-headers
"From:\\|To:\\|Cc:\\|Bcc:\\|Subject:\\|Date:")
(setq rmail-highlighted-headers rmail-displayed-headers)
(set-face-attribute 'rmail-highlight nil :background "black"
:foreground "blue")
(set-face-attribute 'highlight nil :foreground "green"
:background "darkblue")
(set-face-attribute 'rmail-header-name nil :foreground "black")
Or this:
(set-face-attribute 'message-header-name nil :foreground "black"
:background "black"
:bold t)
(set-face-attribute 'message-header-to nil :foreground "magenta"
:bold nil)
(set-face-attribute 'message-header-subject nil :foreground "orange")
(set-face-attribute 'message-header-xheader nil :foreground "blue")
(set-face-attribute 'message-header-other nil :foreground "blue")
--
Emanuel Berg - programmer (hire me! CV below)
computer projects: http://user.it.uu.se/~embe8573
internet activity: http://home.student.uu.se/embe8573
next parent reply other threads:[~2013-09-22 14:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.1786.1378892468.10748.help-gnu-emacs@gnu.org>
2013-09-22 14:52 ` Emanuel Berg [this message]
2013-09-11 9:41 In RMAIL in EMACS how do you display only message headers with a particular keyword? Don Saklad
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871u4gnc1b.fsf@nl106-137-194.student.uu.se \
--to=embe8573@student.uu.se \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.