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 06253431FBF for ; Fri, 23 Aug 2013 19:55:41 -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 EvSt7GNo592H for ; Fri, 23 Aug 2013 19:55:35 -0700 (PDT) Received: from mail-qe0-f41.google.com (mail-qe0-f41.google.com [209.85.128.41]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id A9C8E431FDB for ; Fri, 23 Aug 2013 19:55:32 -0700 (PDT) Received: by mail-qe0-f41.google.com with SMTP id x7so754505qeu.14 for ; Fri, 23 Aug 2013 19:55:32 -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:in-reply-to:references; bh=jfQl5Sh4B62ATlS6O9F9Fkh8W7YRm8U+2dNmgTE8tds=; b=kDqyfoTzmoHraHHLcGNpA2M9gM4wfNwLFth432oZx9jN1YeO/sGhDcQYIlwALg8als GcYyZHBsDwKC5F4CUo70FKrohMRrV6JbH3Lv0sCncMUMU0v+VxGOrqRu31fRPOY4Wj23 5zvVuUgj6xPEeplSzEPkl8HiEbe+p3EDHFcFgpM06ng/TcEH7nxVpil8vq90zlQNaNna 7r0WkYN7O6xWAgiqiMiVhoHiJWvZdVOsmRJu4Jshm/IXfzE1uT5CxbTgsxzuNmvLOypM GpMyQXA6tDFIjL6TIuotoglE+50dbKNQcV45Sfp/tILav7OugAIL/SdVCmkZnqSfDJ/B /vsQ== X-Received: by 10.224.169.3 with SMTP id w3mr2504371qay.13.1377312932186; Fri, 23 Aug 2013 19:55:32 -0700 (PDT) Received: from localhost.localdomain (pool-108-8-228-201.spfdma.east.verizon.net. [108.8.228.201]) by mx.google.com with ESMTPSA id a2sm4350757qek.7.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 23 Aug 2013 19:55:31 -0700 (PDT) From: Ben Gamari To: notmuch@notmuchmail.org Subject: [PATCH 3/3] notmuch-compact: Add man page Date: Fri, 23 Aug 2013 22:55:23 -0400 Message-Id: <1377312923-32274-4-git-send-email-bgamari.foss@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1377312923-32274-1-git-send-email-bgamari.foss@gmail.com> References: <1377312923-32274-1-git-send-email-bgamari.foss@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, 24 Aug 2013 02:55:41 -0000 Signed-off-by: Ben Gamari --- man/Makefile.local | 1 + man/man1/notmuch-compact.1 | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 man/man1/notmuch-compact.1 diff --git a/man/Makefile.local b/man/Makefile.local index 216aaa0..57910b7 100644 --- a/man/Makefile.local +++ b/man/Makefile.local @@ -8,6 +8,7 @@ MAIN_PAGE := $(dir)/man1/notmuch.1 MAN1 := \ $(MAIN_PAGE) \ + $(dir)/man1/notmuch-compact.1 \ $(dir)/man1/notmuch-config.1 \ $(dir)/man1/notmuch-count.1 \ $(dir)/man1/notmuch-dump.1 \ diff --git a/man/man1/notmuch-compact.1 b/man/man1/notmuch-compact.1 new file mode 100644 index 0000000..48f76c3 --- /dev/null +++ b/man/man1/notmuch-compact.1 @@ -0,0 +1,33 @@ +.TH NOTMUCH-COMPACT 1 2013-08-23 "Notmuch 0.16" +.SH NAME +notmuch-compact \- compact the notmuch database +.SH SYNOPSIS + +.B notmuch compact + +.SH DESCRIPTION + +The +.B compact +command can be used to compact the notmuch database. This can both reduce +the space required by the database and improve performance. + +The compacted database is built in a temporary directory and is later +moved into the place of the origin database. The original uncompacted +database is preserved to be deleted by the user as desired. + +.RE +.SH ENVIRONMENT +The following environment variables can be used to control the +behavior of notmuch. +.TP +.B NOTMUCH_CONFIG +Specifies the location of the notmuch configuration file. Notmuch will +use ${HOME}/.notmuch\-config if this variable is not set. +.SH SEE ALSO + +\fBnotmuch\fR(1), \fBnotmuch-count\fR(1), \fBnotmuch-dump\fR(1), +\fBnotmuch-hooks\fR(5), \fBnotmuch-insert\fR(1), \fBnotmuch-new\fR(1), +\fBnotmuch-reply\fR(1), \fBnotmuch-restore\fR(1), \fBnotmuch-search\fR(1), +\fBnotmuch-search-terms\fR(7), \fBnotmuch-show\fR(1), +\fBnotmuch-tag\fR(1) -- 1.8.1.2