From: David Bremner Date: Tue, 24 Mar 2015 19:15:51 +0000 (+2000) Subject: Re: Can't compose message in Emacs - Notmuch X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=34287ac53a619a9b8e221684dc9c5642e0605beb;p=notmuch-archives.git Re: Can't compose message in Emacs - Notmuch --- diff --git a/0a/eb8d46de6bfaa246e7dd17971dc35a2578e98a b/0a/eb8d46de6bfaa246e7dd17971dc35a2578e98a new file mode 100644 index 000000000..e178a0978 --- /dev/null +++ b/0a/eb8d46de6bfaa246e7dd17971dc35a2578e98a @@ -0,0 +1,82 @@ +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 98213431E62 + for ; Tue, 24 Mar 2015 12:17:46 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 2.438 +X-Spam-Level: ** +X-Spam-Status: No, score=2.438 tagged_above=-999 required=5 + tests=[DNS_FROM_AHBL_RHSBL=2.438] 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 yACJhgZskHtX for ; + Tue, 24 Mar 2015 12:17:44 -0700 (PDT) +Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net + [87.98.215.224]) + (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 36F9D431FD9 + for ; Tue, 24 Mar 2015 12:17:44 -0700 (PDT) +Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim + 4.80) (envelope-from ) + id 1YaUJ8-0001t1-Pn; Tue, 24 Mar 2015 19:16:10 +0000 +Received: (nullmailer pid 9529 invoked by uid 1000); Tue, 24 Mar 2015 + 19:15:51 -0000 +From: David Bremner +To: glyn.millington@gmail.com, notmuch@notmuchmail.org +Subject: Re: Can't compose message in Emacs - Notmuch +In-Reply-To: <878uembwmj.fsf@nowhere.org> +References: <878uembwmj.fsf@nowhere.org> +User-Agent: Notmuch/0.19+86~gbed8b67 (http://notmuchmail.org) Emacs/24.4.1 + (x86_64-pc-linux-gnu) +Date: Tue, 24 Mar 2015 15:15:51 -0400 +Message-ID: <87fv8u6wbc.fsf@maritornes.cs.unb.ca> +MIME-Version: 1.0 +Content-Type: text/plain +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: Tue, 24 Mar 2015 19:17:46 -0000 + +Glyn Millington writes: + +> Greetings! +> +> Emacs 24.4.1 (Arch Linux if that helps) +> Notmuch 0.19 +> +> The problem is that I can neither compose a new email nor reply to an old +> email unless I have already used message mode (via Gnus) first. +> I get an error message - Google on the error message below gets me nowhere! +> + +Can you duplicate the error with a minimal .emacs? In particular save +the following to "run-notmuch.el" and start emacs with + +% emacs -Q --load run-emacs.el + +;; -8x------------------------------------------------------------- +;; adjust the following line to point to either the .el or .elc of +;; notmuch.el + +(add-to-list 'load-path "/path/to/notmuch/dot/el") +(require 'notmuch) +(notmuch-mua-mail) + +;; -8x------------------------------------------------------------- + +If that doesn't error, then the most likely trigger is some setting or +add on package in your .emacs. Once we know what the trigger is, we can +try to figure out where bug lies.