]> Sergey Matveev's repositories - public-inbox.git/commitdiff
msgiter: msg_part_text returns undef on text/html
authorEric Wong <e@80x24.org>
Wed, 18 Dec 2019 09:14:43 +0000 (09:14 +0000)
committerEric Wong <e@80x24.org>
Thu, 19 Dec 2019 03:57:23 +0000 (03:57 +0000)
We want HTML parts to be downloadable, but not displayed as
unreadable (but injection-safe) HTML source in our own web
and Atom interfaces.

This affects indexing, too, as HTML tags/comments won't be
indexed anymore, but existing indices are only cleaned after
--reindex.  HTML-only mail won't be indexed at all, but we won't
cross that bridge until somebody cares about that crap.   We'll
continue to actively discourage such waste of CPU cycles,
bandwidth, cache and storage.

Fixes: 7d82a8bc04ce2e68 (handle "multipart/mixed" messages which are not multipart')
lib/PublicInbox/MsgIter.pm

index d9df32abc37c7fc7da68c0e09ed2f942ddbb4827..6453d9f1043630d267d19c8c1445ef8a288f3abe 100644 (file)
@@ -38,6 +38,11 @@ sub msg_iter ($$) {
 sub msg_part_text ($$) {
        my ($part, $ct) = @_;
 
+       # TODO: we may offer a separate sub for people who need to index
+       # HTML-only mail, but the majority of HTML mail is multipart/alternative
+       # with a text part which we don't have to waste cycles decoding
+       return if $ct =~ m!\btext/x?html\b!;
+
        my $s = eval { $part->body_str };
        my $err = $@;