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 B93FF429E4C for ; Fri, 30 Mar 2012 16:16:49 -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 3Za8TYDZbxMQ for ; Fri, 30 Mar 2012 16:16:48 -0700 (PDT) Received: from mail-pz0-f45.google.com (mail-pz0-f45.google.com [209.85.210.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id E2A57429E53 for ; Fri, 30 Mar 2012 16:16:41 -0700 (PDT) Received: by mail-pz0-f45.google.com with SMTP id x6so56814dac.18 for ; Fri, 30 Mar 2012 16:16:41 -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=CBOxJ3LYn4/KmkAhO0u2aUAh04Fyp25qol9NddmPVd0=; b=a9OAgGWQPbYtgQc4A+SoI7f/VQymbWfFcHCt1ODE5dYUNzapRNiAjacCHAkj0AxMc5 omEQj7vuFwFWuuLjb1XCDUTHELTeLV6P8qmR2D1PQICsLPCOaJmKsPHkk1cuJjj62bs9 WG7oj1O+mk6XPP7SYFNietW4zgQYJg1JdQ279ctjamS92/iffcrhwyz+OLONQ0uqWZMP B50SToNqgeRdeAFC9jOK76h9SbHkJ08FLhI29wSyoTXyVYnUKEnnNqnNOea/funcwFMK 6qjj+0mga2q0ndMOJGJkT0gwrvN1kV7BbKTu9G+udvgdFQ4FL55nLgDWzqn8u57rzfI6 XBcg== Received: by 10.68.234.99 with SMTP id ud3mr1083988pbc.109.1333149401669; Fri, 30 Mar 2012 16:16:41 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPS id g8sm250512pbo.25.2012.03.30.16.16.38 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Mar 2012 16:16:40 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v2 5/5] man: Document 'config list' command Date: Sat, 31 Mar 2012 10:15:50 +1100 Message-Id: <1333149350-22616-6-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1333149350-22616-1-git-send-email-novalazy@gmail.com> References: <1332282698-7951-1-git-send-email-novalazy@gmail.com> <1333149350-22616-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: Fri, 30 Mar 2012 23:16:50 -0000 Document the 'config list' command and its output. --- man/man1/notmuch-config.1 | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/man/man1/notmuch-config.1 b/man/man1/notmuch-config.1 index 395cb9c..a55dbef 100644 --- a/man/man1/notmuch-config.1 +++ b/man/man1/notmuch-config.1 @@ -9,6 +9,8 @@ notmuch-config \- Access notmuch configuration file. .B notmuch config set .RI "<" section ">.<" item "> [" value " ...]" +.B notmuch config list + .SH DESCRIPTION The @@ -35,6 +37,18 @@ If no values are provided, the specified configuration item will be removed from the configuration file. .RE +.RS 4 +.TP 4 +.B list +Every configuration item is printed to stdout, each on a separate line +of the form: + +.RI "" section "." item "=" value + +No additional whitespace surrounds the dot or equals sign characters. In a +multiple-value item (a list), the values are separated by semicolon characters. +.RE + The available configuration items are described below. .RS 4 -- 1.7.4.4