Results 326 comments of Alejandro Colomar
trafficstars

v2d (by @flatcap ) changes: - Rebase on devel/security - Cosmetic changes (which make the range diff a bit meh, which is why I keep rebases in separate range-diffs from...

v3 changes: - The In-Reply-To header field (and in general, ListHead fields) uses a single space to separate entries, not a space and a comma (sorry, I'm used to HTTP...

v4 changes: - Wrap only once. *mutt_write_one_header*() already wraps; don't wrap before that call. See also: ``` $ git range-diff devel/security gh/protect protect 1: d792c197e = 1: d792c197e ncrypt/crypt.c: Don't...

v5 changes: - Add missing `const`. ``` $ git range-diff devel/security gh/protect protect 1: d792c197e = 1: d792c197e ncrypt/crypt.c: Don't weed protected headers 2: 35dc326eb = 2: 35dc326eb ncrypt/crypt.c: Protect...

v5b (by @flatcap ) changes: - Rebase ``` $ git range-diff devel/security..protect gh/protect^^^^^^^^^^^..gh/protect 1: d792c197e = 1: 1ef8b737d ncrypt/crypt.c: Don't weed protected headers 2: 35dc326eb = 2: 5c88bbf9f ncrypt/crypt.c: Protect...

v6 changes: - Rebase on devel/security ``` $ git range-diff --creation-factor=99 gh/protect^^^^^^^^^^^..gh/protect neomutt/devel/security..protect 1: 1ef8b737d < -: --------- ncrypt/crypt.c: Don't weed protected headers -: --------- > 1: a8049826c ncrypt/crypt.c: Don't...

v6b changes: - Rebase ``` $ git range-diff devel/security..gh/protect neomutt/devel/security..protect 1: a8049826c = 1: f2831e203 ncrypt/crypt.c: Don't weed protected headers 2: a0a9b777c = 2: 5fbcf9ad9 ncrypt/crypt.c: Protect address lists in...

Some news from the mutt-dev@ mailing list. mutt(1) already protected some of these fields (and also the Date) since version 2.0.0. (I noticed some of it while debugging this feature,...

v7 changes: - Don't modify weeding of headers. If we do that, let's do it later. For now, I'll keep current behavior. [@gahr] - Also protect `Return-Path`. (So, every address...

I think I found a bug. ```c if (!display || !c_weed || !mutt_matches_ignore("from")) { ``` `mutt_matches_ignore("from")` seems to say that I'm ignoring from, but I'm not. I suspect that's because...