mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
notmuch show: Trim down header list.
This is for now a non-configurable list of Subject, From, To, Cc, Bcc, and Date.
This commit is contained in:
parent
90a0ef4ac4
commit
8b93875b27
1 changed files with 12 additions and 1 deletions
13
notmuch.c
13
notmuch.c
|
@ -811,6 +811,12 @@ show_command (unused (int argc), unused (char *argv[]))
|
|||
int ret = 0;
|
||||
int c;
|
||||
|
||||
const char *headers[] = {
|
||||
"Subject", "From", "To", "Cc", "Bcc", "Date"
|
||||
};
|
||||
const char *name, *value;
|
||||
unsigned int i;
|
||||
|
||||
if (argc != 1) {
|
||||
fprintf (stderr, "Error: \"notmuch show\" requires exactly one thread-ID argument.\n");
|
||||
ret = 1;
|
||||
|
@ -847,7 +853,12 @@ show_command (unused (int argc), unused (char *argv[]))
|
|||
|
||||
printf ("%%header{\n");
|
||||
|
||||
printf ("%s", notmuch_message_get_all_headers (message));
|
||||
for (i = 0; i < ARRAY_SIZE (headers); i++) {
|
||||
name = headers[i];
|
||||
value = notmuch_message_get_header (message, name);
|
||||
if (value)
|
||||
printf ("%s: %s\n", name, value);
|
||||
}
|
||||
|
||||
printf ("%%header}\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue