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 28305431FC4 for ; Fri, 21 Jun 2013 22:48:08 -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 TxsxDRGG2o9y for ; Fri, 21 Jun 2013 22:48:02 -0700 (PDT) Received: from mail-pb0-f42.google.com (mail-pb0-f42.google.com [209.85.160.42]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 761FA431FCF for ; Fri, 21 Jun 2013 22:47:36 -0700 (PDT) Received: by mail-pb0-f42.google.com with SMTP id un1so8710048pbc.29 for ; Fri, 21 Jun 2013 22:47:35 -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=qrRqFZLW0ULPP7aggqgZgDkmByO61Ejm+3OZDqTZXtLmLgHdfyy+0a7NlU9ONrltpN Y0LM6g8xJ+dy7dUtdNpbNZ1S/ypPEZGBEQu1b0cjLOfCneDRKRx9hz7NuNRq9VYS8Zut QYJtfLRivqvzS3xZhwa7fgTTchcOFerzPx12IXNCAv9GtDXki3OzeLm/r1CpeaGNcm1K eZ8XN5guwt0Vlk6G+cchxfFwZ+mAVGx/YiMnO7qIG+IC3pOmCg9vaQEfZH9TMFPR5H8+ aBrKSCoNn4Idc3PpZHrdz4Uni0oTcc5Qkr0CXwmri0mMlOQ6uHAA7LZVa3IQ2hCypp+o G8XQ== X-Received: by 10.68.175.33 with SMTP id bx1mr15272145pbc.21.1371880055743; Fri, 21 Jun 2013 22:47:35 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPSA id b4sm5246227pbm.6.2013.06.21.22.47.33 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 21 Jun 2013 22:47:35 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v6 08/12] man: document insert --folder option Date: Sat, 22 Jun 2013 15:46:44 +1000 Message-Id: <1371880008-18312-9-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.12.1 In-Reply-To: <1371880008-18312-1-git-send-email-novalazy@gmail.com> References: <1371880008-18312-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: Sat, 22 Jun 2013 05:48:08 -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