about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchIdx.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-09-09 00:01:30 +0000
committerEric Wong <e@80x24.org>2016-09-09 00:02:26 +0000
commit0cf6196025d4e4880cd1ed859257ce21dd3cdcf6 (patch)
tree0717204c401df5eb092aa8df9102528c90e77c40 /lib/PublicInbox/SearchIdx.pm
parent5505748033da3dd62de4d7ea828ea0509cd9dd96 (diff)
downloadpublic-inbox-0cf6196025d4e4880cd1ed859257ce21dd3cdcf6.tar.gz
The basic rule is that if it is displayable via our WWW
interface, it should be indexable text for Xapian search.
Diffstat (limited to 'lib/PublicInbox/SearchIdx.pm')
-rw-r--r--lib/PublicInbox/SearchIdx.pm21
1 files changed, 16 insertions, 5 deletions
diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm
index 0e2d225e..fb68f4b1 100644
--- a/lib/PublicInbox/SearchIdx.pm
+++ b/lib/PublicInbox/SearchIdx.pm
@@ -148,7 +148,6 @@ sub add_message {
 
         my ($doc_id, $old_tid);
         my $mid = mid_clean(mid_mime($mime));
-        my $ct_msg = $mime->header('Content-Type') || 'text/plain';
 
         eval {
                 die 'Message-ID too long' if length($mid) > MAX_MID_SIZE;
@@ -181,10 +180,22 @@ sub add_message {
 
                 msg_iter($mime, sub {
                         my ($part, $depth, @idx) = @{$_[0]};
-                        my $ct = $part->content_type || $ct_msg;
-
-                        # account for filter bugs...
-                        $ct =~ m!\btext/plain\b!i or return;
+                        my $ct = $part->content_type || 'text/plain';
+
+                        return if $ct =~ m!\btext/x?html\b!i;
+
+                        my $s = eval { $part->body_str };
+                        if ($@) {
+                                if ($ct =~ m!\btext/plain\b!i) {
+                                        # Try to assume UTF-8 because Alpine
+                                        # seems to do wacky things and set
+                                        # charset=X-UNKNOWN
+                                        $part->charset_set('UTF-8');
+                                        $s = eval { $part->body_str };
+                                        $s = $part->body if $@;
+                                }
+                        }
+                        defined $s or return;
 
                         my (@orig, @quot);
                         my $body = $part->body;