lib/PublicInbox/LeiStore.pm | 9 +++++++++ diff --git a/lib/PublicInbox/LeiStore.pm b/lib/PublicInbox/LeiStore.pm index 8e710540f0345cc27f5aa127c60801df32523f70..57f0e0132f4316fa3a97f0b1dc56b99eaa8a3969 100644 --- a/lib/PublicInbox/LeiStore.pm +++ b/lib/PublicInbox/LeiStore.pm @@ -344,6 +344,15 @@ if ($bref) { my $eml = PublicInbox::Eml->new($bref); $smsg->{-merge_vmd} = 1; # preserve existing keywords $eidx->idx_shard($smsg->{num})->index_eml($eml, $smsg); + } elsif ($type eq 'missing') { + # pre-release/buggy lei may've indexed external-only msgs, + # try to correct that, here + warn("E: missing $hex, culling (ancient lei artifact?)\n"); + $smsg->{to} = $smsg->{cc} = $smsg->{from} = ''; + $smsg->{bytes} = 0; + $eidx->{oidx}->update_blob($smsg, ''); + my $eml = PublicInbox::Eml->new("\r\n\r\n"); + $eidx->idx_shard($smsg->{num})->index_eml($eml, $smsg); } else { warn("E: $type $hex\n"); }