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 92156429E2A for ; Wed, 25 May 2011 06:23:03 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.1 X-Spam-Level: X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1] 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 QRLUWt9jgN8D for ; Wed, 25 May 2011 06:23:02 -0700 (PDT) Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222]) by olra.theworths.org (Postfix) with ESMTP id C2E33431FD0 for ; Wed, 25 May 2011 06:23:02 -0700 (PDT) Received: from localhost.localdomain (thor.loria.fr [152.81.12.250]) by ks3536.kimsufi.com (Postfix) with ESMTPSA id 2F1A06A06A9; Wed, 25 May 2011 15:23:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net; s=key-schnouki; t=1306329782; bh=V7Y7Ki+BqioIfH526BE1c34V6FrrZCAdw6xyFGgsoi0=; h=From:To:Subject:Date:Message-Id:In-Reply-To:References; b=kbWI22l5emdEOx5QZ2Tj+2aqdrM8l7C5Q9dcUWcFPVFTJsFaxEQU1HgWjsc5wKyX+ 5AhrE3mN2M/d/rAwKxPhYeuuqMD2W/ixZi9PEbXKLhBz1KNTVUQdBCHBeK8uQ+J5ke Bn1ZFbiEkM+NW/tw5tAef7FCFuo3nPaB9utDnds4= From: Thomas Jost To: notmuch@notmuchmail.org Subject: [PATCH 1/4] emacs: Allow the user choose the "From" address when composing a new message from notmuch-show-mode too. Date: Wed, 25 May 2011 15:22:37 +0200 Message-Id: <1306329760-16665-1-git-send-email-schnouki@schnouki.net> X-Mailer: git-send-email 1.7.5.1 In-Reply-To: <87lixu7w71.fsf@thor.loria.fr> References: <87lixu7w71.fsf@thor.loria.fr> 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: Wed, 25 May 2011 13:23:03 -0000 --- emacs/notmuch-show.el | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 825988c..93f46ac 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -847,7 +847,8 @@ function is used. " (define-key map (kbd "") 'notmuch-show-previous-button) (define-key map (kbd "TAB") 'notmuch-show-next-button) (define-key map "s" 'notmuch-search) - (define-key map "m" 'notmuch-mua-mail) + (define-key map "m" 'notmuch-mua-new-mail) + (define-key map "M" 'notmuch-mua-new-mail-prompt-for-sender) (define-key map "f" 'notmuch-show-forward-message) (define-key map "r" 'notmuch-show-reply) (define-key map "|" 'notmuch-show-pipe-message) -- 1.7.5.1