From 7fcb2e58c9643f5d4ff902c5073d182c34e129ea Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Sat, 24 Aug 2013 08:50:26 +0100 Subject: [PATCH] Re: [PATCH v3 0/8] cli: better tooling support for duplicate messages --- 0e/f918c1e0232e2fbb3186af1bce1e0d6df9a8d6 | 109 ++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 0e/f918c1e0232e2fbb3186af1bce1e0d6df9a8d6 diff --git a/0e/f918c1e0232e2fbb3186af1bce1e0d6df9a8d6 b/0e/f918c1e0232e2fbb3186af1bce1e0d6df9a8d6 new file mode 100644 index 000000000..a69ba60e5 --- /dev/null +++ b/0e/f918c1e0232e2fbb3186af1bce1e0d6df9a8d6 @@ -0,0 +1,109 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by olra.theworths.org (Postfix) with ESMTP id 18002431FCF + for ; Sat, 24 Aug 2013 00:50:41 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -1.098 +X-Spam-Level: +X-Spam-Status: No, score=-1.098 tagged_above=-999 required=5 + tests=[DKIM_ADSP_CUSTOM_MED=0.001, FREEMAIL_FROM=0.001, + NML_ADSP_CUSTOM_MED=1.2, RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled +Received: from olra.theworths.org ([127.0.0.1]) + by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id erg0ekwoLTRe for ; + Sat, 24 Aug 2013 00:50:33 -0700 (PDT) +Received: from mail2.qmul.ac.uk (mail2.qmul.ac.uk [138.37.6.6]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 9ACFE431FBF + for ; Sat, 24 Aug 2013 00:50:33 -0700 (PDT) +Received: from smtp.qmul.ac.uk ([138.37.6.40]) + by mail2.qmul.ac.uk with esmtp (Exim 4.71) + (envelope-from ) + id 1VD8c7-0008WL-CN; Sat, 24 Aug 2013 08:50:29 +0100 +Received: from 93-97-24-31.zone5.bethere.co.uk ([93.97.24.31] helo=localhost) + by smtp.qmul.ac.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.71) + (envelope-from ) + id 1VD8c7-00060C-34; Sat, 24 Aug 2013 08:50:27 +0100 +From: Mark Walters +To: Jani Nikula , notmuch@notmuchmail.org +Subject: Re: [PATCH v3 0/8] cli: better tooling support for duplicate messages +In-Reply-To: +References: +User-Agent: Notmuch/0.15.2+192~g8222af3 (http://notmuchmail.org) Emacs/23.4.1 + (x86_64-pc-linux-gnu) +Date: Sat, 24 Aug 2013 08:50:26 +0100 +Message-ID: <87wqnbzfwd.fsf@qmul.ac.uk> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +X-Sender-Host-Address: 93.97.24.31 +X-QM-SPAM-Info: Sender has good ham record. :) +X-QM-Body-MD5: c2c19dfb6285c51e9328f8480cee65f4 (of first 20000 bytes) +X-SpamAssassin-Score: 0.0 +X-SpamAssassin-SpamBar: / +X-SpamAssassin-Report: The QM spam filters have analysed this message to + determine if it is + spam. We require at least 5.0 points to mark a message as spam. + This message scored 0.0 points. Summary of the scoring: + * 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail + provider * (markwalters1009[at]gmail.com) + * 0.0 AWL AWL: From: address is in the auto white-list +X-QM-Scan-Virus: ClamAV says the message is clean +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.13 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Sat, 24 Aug 2013 07:50:41 -0000 + + +This series LGTM +1. + +Best wishes + +Mark + +On Sat, 17 Aug 2013, Jani Nikula wrote: +> v3 of id:cover.1370775663.git.jani@nikula.org. Just a rebase, no changes +> since the latest versions of the patches posted in the previous thread. +> +> BR, +> Jani. +> +> Jani Nikula (8): +> cli: add --duplicate=N option to notmuch search +> test: test notmuch search --duplicate=N +> man: document notmuch search --duplicate=N +> cli: add --output=files option to notmuch count +> test: test notmuch count --output=files +> man: document notmuch count --output=files +> NEWS: cli options for improved duplicate message handling +> man: clarify folder: prefix regarding duplicate files +> +> NEWS | 20 ++++++++++++ +> man/man1/notmuch-count.1 | 10 +++++- +> man/man1/notmuch-search.1 | 20 ++++++++++++ +> man/man7/notmuch-search-terms.7 | 8 +++-- +> notmuch-count.c | 37 ++++++++++++++++++++++ +> notmuch-search.c | 18 +++++++---- +> test/count | 10 ++++++ +> test/search-output | 65 +++++++++++++++++++++++++++++++++++++++ +> 8 files changed, 178 insertions(+), 10 deletions(-) +> +> -- +> 1.7.10.4 +> +> _______________________________________________ +> notmuch mailing list +> notmuch@notmuchmail.org +> http://notmuchmail.org/mailman/listinfo/notmuch -- 2.26.2