--- /dev/null
+Return-Path: <ian@iankelling.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 17D71431FBC\r
+ for <notmuch@notmuchmail.org>; Mon, 7 Apr 2014 17:36:58 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.7\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
+ tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, RCVD_IN_DNSWL_LOW=-0.7]\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 3o4ORuMMopWx for <notmuch@notmuchmail.org>;\r
+ Mon, 7 Apr 2014 17:36:54 -0700 (PDT)\r
+Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com\r
+ [66.111.4.28])\r
+ (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
+ (No client certificate requested)\r
+ by olra.theworths.org (Postfix) with ESMTPS id 28661431FB6\r
+ for <notmuch@notmuchmail.org>; Mon, 7 Apr 2014 17:36:54 -0700 (PDT)\r
+Received: from compute1.internal (compute1.nyi.mail.srv.osa [10.202.2.41])\r
+ by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 5E6F720F69;\r
+ Mon, 7 Apr 2014 20:36:48 -0400 (EDT)\r
+Received: from frontend2 ([10.202.2.161])\r
+ by compute1.internal (MEProxy); Mon, 07 Apr 2014 20:36:48 -0400\r
+DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=\r
+ messagingengine.com; h=from:to:subject:date:message-id\r
+ :mime-version:content-type; s=smtpout; bh=EyLiQRXQJPu0KoQbx2mXLh\r
+ rJaFk=; b=TeMa73ClyyOrs3hVTvgLutaDtNEkkbhC6A6svHtYlh7A0JBnJbpNL+\r
+ C0xJy98Tb0HPF2RElXV8Dlc4mmCRhfAVDAd7e3adBj3sE6SLbgq0BH3Gqk6Ea3dq\r
+ dHsAXRVtQg+uH4c44rIjXc4JyXaz/2UA8y4vXft8pWNnhbQ5Ea0lk=\r
+X-Sasl-enc: tlL/d+OhXaCvnw58B517mQsh42JQlUIVYalaWqervlEy 1396917408\r
+Received: from treetowl.lan (unknown [67.160.118.141])\r
+ by mail.messagingengine.com (Postfix) with ESMTPA id 2A7F8680114\r
+ for <notmuch@notmuchmail.org>; Mon, 7 Apr 2014 20:36:48 -0400 (EDT)\r
+Received: by treetowl.lan (Postfix, from userid 1000)\r
+ id B8C711813BB; Mon, 7 Apr 2014 17:36:26 -0700 (PDT)\r
+From: Ian Kelling <ian@iankelling.org>\r
+To: notmuch@notmuchmail.org\r
+Subject: gnus-alias integration bug\r
+Date: Mon, 07 Apr 2014 17:36:26 -0700\r
+Message-ID: <87vbuk8xo5.fsf@treetowl.lan>\r
+User-Agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.4.50 (gnu/linux)\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\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: Tue, 08 Apr 2014 00:36:58 -0000\r
+\r
+gnus-alias allows you to set your identity based on the headers in the\r
+message you are replying. This is an essential feature in a mail client\r
+for me, I want to automatically reply as the person an email was sent to\r
+for certain addresses. This does not work in notmuch. gnus sets the\r
+variable message-reply-buffer when it sets up a message, which\r
+gnus-alias uses to go grab headers. It creates a buffer named\r
+*gnus article copy* which contains all the headers and the message body. It seems notmuch does not set this\r
+variable when it sets up a reply.\r
+\r
+Here is an example of a rule needed to do this.\r
+\r
+(setq gnus-alias-identity-rules\r
+ (quote\r
+ (("work"\r
+ ("to" "work@example.com" previous)\r
+ "workidentity"))))\r
+\r
+\r