[RFC PATCH v3 06/11] emacs: add extra parameters option to notmuch-query-get-threads
authorMark Walters <markwalters1009@gmail.com>
Mon, 13 Feb 2012 01:20:10 +0000 (01:20 +0000)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:44:25 +0000 (09:44 -0800)
df/b0cf4d0c737a563d267e3bd038434e14b16e2a [new file with mode: 0644]

diff --git a/df/b0cf4d0c737a563d267e3bd038434e14b16e2a b/df/b0cf4d0c737a563d267e3bd038434e14b16e2a
new file mode 100644 (file)
index 0000000..8025454
--- /dev/null
@@ -0,0 +1,92 @@
+Return-Path: <markwalters1009@gmail.com>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 4FEA0421171\r
+       for <notmuch@notmuchmail.org>; Sun, 12 Feb 2012 17:19:26 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.201\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.201 tagged_above=-999 required=5\r
+       tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
+       FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001,\r
+       RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id CH1x3kF1n9oz for <notmuch@notmuchmail.org>;\r
+       Sun, 12 Feb 2012 17:19:26 -0800 (PST)\r
+Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com\r
+ [74.125.82.45])       (using TLSv1 with cipher RC4-SHA (128/128 bits))        (No client\r
+ certificate requested)        by olra.theworths.org (Postfix) with ESMTPS id\r
+ DBC2042117B   for <notmuch@notmuchmail.org>; Sun, 12 Feb 2012 17:19:24 -0800\r
+ (PST)\r
+Received: by mail-ww0-f45.google.com with SMTP id dt12so3923384wgb.2\r
+       for <notmuch@notmuchmail.org>; Sun, 12 Feb 2012 17:19:24 -0800 (PST)\r
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma;\r
+       h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references;\r
+       bh=NXxzcCregAiuJTU62VQHhxm9DYgj4cu6Pn4sBJa9sm0=;\r
+       b=Ht7L9H657py73ZsF58xlOZB8PYrE9uhnJFYN7TTquxTascYsSgP5pboj832lFg+szE\r
+       oaGsccB/pLjtoIoat0UC6dq/xPJBZmtI6358o67B9AR1jCMz5IPIaI4okbEZ9B3pVt8M\r
+       S1cU9Rdaq7JnwGMscHXtpM11ZS7GYYAvEKfp0=\r
+Received: by 10.180.107.67 with SMTP id ha3mr13530069wib.8.1329095964626;\r
+       Sun, 12 Feb 2012 17:19:24 -0800 (PST)\r
+Received: from localhost (94-192-233-223.zone6.bethere.co.uk.\r
+ [94.192.233.223])     by mx.google.com with ESMTPS id\r
+ m8sm41756675wia.11.2012.02.12.17.19.23        (version=TLSv1/SSLv3 cipher=OTHER);\r
+       Sun, 12 Feb 2012 17:19:23 -0800 (PST)\r
+From: Mark Walters <markwalters1009@gmail.com>\r
+To: notmuch@notmuchmail.org\r
+Subject: [RFC PATCH v3 06/11] emacs: add extra parameters option to\r
+       notmuch-query-get-threads\r
+Date: Mon, 13 Feb 2012 01:20:10 +0000\r
+Message-Id: <1329096015-8078-7-git-send-email-markwalters1009@gmail.com>\r
+X-Mailer: git-send-email 1.7.2.3\r
+In-Reply-To: <1329072579-27340-1-git-send-email-markwalters1009@gmail.com>\r
+References: <1329072579-27340-1-git-send-email-markwalters1009@gmail.com>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Mon, 13 Feb 2012 01:19:26 -0000\r
+\r
+Add an extra parameter to notmuch-query-get-threads (in\r
+notmuch-query.el) so that callers can pass in extra parameters to\r
+control the sort order, the --headers-only option, and threading etc.\r
+---\r
+ emacs/notmuch-query.el |    4 +++-\r
+ 1 files changed, 3 insertions(+), 1 deletions(-)\r
+\r
+diff --git a/emacs/notmuch-query.el b/emacs/notmuch-query.el\r
+index d66baea..b3c91a3 100644\r
+--- a/emacs/notmuch-query.el\r
++++ b/emacs/notmuch-query.el\r
+@@ -22,7 +22,7 @@\r
+ (require 'notmuch-lib)\r
+ (require 'json)\r
\r
+-(defun notmuch-query-get-threads (search-terms)\r
++(defun notmuch-query-get-threads (search-terms &rest extra-format)\r
+   "Return a list of threads of messages matching SEARCH-TERMS.\r
\r
+ A thread is a forest or list of trees. A tree is a two element\r
+@@ -33,6 +33,8 @@ is a possibly empty forest of replies.\r
+        (json-object-type 'plist)\r
+        (json-array-type 'list)\r
+        (json-false 'nil))\r
++    (if extra-format\r
++      (setq args (append args extra-format)))\r
+     (if notmuch-show-process-crypto\r
+       (setq args (append args '("--decrypt"))))\r
+     (setq args (append args search-terms))\r
+-- \r
+1.7.2.3\r
+\r