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.0.0.0/16 X-Spam-Status: No, score=-3.3 required=3.0 tests=AWL,BAYES_00,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 out2.migadu.com (out2.migadu.com [IPv6:2001:41d0:2:aacc::]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id F34B31F9E5 for ; Tue, 4 May 2021 04:46:13 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1620103571; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4zyEHPa5TvBZL8A7JTn92th0QJ7KZRhdkwgFiOw7tbA=; b=yg+HAFUw3wocmy+d6zq7MCdvOAafuqU9GW1dOLM1c+dYmsSYfZCc6jng+NSzOYdHqYys4z GMyaw8bqC7gjjmvwJQWQpNh6nxEiZiV1bh8iZCTG6RFkC7jhyJ+2vDqA4DTPwToMknJS/G y9nQ1/IulLQ8ttJoMOTagIbjI1ffWZufo3xADr4DEQTEMHdtBFSR/oILU2O11eT/Smlj7J c+ML9czTiXWylD7anQkcl0dr/R9wVccCqcE7q/2uSJ/IM6iffgfdVyVLo9lUiNxJcrH3Wh X0Rvv/C4W+x40xIY5R4r4yBUITtycQa3a1JoswWF25Z3dpSE6MsRPr2VRPpl9w== From: Kyle Meyer To: meta@public-inbox.org Subject: [PATCH 2/5] lei ls-mail-sync: drop repeated -z/0 option Date: Tue, 4 May 2021 00:45:56 -0400 Message-Id: <20210504044559.12941-3-kyle@kyleam.com> In-Reply-To: <20210504044559.12941-1-kyle@kyleam.com> References: <20210504044559.12941-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: --- lib/PublicInbox/LEI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/LEI.pm b/lib/PublicInbox/LEI.pm index 599cfab2..e9c1675a 100644 --- a/lib/PublicInbox/LEI.pm +++ b/lib/PublicInbox/LEI.pm @@ -171,7 +171,7 @@ our %CMD = ( # sorted in order of importance/use: qw(format|f=s z|0 globoff|g invert-match|v local remote), @c_opt ], 'ls-label' => [ '', 'list labels', qw(z|0 stats:s), @c_opt ], 'ls-mail-sync' => [ '', 'list mail sync folders', - qw(z|0 z|0 globoff|g invert-match|v local remote), @c_opt ], + qw(z|0 globoff|g invert-match|v local remote), @c_opt ], 'forget-external' => [ 'LOCATION...|--prune', 'exclude further results from a publicinbox|extindex', qw(prune), @c_opt ], -- 2.31.1