From 014d2432301cca6057da1a38c883862f2504a61e Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Sat, 17 Aug 2013 15:11:32 +0300 Subject: [PATCH] [PATCH v3 7/8] NEWS: cli options for improved duplicate message handling --- d1/1663648fca319a2ddd457eee805401c45d5b36 | 105 ++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 d1/1663648fca319a2ddd457eee805401c45d5b36 diff --git a/d1/1663648fca319a2ddd457eee805401c45d5b36 b/d1/1663648fca319a2ddd457eee805401c45d5b36 new file mode 100644 index 000000000..53febb28a --- /dev/null +++ b/d1/1663648fca319a2ddd457eee805401c45d5b36 @@ -0,0 +1,105 @@ +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 120C7431E82 + for ; Sat, 17 Aug 2013 05:12:28 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" +X-Spam-Flag: NO +X-Spam-Score: -0.7 +X-Spam-Level: +X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 + tests=[RCVD_IN_DNSWL_LOW=-0.7] 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 8VvtO7JjbPG2 for ; + Sat, 17 Aug 2013 05:12:22 -0700 (PDT) +Received: from mail-bk0-f44.google.com (mail-bk0-f44.google.com + [209.85.214.44]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 3B2D4431FC9 + for ; Sat, 17 Aug 2013 05:11:54 -0700 (PDT) +Received: by mail-bk0-f44.google.com with SMTP id mz10so926046bkb.17 + for ; Sat, 17 Aug 2013 05:11:53 -0700 (PDT) +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=google.com; s=20120113; + h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to + :references:in-reply-to:references; + bh=SJBEaRsrVrmgwClMkRTs8ah9p2kJ9JqFCSMwbaKbejA=; + b=c51cufej3H56dkNtwiCdyPOR10X2Y7s9IYOZ/qzM+q5L0KtrK2LvDlYHwTXU/rnDGj + rd0oxrK09SC4xtFeKxGwtURcdlUst30LfjVGWTdr7ijTaCEDADSGXo8LonKAQG+Wzp5G + 2bRmg18CbzdhK/jDoiXjJPrqR3/VWbALj/WbXLNjtxjy1+So1zePGmW+Kl8Fygiokerq + 0W+Y5XTL4wAdg4C5o0sY4nwWmpmQ2eT7wK2tW1x6GBt2+ML9xEUd8hxVHorD3/TAdgGN + GKkbYtI645KBEdHxisaMf381d1u/eU6zdOOHr4aDhumPJZ+gtG9+AdWn9xHcht9ynRr8 + cung== +X-Gm-Message-State: + ALoCoQlE8jROkqfjnwswY+AAAgJcKhr2Mvmyz2nURzi6aOa+akUv8M54NiEARcF1sinwA29bAwoE +X-Received: by 10.204.62.201 with SMTP id y9mr1636363bkh.23.1376741512947; + Sat, 17 Aug 2013 05:11:52 -0700 (PDT) +Received: from localhost (dsl-hkibrasgw2-58c36f-91.dhcp.inet.fi. + [88.195.111.91]) + by mx.google.com with ESMTPSA id if11sm249879bkc.15.1969.12.31.16.00.00 + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Sat, 17 Aug 2013 05:11:52 -0700 (PDT) +From: Jani Nikula +To: notmuch@notmuchmail.org +Subject: [PATCH v3 7/8] NEWS: cli options for improved duplicate message + handling +Date: Sat, 17 Aug 2013 15:11:32 +0300 +Message-Id: + +X-Mailer: git-send-email 1.7.10.4 +In-Reply-To: +References: +In-Reply-To: +References: +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, 17 Aug 2013 12:12:28 -0000 + +--- + NEWS | 20 ++++++++++++++++++++ + 1 file changed, 20 insertions(+) + +diff --git a/NEWS b/NEWS +index 722a35d..7f5bf6b 100644 +--- a/NEWS ++++ b/NEWS +@@ -1,3 +1,23 @@ ++ ++Notmuch 0.16 (201x-xx-xx) ++========================= ++ ++Command-Line Interface ++---------------------- ++ ++New options to better support handling duplicate messages ++ ++ If more than one message file is associated with a message-id, ++ `notmuch search --output=files` will print all of them. A new ++ `--duplicate=N` option can be used to specify which duplicate to ++ print for each message. ++ ++ `notmuch count` now supports `--output=files` option to output the ++ number of files associated with matching messages. This may be ++ bigger than the number of matching messages due to duplicates ++ (i.e. multiple files having the same message-id). ++ ++ + Notmuch 0.16 (2013-08-03) + ========================= + +-- +1.7.10.4 + -- 2.26.2