Search for message ID broken?
authorRainer M Krug <Rainer@krugs.de>
Thu, 27 Feb 2014 10:32:47 +0000 (11:32 +0100)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:00:17 +0000 (10:00 -0800)
53/4213d674ad702e71c8e165c195ed52f030123a [new file with mode: 0644]

diff --git a/53/4213d674ad702e71c8e165c195ed52f030123a b/53/4213d674ad702e71c8e165c195ed52f030123a
new file mode 100644 (file)
index 0000000..e496556
--- /dev/null
@@ -0,0 +1,113 @@
+Return-Path: <gmn-notmuch@m.gmane.org>\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 825A5431FAF\r
+       for <notmuch@notmuchmail.org>; Thu, 27 Feb 2014 02:33:05 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5\r
+       tests=[RCVD_IN_DNSWL_NONE=-0.0001] 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 q5K-67GKTH34 for <notmuch@notmuchmail.org>;\r
+       Thu, 27 Feb 2014 02:33:00 -0800 (PST)\r
+Received: from plane.gmane.org (plane.gmane.org [80.91.229.3])\r
+       (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id E1994431FAE\r
+       for <notmuch@notmuchmail.org>; Thu, 27 Feb 2014 02:32:59 -0800 (PST)\r
+Received: from list by plane.gmane.org with local (Exim 4.69)\r
+       (envelope-from <gmn-notmuch@m.gmane.org>) id 1WIyGt-000420-1q\r
+       for notmuch@notmuchmail.org; Thu, 27 Feb 2014 11:32:55 +0100\r
+Received: from arn78-1-88-186-171-7.fbx.proxad.net ([88.186.171.7])\r
+       by main.gmane.org with esmtp (Gmexim 0.1 (Debian))\r
+       id 1AlnuQ-0007hv-00\r
+       for <notmuch@notmuchmail.org>; Thu, 27 Feb 2014 11:32:55 +0100\r
+Received: from Rainer by arn78-1-88-186-171-7.fbx.proxad.net with local\r
+       (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00\r
+       for <notmuch@notmuchmail.org>; Thu, 27 Feb 2014 11:32:55 +0100\r
+X-Injected-Via-Gmane: http://gmane.org/\r
+To: notmuch@notmuchmail.org\r
+From: Rainer M Krug <Rainer@krugs.de>\r
+Subject: Search for message ID broken?\r
+Date: Thu, 27 Feb 2014 11:32:47 +0100\r
+Lines: 54\r
+Message-ID: <m2mwhcx2uo.fsf@krugs.de>\r
+Mime-Version: 1.0\r
+Content-Type: text/plain\r
+X-Complaints-To: usenet@ger.gmane.org\r
+X-Gmane-NNTP-Posting-Host: arn78-1-88-186-171-7.fbx.proxad.net\r
+User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (darwin)\r
+Cancel-Lock: sha1:ze3lgKREaumSaidLCxHa7QsxT2c=\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: Thu, 27 Feb 2014 10:33:05 -0000\r
+\r
+Hi\r
+\r
+I am using gnus and notmuch, and am trying to view the thread of the\r
+message I am viewing in gnus in notmuch.\r
+\r
+With help, I now have the following function:\r
+\r
+--8<---------------cut here---------------start------------->8---\r
+(defun rmk/do-gnus-notmuch-stuff ()\r
+  (interactive)\r
+  (unless (buffer-live-p gnus-summary-buffer)\r
+    (user-error "No open Gnus summary buffer!"))\r
+  (let ((message-id (with-current-buffer gnus-summary-buffer\r
+                     (mail-header-id (gnus-summary-article-header)))))\r
+    (message message-id)\r
+    (notmuch-search (concatenate 'string "id:" message-id)) ;; Now do the notmuch stuff\r
+    ))\r
+--8<---------------cut here---------------end--------------->8---\r
+\r
+which nicely extracts the message ID and calls notmuch-search, but I\r
+don't get any results. The buffer is called notmuch-search-id:<THE_MESSAGE-ID>\r
+\r
+I tried to call notmuch-search interactively, using id:<THE_MESSAGE-ID>\r
+but also no results.\r
+\r
+I now tried the search from the comandline:\r
+\r
+,----\r
+| Rainers-MacBook-Pro-2:~ rainerkrug$ notmuch search id:<e89a8f923ce652c84304f2f03b05@google.com>\r
+| -bash: syntax error near unexpected token `newline'\r
+| Rainers-MacBook-Pro-2:~ rainerkrug$ notmuch search id:"<e89a8f923ce652c84304f2f03b05@google.com>"\r
+| Rainers-MacBook-Pro-2:~ rainerkrug$ \r
+`----\r
+\r
+If I search for the subject, it works, but not with the message ID.\r
+\r
+Is there something broken?\r
+\r
+I am using \r
+\r
+- GNU Emacs 24.3.1 (x86_64-apple-darwin13.0.0, Carbon Version 1.6.0\r
+AppKit 1265) of 2014-02-13 on Rainers-MacBook-Pro-2.local installed via\r
+homebrew emacs-mac\r
+- notmuch binary installed via homebrew q\r
+\r
+Cheers,\r
+\r
+Rainer\r
+\r
+\r
+-- \r
+Rainer M. Krug\r
+\r
+email: RMKrug<at>gmail<dot>com\r
+\r