about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchMsg.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-09-19 02:03:35 +0000
committerEric Wong <e@80x24.org>2015-09-19 04:18:41 +0000
commitd4353d8104eb51a61a3e771faed42b56246ba56d (patch)
tree5ff8d64454c02a36ec13172894612f78061db95a /lib/PublicInbox/SearchMsg.pm
parentb4c631d23013012f721ca1fe879f23576ce1476e (diff)
downloadpublic-inbox-d4353d8104eb51a61a3e771faed42b56246ba56d.tar.gz
Using Xapian allows us to implement XROVER without forking
new processes.
Diffstat (limited to 'lib/PublicInbox/SearchMsg.pm')
-rw-r--r--lib/PublicInbox/SearchMsg.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/PublicInbox/SearchMsg.pm b/lib/PublicInbox/SearchMsg.pm
index e3a04605..8c55c929 100644
--- a/lib/PublicInbox/SearchMsg.pm
+++ b/lib/PublicInbox/SearchMsg.pm
@@ -141,6 +141,7 @@ sub mini_mime {
                 'X-PI-TS' => $self->ts,
         );
         if (my $refs = $self->{references_sorted}) {
+                $refs =~ s/></> </g;
                 push @h, References => $refs;
         }
         my $mime = Email::MIME->create(header_str => \@hs, header => \@h);