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 09AB9431FD2 for ; Thu, 24 Jan 2013 04:10:07 -0800 (PST) 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 1TJdu9wMJEKP for ; Thu, 24 Jan 2013 04:10:05 -0800 (PST) Received: from mail-pb0-f49.google.com (mail-pb0-f49.google.com [209.85.160.49]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id F2B2B431FC3 for ; Thu, 24 Jan 2013 04:09:54 -0800 (PST) Received: by mail-pb0-f49.google.com with SMTP id un15so5357718pbc.22 for ; Thu, 24 Jan 2013 04:09:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=EaqLsszmClBE/rfhaKb/xp11nECPhQVkg4uCzqgtH+Y=; b=vN0zecl6DkID55Mb/s3dFd7IrXDI2KY6b8p72RdW9tGeCtpECPp8bb417Qaj9OB+Ib oVGx/9vUjy4d4Iiu+Mz+p6/5cII8DHG6i2Ukv9voC4A+dZArz7mrZlOIPznY1/UVUf9U RSpW8iYMbmaY42fYzKwrCGICCWWbwjcwA++gEwuzwwH+fBFHiJpkE1uqZeyhgjO3+mpg WlUrcRVkneFxVsUYsHVFmwbTinz8HW807nYdmuI82Rv7Pj8vHxAu6HR7x5rYORuG8fMU Q1l8a4XcYm6CzAlTe4WI5HXC+dndZ3Gh9hOw8n9h91O/95TEPIkdlHLg5QbdsvBuUbua PjSg== X-Received: by 10.68.189.66 with SMTP id gg2mr4146261pbc.111.1359029394227; Thu, 24 Jan 2013 04:09:54 -0800 (PST) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPS id o5sm15610201pay.5.2013.01.24.04.09.52 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 24 Jan 2013 04:09:53 -0800 (PST) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v4 08/12] man: document insert --folder option Date: Thu, 24 Jan 2013 23:08:04 +1100 Message-Id: <1359029288-12132-9-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.12.1 In-Reply-To: <1359029288-12132-1-git-send-email-novalazy@gmail.com> References: <1359029288-12132-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: Thu, 24 Jan 2013 12:10:07 -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 387e274..27c2658 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 @@ -27,6 +28,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 SEE ALSO -- 1.7.12.1