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.6 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE, SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from mail-qt1-x830.google.com (mail-qt1-x830.google.com [IPv6:2607:f8b0:4864:20::830]) (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 741471F8C6 for ; Wed, 15 Sep 2021 17:57:15 +0000 (UTC) Received: by mail-qt1-x830.google.com with SMTP id 2so3140897qtw.1 for ; Wed, 15 Sep 2021 10:57:15 -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=BnpxL6nKVV2Z9iKf/YhGF8yytPAeJmy7ab9ehiCBlh8=; b=F7Frf7fsiGQhnHRTEtPYBRVdCdfZDXg9BVuuDG8OUu4esjmhpLWdnOdooXftW02ujC dYBa7NALHRa0XiBTyYSHv+NIBaRJAZ9Bpp4KpJpqjSaqGymJNIFhX7VZL89Avqglk1UI HQjq6LJzf+OmxiPJ25ilROfAE8qFz9zPCbmvo= 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=BnpxL6nKVV2Z9iKf/YhGF8yytPAeJmy7ab9ehiCBlh8=; b=b4V8UXjPxEBS7aMwGiJNAV6yfFOLVOHRZosQXPGiLr1pBoMKeur+nXdy9VUQuNiwGk 60uOcrON2VzMPWhQWJl0ktM1nkFubjXbSg2V83jekJsnRTzrNDaBoBQIptE0Km3pl2HT qHdblYtO0MFymJlDAe0WqpIf4HwbRC+ojx49aLio6dcXycURXwc5Kh2jggoJ90Zm70lW WO4knvMbVZdUXEvoJI2RP/zo8Ba9jN6nPzeruWM7hMCciqtV1VAMxytrwAyarEUDWn8A kj7+YdlEx80uJOpbl1jU3j/fdOxpanBmVBR/RDe/S4yaFfiI2HoqcEhqh9/zC/FZS43X ZdDw== X-Gm-Message-State: AOAM532GP0HFn+IC7vetXtMdZ1pEPWL6xnV3zChqrmESKUzjUSH2rOeK zOJL8OswWggFwhwuBBIcgrhRlw== X-Google-Smtp-Source: ABdhPJx0lKdj9x3IH744Rb0IVQ/w7aLvsI/ruFEdEdKFFFD1tTB6N42rwyDkZIKw6Krri+U0aLQwXg== X-Received: by 2002:ac8:794e:: with SMTP id r14mr1072843qtt.333.1631728634027; Wed, 15 Sep 2021 10:57:14 -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 m68sm486810qkb.105.2021.09.15.10.57.13 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 15 Sep 2021 10:57:13 -0700 (PDT) Date: Wed, 15 Sep 2021 13:57:12 -0400 From: Konstantin Ryabitsev To: Eric Wong Cc: meta@public-inbox.org Subject: Re: [PATCH] uri_imap: fix ->uidvalidity and ->uid w/ `/' separator Message-ID: <20210915175712.mgilu3jjeoddlgwc@meerkat.local> References: <20210914175025.eq7s2shkc323itaf@meerkat.local> <20210914193528.29676-1-e@80x24.org> <20210914195510.kozlchcwvgrng5uc@meerkat.local> <20210914210547.akdp4cqmwaheayp5@meerkat.local> <20210914221036.GA4907@dcvr> <20210915123347.knr4qpaei73tjc5q@meerkat.local> <20210915174341.GA23047@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210915174341.GA23047@dcvr> List-Id: On Wed, Sep 15, 2021 at 05:43:41PM +0000, Eric Wong wrote: > > The error is gone, but the saved search still doesn't show up when I run > > "lei ls-search". Looking in .local/share/lei/saved-searches, I see that they > > still get created as lore/foldername-${checksum}, which is probably why > > ls-search doesn't find them? > > Ah, it's because the "foldername" part was incorrectly parsed > and it should be .local/share/lei/saved-searches/foldername-$checksum > without the "lore/" parent. > > Once patched with the below, you should be able to move the > folder up a level and remove the now-empty "lore" dir inside > saved-searches. > > Anyways, I think this fixes it: Yep, confirmed. And lei up --all now picks up remote imap folders. Thanks! -K