]> git.ipfire.org Git - thirdparty/public-inbox.git/commit
disallow NUL characters in Message-ID and List-Id
authorEric Wong <e@80x24.org>
Mon, 27 Nov 2023 22:20:59 +0000 (22:20 +0000)
committerEric Wong <e@80x24.org>
Tue, 28 Nov 2023 05:20:13 +0000 (05:20 +0000)
commitfd254c022da9e0f3e6ce793fc38e0fa2fe1ca683
treeef3badb85ff33b0df019002ded408226bd9c8261
parent577e421a0815e66f965bd4317adad5aeea3cc52a
disallow NUL characters in Message-ID and List-Id

While MTAs seem to stop '\0' from appearing in headers, users
fetching archives via git remain susceptible to having '\0' land
in archives.  So we'll filter them out of Xapian and SQLite DBs
to avoid interopability problems with CLI tools since there's no
known messages in lore or any of my archives which feature them.

Avoiding '\0' will ensure all indexed Message-IDs and List-Ids
can be specified from the command-line (although some characters
will still require $(printf) contortions).

As with Message-ID, List-Id fields with /\n\t\r/ characters will
also be stripped for indexing.  I will assume whatever went wrong
with the References: header in
<https://public-inbox.org/git/656C30A1EFC89F6B2082D9B6@localhost/raw>
could also happen to the List-Id header.

This is inspired by commit aca47e05a6026c12c768753c87e6ff769ef6bee4
(Import: Don't copy nulls from emails into git, 2018-07-07)
lib/PublicInbox/MID.pm
lib/PublicInbox/SearchIdx.pm