From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id QOFiDYPat1/BOQAA0tVLHw (envelope-from ) for ; Fri, 20 Nov 2020 15:02:27 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id +NZUCYPat1+fPgAA1q6Kng (envelope-from ) for ; Fri, 20 Nov 2020 15:02:27 +0000 Received: from mail.notmuchmail.org (nmbug.tethera.net [IPv6:2607:5300:201:3100::1657]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 3CE0B9404FF for ; Fri, 20 Nov 2020 15:02:26 +0000 (UTC) Received: from nmbug.tethera.net (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id C78AB28C64; Fri, 20 Nov 2020 10:02:19 -0500 (EST) Received: from wedjat.horus-it.com (wedjat.horus-it.com [IPv6:2a01:4f9:2a:2e8d::c0de]) by mail.notmuchmail.org (Postfix) with ESMTPS id 6F8A91F9E9 for ; Fri, 20 Nov 2020 10:02:17 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by wedjat.horus-it.com (Postfix) with ESMTP id 824B6A602E08 for ; Fri, 20 Nov 2020 16:02:15 +0100 (CET) X-Virus-Scanned: at horus-it.com Received: from wedjat (wedjat.horus-it.com [IPv6:2a01:4f9:2a:2e8d::c0de]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by wedjat.horus-it.com (Postfix) with ESMTPS id 59E8EA600160 for ; Fri, 20 Nov 2020 16:02:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ml.seichter.de; s=k1; t=1605884535; bh=b9ICKLsfcvwxe67yNzeWOh597YBYNXzLN5kVwAXKLFU=; h=From:To:Subject:In-Reply-To:References:Date:Message-ID: Content-Type; b=M76Mk8zRfOWjGujDE83YVUV9G+vsRIbshLyYTBGbOfu0HYSxts7zVYlX2aF61qzhQ gvKy4FCq9SPAlf2JNTKRjiyIoVj5xLx1I0aQFbJL/JPqhXw3UyAoSxACjEaBX0MAbN +4vhgBg/gIiEOGfsXbSJRjxxbFjhJVP6aiH6bQYRxSrj8xA6iDGPyb2PJjrj50IxJ0 tcILNJdbD0zGXCLXEKNiXqnL3fFCnPii7Rhmsmbpk2i4cHXYrgOOSzFtxPKpp4Roep j+wKDfX7obgo+KFjxm1wZhoL5P0UArXDHfwbdDpV1vr2aCUAMsoTNpauEiO0Knnpcc rZQBQcjK4GYHQ== From: Ralph Seichter To: notmuch@notmuchmail.org Subject: Re: listing all the tags I've been using In-Reply-To: <878sawhytd.fsf@m4x.org> References: <878sawhytd.fsf@m4x.org> Mail-Followup-To: notmuch@notmuchmail.org Date: Fri, 20 Nov 2020 16:02:15 +0100 Message-ID: <87y2iw8420.fsf@wedjat.horus-it.com> MIME-Version: 1.0 Message-ID-Hash: PZID3HNCU7X2TUGXIQGVR5C4ANXFJ4AW X-Message-ID-Hash: PZID3HNCU7X2TUGXIQGVR5C4ANXFJ4AW X-MailFrom: ralph@ml.seichter.de X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-notmuch.notmuchmail.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.1 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Scanner: ns3122888.ip-94-23-21.eu Authentication-Results: aspmx1.migadu.com; dkim=fail (body hash did not verify) header.d=ml.seichter.de header.s=k1 header.b=M76Mk8zR; dmarc=fail reason="SPF not aligned (relaxed)" header.from=ml.seichter.de (policy=none); spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 2607:5300:201:3100::1657 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Spam-Score: 0.09 X-TUID: qZjdXb6EyRaH * Alan Schmitt: > I'm trying to document the tags I'm using for notmuch [...] The following should get you started (untested, from memory): notmuch dump | gawk -F '--' '{print $1}' | sort -u Feel free to add some more AWK magic instead of the "sort -u" to group/count by tag name. -Ralph