From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI, SPF_HELO_NONE,SPF_PASS,URIBL_RED shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from mail-qk1-x72e.google.com (mail-qk1-x72e.google.com [IPv6:2607:f8b0:4864:20::72e]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id A4F8D1F9FC for ; Wed, 17 Mar 2021 18:37:39 +0000 (UTC) Received: by mail-qk1-x72e.google.com with SMTP id b130so39920914qkc.10 for ; Wed, 17 Mar 2021 11:37:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=google; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to; bh=VkKOmWwxZ1OJw1XYa6VFz2P6mLVdChARw+9TUM444wc=; b=J8W5zW0f7ustPMLUrutCTImYdXU8dq7yPsBPAoCm2DADkyPW6eyhaT1AmFLgrkDudf 2iywjmUeBFHbS20l1THvc1dovQHUIbG6SbLX2Ydz+iS83IClac/x0F6flq+YpsU80pBQ 62BeSeKXDO6nNtFKQAdOswXtODFruhFCDqjyQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id :mail-followup-to:references:mime-version:content-disposition :in-reply-to; bh=VkKOmWwxZ1OJw1XYa6VFz2P6mLVdChARw+9TUM444wc=; b=ohGqQf3xGRTwTytIM43f7Mk8AoMkzCOGulZfMVuoQkZBE6ecXXP0tIDGkdjiBoNJ7g gUvkWOhyWqb8LlKjWzHEFvetTxnWUa5GGVqtDaYtdI5V2P5WaX5DLmYqCW1tgtRHTfDW PE1HIDPAeo3IBSZDR1nEPP0121t/ChXRrAOmPg6Q9PNt+FhVcZFnjE7uTZHcdgwWItft UT/gb5udJRR5/uhLS7cA6pLLym92/Aa8W41XSLCd837nFsKlH2/7Km3cZeMjBC1yPjlz NMUwfkG91ddRvEPLUV9SpkfrXfyvYpRZGjEMWclUR6EsYLUXNDCRbB0R28MzShuNcHMF uVGA== X-Gm-Message-State: AOAM533OW05s9B0qR87fw4coLVV+OlQFFdvwZTdF0aSjuFH9b/cR+SfF VSJeLtyiVJcA1uJg8jdi2y+u3w== X-Google-Smtp-Source: ABdhPJzyIncTY6V1BMh/3oqY4HwIzUqowg67DScehUnD4IqWS7Btw/Mcq9JjOsH8xpV/3xtaeRIGmw== X-Received: by 2002:a37:9bd1:: with SMTP id d200mr609669qke.328.1616006257517; Wed, 17 Mar 2021 11:37:37 -0700 (PDT) Received: from chatter.i7.local ([89.36.78.230]) by smtp.gmail.com with ESMTPSA id a2sm15958982qtj.76.2021.03.17.11.37.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 17 Mar 2021 11:37:37 -0700 (PDT) Date: Wed, 17 Mar 2021 14:37:34 -0400 From: Konstantin Ryabitsev To: Eric Wong Cc: workflows@vger.kernel.org, meta@public-inbox.org Subject: Re: WIP: searching all of lore Message-ID: <20210317183734.zosq5bb44nzfsimm@chatter.i7.local> Mail-Followup-To: Eric Wong , workflows@vger.kernel.org, meta@public-inbox.org References: <20201126194543.GA30337@dcvr> <20210317071116.GA8121@dcvr> <20210317132723.xx4klonordhsb6ve@chatter.i7.local> <20210317181843.GA9180@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210317181843.GA9180@dcvr> List-Id: On Wed, Mar 17, 2021 at 08:18:43PM +0200, Eric Wong wrote: > > Is that intentional, or can this be tweaked to show a single result for the > > same message-id? > > Not really. At least for the summary search results, it makes > no sense: > > https://public-inbox.org/meta/20210317181408.9124-1-e@80x24.org/ > > The underlying cause that can be seen in > https://yhbt.net/lore/all/20210316102311.182375-1-gregkh@linuxfoundation.org/ > is the Mailman-added signature for one of the posts. Ack, hopefully we'll get all Mailman list managers to clue in and stop mangling subject/bodies. It's kind of required for DKIM-signed messages anyway. > I've been considering adding a "diff view" to more easily pick > out differences between messages with identical Message-ID with > subtly different content, but it could be expensive for PSGI... > I will probably prototype it in lei, first. I was going to suggest "show the one for which the DKIM signature is valid" but this is even more expensive. ;) Thanks for your help. -K