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 51DD6431FD4 for ; Tue, 24 Jul 2012 11:25:35 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=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 cpGGD7hIwJln for ; Tue, 24 Jul 2012 11:25:34 -0700 (PDT) Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 89E56431FB6 for ; Tue, 24 Jul 2012 11:25:33 -0700 (PDT) Received: by wgbdt14 with SMTP id dt14so5995257wgb.2 for ; Tue, 24 Jul 2012 11:25: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:x-mailer:in-reply-to:references; bh=VxPwOmTk+46kBo+2xrTYM2R3TFV4tbF53uNYTdoBRgs=; b=qEqWiKecpFIoTYI2bKmwZoV1sjnnah3FRfXPwx3aleyekL8n4YSyE5BuKJ3tVDZGSq mgiyhEeeeGaYzP+laSf+gIkv3ThDlglah63jmq8nPSUBwgdKHxE2dOqjqEJ+y3Tn45t2 z4ry3HadizkuSZXOFmNxiiz76oYIPtyKBJJwS11F/1BYLhTQkI67oOXxhUrjM3jXnESN Cg/NPINFU/BrbkmgaU1ocKkdU+rcTm8INpi2hdPrn7D5BLtTZz+AdG2ZD3ydGuw7LmJ0 qGmiUnKdjp1GTRakDZlMfQR3yQjjrIUQ//FuoqSZc6dlYTkvcu4eOTpjJhn5PJ1DQ94l ENmA== Received: by 10.180.100.133 with SMTP id ey5mr9287275wib.4.1343154332132; Tue, 24 Jul 2012 11:25:32 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id el6sm5496749wib.8.2012.07.24.11.25.30 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 24 Jul 2012 11:25:31 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v2 (rebased) 4/4] schemata: update for --body=true|false option Date: Tue, 24 Jul 2012 19:23:30 +0100 Message-Id: <1343154210-26841-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1343154210-26841-1-git-send-email-markwalters1009@gmail.com> References: <1343154210-26841-1-git-send-email-markwalters1009@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: Tue, 24 Jul 2012 18:25:35 -0000 Previously body: was a compulsory field in a message. The new --body=false option causes notmuch show to omit this field so update schemata to reflect this. --- devel/schemata | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/devel/schemata b/devel/schemata index 6677a1c..9cb25f5 100644 --- a/devel/schemata +++ b/devel/schemata @@ -47,7 +47,7 @@ message = { tags: [string*], headers: headers, - body: [part] + body?: [part] # omitted if --body=false } # A MIME part (format_part_json) -- 1.7.9.1