Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2024-04-20 Thread Herbert Valerio Riedel
>> The end result is that `notmuch-message-headers` variable has no effect. > Not sure if you are still interested, but this should be fixed in > notmuch 0.35 (see show.extra_headers in notmuch-config(1)). I just stumbled over this issue when trying to add "Message-Id" to the list of shown

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2022-03-03 Thread David Bremner
Jan Malakhovski writes: > # What I did > > I added "X-Github-Sender" to `notmuch-message-headers`. > Looked at a message sent via github with `notmuch-show`. > > # What I expected > > To see "X-Github-Sender" header displayed in `notmuch-show`. > > # What I got > > No such header was displayed.

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2018-10-21 Thread Leo Gaspard
(sorry for sending twice, forgot to Cc the list at first) I just have been hit by this exact same issue, also for X-GitHub-Sender, during my switch to notmuch and notmuch-mode. >> 3) We should think carefully about whether we want to blindly send >>certain large headers like "Received". Some

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2018-07-26 Thread David Bremner
Jan Malakhovski writes: >> 3) We should think carefully about whether we want to blindly send >>certain large headers like "Received". Some people use notmuch via >>ssh or equivalent, and it might (dunno) be a concern. > > I'd prefer `notmuch show` to dump everything by default and have

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2018-07-26 Thread Jan Malakhovski
> 3) We should think carefully about whether we want to blindly send >certain large headers like "Received". Some people use notmuch via >ssh or equivalent, and it might (dunno) be a concern. I'd prefer `notmuch show` to dump everything by default and have an option like `--headers` to

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2018-07-25 Thread David Bremner
Amin Bandali writes: > I got bitten by this today. > > I only had a brief look at the format_headers_sprinter function > in notmuch-show.c. Would you, David, or anyone else be able to > point out if the following makes sense, for generalizing > format_headers_sprinter to handle any arbitrary

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2018-07-16 Thread Amin Bandali
I got bitten by this today. I only had a brief look at the format_headers_sprinter function in notmuch-show.c. Would you, David, or anyone else be able to point out if the following makes sense, for generalizing format_headers_sprinter to handle any arbitrary headers? I saw this bit near the

Re: [BUG] Custom headers in `notmuch-message-headers` are broken

2017-12-26 Thread David Bremner
Jan Malakhovski writes: > > internally. The latter produces a sexp with > > ``` > :headers (:Subject "" :From "" :To "" :Reply-To "" :Date "") > ``` > > even when the message has many more headers. Yes, you are correct that currently format_headers_sprinter in notmuch-show.c only

[BUG] Custom headers in `notmuch-message-headers` are broken

2017-12-26 Thread Jan Malakhovski
# What I did I added "X-Github-Sender" to `notmuch-message-headers`. Looked at a message sent via github with `notmuch-show`. # What I expected To see "X-Github-Sender" header displayed in `notmuch-show`. # What I got No such header was displayed. # Why `(notmuch-show "query")` runs ```