--- /dev/null
+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 1A344431FBC\r
+ for <notmuch@notmuchmail.org>; Mon, 17 Nov 2014 08:56:21 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.165\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.165 tagged_above=-999 required=5\r
+ tests=[RCVD_IN_DNSWL_LOW=-0.7, RCVD_NUMERIC_HELO=0.865]\r
+ 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 Pti3nq5r+3qB for <notmuch@notmuchmail.org>;\r
+ Mon, 17 Nov 2014 08:56:13 -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 1EB62431FB6\r
+ for <notmuch@notmuchmail.org>; Mon, 17 Nov 2014 08:56:13 -0800 (PST)\r
+Received: from list by plane.gmane.org with local (Exim 4.69)\r
+ (envelope-from <gmn-notmuch@m.gmane.org>) id 1XqPaw-0005A9-VG\r
+ for notmuch@notmuchmail.org; Mon, 17 Nov 2014 17:56:06 +0100\r
+Received: from 151.62.83.181 ([151.62.83.181])\r
+ by main.gmane.org with esmtp (Gmexim 0.1 (Debian))\r
+ id 1AlnuQ-0007hv-00\r
+ for <notmuch@notmuchmail.org>; Mon, 17 Nov 2014 17:56:06 +0100\r
+Received: from lele by 151.62.83.181 with local (Gmexim 0.1 (Debian))\r
+ id 1AlnuQ-0007hv-00\r
+ for <notmuch@notmuchmail.org>; Mon, 17 Nov 2014 17:56:06 +0100\r
+X-Injected-Via-Gmane: http://gmane.org/\r
+To: notmuch@notmuchmail.org\r
+From: Lele Gaifax <lele@metapensiero.it>\r
+Subject: Re: Forwarding a mail, with a non-ASCII signature\r
+Date: Mon, 17 Nov 2014 17:55:53 +0100\r
+Organization: Nautilus Entertainments\r
+Lines: 43\r
+Message-ID: <87ioid7ome.fsf@nautilus.nautilus>\r
+References: <87ioifb55d.fsf@nautilus.nautilus>\r
+ <cunbno62dga.fsf@gargravarr.hh.sledj.net>\r
+Mime-Version: 1.0\r
+Content-Type: text/plain; charset=utf-8\r
+Content-Transfer-Encoding: 8bit\r
+X-Complaints-To: usenet@ger.gmane.org\r
+X-Gmane-NNTP-Posting-Host: 151.62.83.181\r
+User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.51 (gnu/linux)\r
+Cancel-Lock: sha1:G8KHWWfaxEYN5uvFvjjyVTRbBNo=\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, 17 Nov 2014 16:56:21 -0000\r
+\r
+David Edmondson <dme@dme.org> writes:\r
+\r
+> How do you insert the signature? That is, do you have some bits of\r
+> configuration that add the signature to outgoing messages?\r
+\r
+Nothing special, just the following config snippet in my .gnus.el::\r
+\r
+ (setq gnus-posting-styles\r
+ '((".*"\r
+ (signature-file "~/.signature")\r
+ (name "Lele Gaifax")\r
+ (organization "Nautilus Entertainments"))))\r
+\r
+> Could you try this patch please?\r
+> \r
+> diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
+> index 6e03f1e..1592ca9 100644\r
+> --- a/emacs/notmuch-show.el\r
+> +++ b/emacs/notmuch-show.el\r
+> @@ -235,9 +235,9 @@ For example, if you wanted to remove an \"unread\" tag and add a\r
+> (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*"))))\r
+> (with-current-buffer buf\r
+> (let ((coding-system-for-read 'no-conversion))\r
+> - (call-process notmuch-command nil t nil "show" "--format=raw" id)\r
+> - ,@body)\r
+> - (kill-buffer buf))))))\r
+> + (call-process notmuch-command nil t nil "show" "--format=raw" id))\r
+> + ,@body)\r
+> + (kill-buffer buf)))))\r
+> \r
+> (defun notmuch-show-turn-on-visual-line-mode ()\r
+> "Enable Visual Line mode."\r
+\r
+Yes! This works great, with it the forward buffer contains the signature\r
+loaded with the correct encoding, and the sendmail succeeds without\r
+prompting about unreadable chars.\r
+\r
+Thanks a lot for fixing it,\r
+ciao, lele.\r
+-- \r
+nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri\r
+real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia.\r
+lele@metapensiero.it | -- Fortunato Depero, 1929.\r
+\r