about summary refs log tree commit homepage
path: root/lib/PublicInbox/ContentId.pm
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-19 23:24:50 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-20 04:30:55 +0000
commitdfed6cc6f2881c77478174dd5eb9b93352b1f1c1 (patch)
tree2b57e97d45f8442ffaf0d2e80be0b9033dc76c2d /lib/PublicInbox/ContentId.pm
parent0a254eeea41cf5c0afde2ce188d7d367df5d4d95 (diff)
downloadpublic-inbox-dfed6cc6f2881c77478174dd5eb9b93352b1f1c1.tar.gz
If we need to use content_id, we've already lost hope
in relying on Message-Id as a differentiator.  This
prevents duplicates from showing up repeatedly with
-watch when Message-Ids are reused and we generate
new Message-Ids to disambiguate.
Diffstat (limited to 'lib/PublicInbox/ContentId.pm')
-rw-r--r--lib/PublicInbox/ContentId.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/PublicInbox/ContentId.pm b/lib/PublicInbox/ContentId.pm
index 9082b769..279eec0c 100644
--- a/lib/PublicInbox/ContentId.pm
+++ b/lib/PublicInbox/ContentId.pm
@@ -21,7 +21,8 @@ sub content_digest ($) {
         # in SearchIdx, so treat them the same for this:
         my %seen;
         foreach my $mid (@{mids($hdr)}) {
-                $dig->add('mid: '.$mid);
+                # do NOT consider the Message-ID as part of the content_id
+                # if we got here, we've already got Message-ID reuse
                 $seen{$mid} = 1;
         }
         foreach my $mid (@{references($hdr)}) {