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 4ED38429E48 for ; Thu, 26 May 2011 16:32:44 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 1.424 X-Spam-Level: * X-Spam-Status: No, score=1.424 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=2.223, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 5n6WRz-22X7o for ; Thu, 26 May 2011 16:32:42 -0700 (PDT) Received: from mail-ww0-f67.google.com (mail-ww0-f67.google.com [74.125.82.67]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 4DA4D429E45 for ; Thu, 26 May 2011 16:32:40 -0700 (PDT) Received: by wwa36 with SMTP id 36so198396wwa.2 for ; Thu, 26 May 2011 16:32:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=bjGbot4IAjRU9btiNxcJA1+bg9ufp7g6yB5D1EWrucI=; b=vA4eaSScsVkOcatxzQKa9R3GlSU8DvB5ovFLLBhXXCvvv4h4yGMv/RNLioTuithESd KAFhEq3lBdaX1Dr26UkdRPhN+xPTncGtd6iuGW1/f/R0owQIMLXbCQWW3P6u9mT1DM8n LCNrz3OskzYg3WFHhYwnaqRFaPTvAt04bX6hI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=e7KRL3bn62kij9PDz/u0rPDLp5desmCxm9u84zWFx7jL3GTbWnEG5doxv/gLSGCFza j10vaRPIR/hVIlx9f7FZGC9E/KT/2KAMB8703TeNoHq6IGir3mAJAh0NFTPt5kYZP0td n9joQutwN41xRSX5lBUMEfxrE7ACkER81YXoc= Received: by 10.227.139.143 with SMTP id e15mr1431970wbu.5.1306452759079; Thu, 26 May 2011 16:32:39 -0700 (PDT) Received: from localhost.localdomain (93-97-25-209.zone5.bethere.co.uk [93.97.25.209]) by mx.google.com with ESMTPS id fw15sm804800wbb.27.2011.05.26.16.32.37 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 26 May 2011 16:32:38 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v2 2/3] Documentation changes for --reply-to= option to notmuch reply. Date: Fri, 27 May 2011 00:31:56 +0100 Message-Id: <1306452717-19934-3-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <87pqn5cg4g.fsf@yoom.home.cworth.org> References: <87pqn5cg4g.fsf@yoom.home.cworth.org> 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: Thu, 26 May 2011 23:32:44 -0000 --- notmuch.1 | 13 +++++++++++++ notmuch.c | 10 ++++++++++ 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/notmuch.1 b/notmuch.1 index a1c7fa8..c434e77 100644 --- a/notmuch.1 +++ b/notmuch.1 @@ -388,6 +388,19 @@ Includes subject and quoted message body. .BR headers\-only Only produces In\-Reply\-To, References, To, Cc, and Bcc headers. .RE +.RE +.RS +.TP 4 +.BR \-\-reply\-to= ( sender | all ) +.RS +.TP 4 +.BR sender +Replies only to the sender (or to all addresses in the To header if +the sending address is one of the user's email addresses). +.TP +.BR all " (default)" +Replies to all addresses. +.RE See the .B "SEARCH SYNTAX" diff --git a/notmuch.c b/notmuch.c index 262d677..631f8e7 100644 --- a/notmuch.c +++ b/notmuch.c @@ -338,6 +338,16 @@ static command_t commands[] = { "\t\t\tOnly produces In-Reply-To, References, To\n" "\t\t\tCc, and Bcc headers.\n" "\n" + "\t--reply-to=(sender|all)\n" + "\n" + "\t\tsender:\n" + "\t\t\tReplies only to the sender (or to all addresses in the\n" + "\t\t\tTo header if the sending address is one of the user's\n" + "\t\t\temail addresses).\n" + "\n" + "\t\tall: (default)\n" + "\t\t\tReplies to all recipients.\n" + "\n" "\tSee \"notmuch help search-terms\" for details of the search\n" "\tterms syntax." }, { "tag", notmuch_tag_command, -- 1.7.2.5