Re: [PATCH] emacs: poll: return useful errors when poll fails.
authorTomi Ollila <tomi.ollila@iki.fi>
Wed, 28 Oct 2015 20:18:26 +0000 (22:18 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:49:57 +0000 (14:49 -0700)
48/6a7263b47f8ae4c6941941ea82e1b7394946bc [new file with mode: 0644]

diff --git a/48/6a7263b47f8ae4c6941941ea82e1b7394946bc b/48/6a7263b47f8ae4c6941941ea82e1b7394946bc
new file mode 100644 (file)
index 0000000..53b2792
--- /dev/null
@@ -0,0 +1,109 @@
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id E3C366DE0B44\r
+ for <notmuch@notmuchmail.org>; Wed, 28 Oct 2015 13:18:29 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.744\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.744 tagged_above=-999 required=5 tests=[AWL=0.092, \r
+ SPF_NEUTRAL=0.652] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id FJJU7YmCpKv6 for <notmuch@notmuchmail.org>;\r
+ Wed, 28 Oct 2015 13:18:27 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by arlo.cworth.org (Postfix) with ESMTP id D4CD66DE0AF8\r
+ for <notmuch@notmuchmail.org>; Wed, 28 Oct 2015 13:18:25 -0700 (PDT)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+ by guru.guru-group.fi (Postfix) with ESMTP id 18B35100046;\r
+ Wed, 28 Oct 2015 22:18:26 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Mark Walters <markwalters1009@gmail.com>, notmuch@notmuchmail.org,\r
+ ketil@malde.org\r
+Subject: Re: [PATCH] emacs: poll: return useful errors when poll fails.\r
+In-Reply-To: <1446056919-27822-1-git-send-email-markwalters1009@gmail.com>\r
+References: <87bnd5qjnd.fsf@wespe.malde.org>\r
+ <1446056919-27822-1-git-send-email-markwalters1009@gmail.com>\r
+User-Agent: Notmuch/0.21~rc3+7~g28030b0 (http://notmuchmail.org) Emacs/24.3.1\r
+ (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+ $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+ !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Wed, 28 Oct 2015 22:18:26 +0200\r
+Message-ID: <m27fm6lpbh.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://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: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 28 Oct 2015 20:18:30 -0000\r
+\r
+On Wed, Oct 28 2015, Mark Walters <markwalters1009@gmail.com> wrote:\r
+\r
+> Previously poll called from emacs would fail silently. This makes it\r
+> return a useful error message.\r
+>\r
+> In the non-deprecated case of notmuch new and appropriate hooks, it\r
+> uses notmuch-call-notmuch-process which gives an error and\r
+> additionally puts the stdout/stderr etc in the *Notmuch errors*\r
+> buffer.\r
+>\r
+> In the deprecated case of a custom poll script it only returns an\r
+> error message.\r
+>\r
+> Commit based on a bug report, and a potential fix, by Ketil Malde.\r
+> ---\r
+\r
+Looks good (to me) -- I investigated a bit how notmuch-call-notmuch-process\r
+does things; it uses notmuch-check-exit-status which is not applicable \r
+here.\r
+\r
+Mark said he doesn't use poll -- and I have rewritten my poll(*) so my\r
+tests will be as lightweight as his. So we wait for Ketil's report\r
+how this works :D\r
+\r
+Tomi\r
+\r
+(*) see at the end of this email\r
+\r
+>\r
+> This should fix the bug reported in the parent message -- we should\r
+> definitely report error messages. It might be nice to output the\r
+> stdout/stderr in the custom poll script case but since we don't have\r
+> built in infrastructure for it it probably isn't worth it for a\r
+> deprecated case.\r
+>\r
+> (Note I don't use poll, so this is not heavily tested)\r
+>\r
+> Best wishes\r
+>\r
+> Mark\r
+>\r
+\r
+For reference, if anyone gets ideas from this...\r
+\r
+;; overwrite notmuch-poll defined in notmuch.el\r
+(defun notmuch-poll ()\r
+  (interactive)\r
+  (save-window-excursion\r
+    (let ((buffer (get-buffer-create "*my notmuch polls*")))\r
+      (set-buffer buffer)\r
+      (setq buffer-read-only nil)\r
+      (goto-char (point-max))\r
+      (pop-to-buffer buffer)\r
+      (call-process "notmuch-log-output.sh" nil t t "new" "--verbose")\r
+      (bury-buffer))) ;; <- b-b to put the buffer at the "bottom" of buffers\r
+  (message "update finished"))\r
+\r