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-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-3.7 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 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from mail-qk1-x730.google.com (mail-qk1-x730.google.com [IPv6:2607:f8b0:4864:20::730]) (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 A07C31F8C8 for ; Thu, 9 Sep 2021 20:56:34 +0000 (UTC) Received: by mail-qk1-x730.google.com with SMTP id w78so3433766qkb.4 for ; Thu, 09 Sep 2021 13:56:34 -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:references:mime-version :content-disposition:in-reply-to; bh=uA47nhPtWT9VKyh7UtJYq1HjxP8f+M7ezIWS3gblqqY=; b=QbK6oZ1Z9IadY0Ga/bn5TiIaaohqDgDkwJKS3+beopF2PDmvMhcWOW8/E5woA3bJGt MdT5eDUZ3RIk+aANoJas+w1Fm2kSGNX2fajtvwe7HiOG5hS4+EcLxvQo54kd+uCiiHL+ UECEQeAEz9GTwoNfba+OfIj81mH2gBk4FHUPg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=uA47nhPtWT9VKyh7UtJYq1HjxP8f+M7ezIWS3gblqqY=; b=JcALcObohnVrzuVLVOLprkaJVTe/6zmNh9AXAEXnXP3OrzYeeGKSn+ad81M03l6AwR ogZ0nalJJ33Nm6UVT1cXF63HCp7iWI0XiAt6PDvKKAHNPPoXHdNT6itZAgdbweiD4pBD /7LtLv0vGNWSd8X111D9taxFA1yWmkiGu6pIbuZF4c312z4NVYQ6GQpiTfEQJ9bZMLgm JujgXrILJapVYdB0mJC4cm9uO6zQgUU3CZT06d5+sR8hUyOXyf1nsK5ROymw03R661sp g3K2H3ewKUubyYNaKOhPmYjr4FlAFz2oaFOBo4ip15B3tQLE77iMUZ8j38EAbCdihUdc spbw== X-Gm-Message-State: AOAM531Zue1QqOLqAcNS1SsiAoRfgeZ1PkAXAZvhvKGnaOU60pcX2YAl 37beEDsADS2WnhmdLwptvEfAsA== X-Google-Smtp-Source: ABdhPJyIxLANoJXKfONDlzNx4SQppDvzK9s95Srl293hzSApILB2u2LuSO7HNZksyf5lUDqgCcheVw== X-Received: by 2002:a37:d4c:: with SMTP id 73mr4830573qkn.188.1631220993520; Thu, 09 Sep 2021 13:56:33 -0700 (PDT) Received: from meerkat.local (bras-base-mtrlpq5031w-grc-32-216-209-220-181.dsl.bell.ca. [216.209.220.181]) by smtp.gmail.com with ESMTPSA id c72sm2210900qkg.5.2021.09.09.13.56.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 09 Sep 2021 13:56:33 -0700 (PDT) Date: Thu, 9 Sep 2021 16:56:31 -0400 From: Konstantin Ryabitsev To: Eric Wong Cc: meta@public-inbox.org Subject: Re: Tracking one-off threads with lei Message-ID: <20210909205631.csp7z52ei5vz74nr@meerkat.local> References: <20210909151919.g24mwd5s54tehxur@meerkat.local> <20210909200628.GA29521@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210909200628.GA29521@dcvr> List-Id: On Thu, Sep 09, 2021 at 08:06:28PM +0000, Eric Wong wrote: > Konstantin Ryabitsev wrote: > > Eric: > > > > Is there a way to "tag" a single thread that isn't matching a saved search and > > have it be followed for any new updates? E.g. someone pings a developer on IRC > > and says "you may be interested in following this discussion" -- what's the > > best course of action for them to pull that into their MFOLDER and get all the > > new updates? > > -t includes every message in the thread strictly (same with mairix): > > lei q -t -o $MFOLDER mid:$MSGID Ah, sorry, I wasn't clear -- this would be into an existing $MFOLDER with a regular q already defined. E.g. I have ~/Maildir/foofunc with: q = dfhh:foofunc However, I am now suddenly interested in a thread with msgid foo@bar. I can modify the q= parameter to be "dfhh:foofunc OR mid:foo@bar", or I can define a new $MFOLDER just for mid:foo@bar, but it doesn't look like I can just one-off cherry-pick a thread into an existing ~/Maildir/foofunc, right? Is there a way to feed multiple saved searches into the same local maildir? (Not saying there should be a way, just trying to get a clear picture in my head.) Thanks, -K