X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-query.el;h=563e4acf57df3ab2c017085aea4c03d0677c3b72;hb=0557c5a0333b971188c02c961dec88496f2eed0c;hp=51d427f230038caf8782be5afafca11ca072c644;hpb=43251ab653a20c0f7cca709d36da895c3558e125;p=notmuch diff --git a/emacs/notmuch-query.el b/emacs/notmuch-query.el index 51d427f2..563e4acf 100644 --- a/emacs/notmuch-query.el +++ b/emacs/notmuch-query.el @@ -1,4 +1,4 @@ -;; notmuch-query.el --- provide an emacs api to query notmuch +;;; notmuch-query.el --- provide an emacs api to query notmuch ;; ;; Copyright © David Bremner ;; @@ -15,12 +15,13 @@ ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License -;; along with Notmuch. If not, see . +;; along with Notmuch. If not, see . ;; ;; Authors: David Bremner +;;; Code: + (require 'notmuch-lib) -(require 'json) (defun notmuch-query-get-threads (search-terms) "Return a list of threads of messages matching SEARCH-TERMS. @@ -29,9 +30,9 @@ A thread is a forest or list of trees. A tree is a two element list where the first element is a message, and the second element is a possibly empty forest of replies. " - (let ((args '("show" "--format=sexp" "--format-version=1"))) + (let ((args '("show" "--format=sexp" "--format-version=4"))) (if notmuch-show-process-crypto - (setq args (append args '("--decrypt")))) + (setq args (append args '("--decrypt=true")))) (setq args (append args search-terms)) (apply #'notmuch-call-notmuch-sexp args))) @@ -75,3 +76,5 @@ See the function notmuch-query-get-threads for more information." (notmuch-query-get-threads search-terms))) (provide 'notmuch-query) + +;;; notmuch-query.el ends here