From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 0DB8B431FD5 for ; Sat, 22 Jun 2013 21:25:20 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, 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 vFzapDLYJkKm for ; Sat, 22 Jun 2013 21:25:13 -0700 (PDT) Received: from mail-pa0-f41.google.com (mail-pa0-f41.google.com [209.85.220.41]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 6BF98429E3B for ; Sat, 22 Jun 2013 21:24:37 -0700 (PDT) Received: by mail-pa0-f41.google.com with SMTP id bj3so9644556pad.28 for ; Sat, 22 Jun 2013 21:24:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=G+N1Kng52/SZOxDbf6ewMw8j7so08lqtbLN5TcATT0E=; b=XsKrZI9So/ludUxNKwyxKGhFWg+JAz4p34oF6aLEq3FHClCCHBjPCxZJRNNeenBrTy buaJOH5BGpqniziYLPDH4caJHrId6ZY3QXkjec+54okJNbfAEhgLgM7D7EOc1bzPVAuO N4AOPm3qsNra52XOCPQxBBr5GjkSAu3GBLlx1oUKVX8aLtIbEOTo1TIsTFJpMWE0KJAt e5qeNY1E9vLYaU0YMJRRwAPzz4FtCaTfFAHIIWFKBAXDRkEzgIKXv0D/4GUEy2aGY/Rg NJSztwVnu1xcHBwU22yEt7Jb+ePiL7CFh96CqC8qKbtTfs4Gs4joPMatEnUsggB8jOZL wSUw== X-Received: by 10.68.135.35 with SMTP id pp3mr18571935pbb.116.1371961476651; Sat, 22 Jun 2013 21:24:36 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPSA id fl2sm13123766pab.23.2013.06.22.21.24.34 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 22 Jun 2013 21:24:35 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v7 08/12] man: document insert --folder option Date: Sun, 23 Jun 2013 14:24:01 +1000 Message-Id: <1371961445-15182-9-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.12.1 In-Reply-To: <1371961445-15182-1-git-send-email-novalazy@gmail.com> References: <1371961445-15182-1-git-send-email-novalazy@gmail.com> 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: Sun, 23 Jun 2013 04:25:20 -0000 Add documentation for notmuch insert --folder option. --- man/man1/notmuch-insert.1 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/man/man1/notmuch-insert.1 b/man/man1/notmuch-insert.1 index fbf83e0..e85fef8 100644 --- a/man/man1/notmuch-insert.1 +++ b/man/man1/notmuch-insert.1 @@ -4,6 +4,7 @@ notmuch-insert \- add a message to the maildir and notmuch database .SH SYNOPSIS .B notmuch insert +.RI "[" options "]" .RI "[ +<" tag> "|\-<" tag "> ... ]" .SH DESCRIPTION @@ -28,6 +29,19 @@ If the new message is a duplicate of an existing message in the database (it has same Message-ID), it will be added to the maildir folder and notmuch database, but the tags will not be changed. +Option arguments must appear before any tag operation arguments. +Supported options for +.B insert +include +.RS 4 +.TP 4 +.BI "--folder=<" folder ">" + +Deliver the message to the specified folder, +relative to the top-level directory given by the value of +\fBdatabase.path\fR. +The default is to deliver to the top-level directory. + .RE .SH EXIT STATUS -- 1.7.12.1