database error
[notmuch-archives.git] / b4 / aa5a3671f03cb3872653cf7d323fb878ffb3a9
1 Return-Path: <awg@lagos.xvx.ca>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 5FD71431FDA\r
6         for <notmuch@notmuchmail.org>; Sun, 18 Mar 2012 09:33:12 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id cUe9F3YIq00A for <notmuch@notmuchmail.org>;\r
16         Sun, 18 Mar 2012 09:33:11 -0700 (PDT)\r
17 Received: from smtp-out-04.shaw.ca (smtp-out-04.shaw.ca [64.59.134.12])\r
18         by olra.theworths.org (Postfix) with ESMTP id 291E9431E62\r
19         for <notmuch@notmuchmail.org>; Sun, 18 Mar 2012 09:33:02 -0700 (PDT)\r
20 Received: from lb7f8hsrpno-svcs.dcs.int.inet (HELO pd6ml1no-ssvc.prod.shaw.ca)\r
21         ([10.0.144.222])\r
22         by pd5mo1no-svcs.prod.shaw.ca with ESMTP; 18 Mar 2012 10:33:00 -0600\r
23 X-Cloudmark-SP-Filtered: true\r
24 X-Cloudmark-SP-Result: v=1.1 cv=Cufqhujp69hR+MhiHu40yK/USb/hlYs0+irVU46A6+k=\r
25         c=1 sm=1\r
26         a=yoWor0WcDrsA:10 a=BLceEmwcHowA:10 a=yQp6g8lIsgqumF79BAsFDg==:17\r
27         a=DgdU8Ar0EezpiEXugsgA:9 a=ys3i4kPKAKdt6LCgFAAA:7\r
28         a=HpAAvcLHHh0Zw7uRqdWCyQ==:117\r
29 Received: from unknown (HELO lagos.xvx.ca) ([96.52.216.56])\r
30         by pd6ml1no-dmz.prod.shaw.ca with ESMTP; 18 Mar 2012 10:33:00 -0600\r
31 Received: by lagos.xvx.ca (Postfix, from userid 1000)\r
32         id 232F5800483F; Sun, 18 Mar 2012 10:33:00 -0600 (MDT)\r
33 From: Adam Wolfe Gordon <awg+notmuch@xvx.ca>\r
34 To: notmuch@notmuchmail.org\r
35 Subject: [PATCH v8 05/11] schemata: Add documentation for JSON reply format.\r
36 Date: Sun, 18 Mar 2012 10:32:37 -0600\r
37 Message-Id: <1332088363-22476-6-git-send-email-awg+notmuch@xvx.ca>\r
38 X-Mailer: git-send-email 1.7.5.4\r
39 In-Reply-To: <1332088363-22476-1-git-send-email-awg+notmuch@xvx.ca>\r
40 References: <87fwd6kqtv.fsf@zancas.localnet>\r
41         <1332088363-22476-1-git-send-email-awg+notmuch@xvx.ca>\r
42 X-BeenThere: notmuch@notmuchmail.org\r
43 X-Mailman-Version: 2.1.13\r
44 Precedence: list\r
45 List-Id: "Use and development of the notmuch mail system."\r
46         <notmuch.notmuchmail.org>\r
47 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
49 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
50 List-Post: <mailto:notmuch@notmuchmail.org>\r
51 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
52 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
54 X-List-Received-Date: Sun, 18 Mar 2012 16:33:12 -0000\r
55 \r
56 ---\r
57  devel/schemata |   27 +++++++++++++++++++++++++--\r
58  1 files changed, 25 insertions(+), 2 deletions(-)\r
59 \r
60 diff --git a/devel/schemata b/devel/schemata\r
61 index 24ad775..728a46f 100644\r
62 --- a/devel/schemata\r
63 +++ b/devel/schemata\r
64 @@ -77,8 +77,9 @@ part = {\r
65      content?:       string\r
66  }\r
67  \r
68 -# The headers of a message (format_headers_json with raw headers) or\r
69 -# a part (format_headers_message_part_json with pretty-printed headers)\r
70 +# The headers of a message (format_headers_json with raw headers\r
71 +# and reply = FALSE) or a part (format_headers_message_part_json\r
72 +# with pretty-printed headers)\r
73  headers = {\r
74      Subject:        string,\r
75      From:           string,\r
76 @@ -136,3 +137,25 @@ thread = {\r
77                                # matched and unmatched\r
78      subject:        string\r
79  }\r
80 +\r
81 +notmuch reply schema\r
82 +--------------------\r
83 +\r
84 +reply = {\r
85 +    # The headers of the constructed reply (format_headers_json with\r
86 +    # raw headers and reply = TRUE)\r
87 +    reply-headers: reply_headers,\r
88 +\r
89 +    # As in the show format (format_part_json)\r
90 +    original: message\r
91 +}\r
92 +\r
93 +reply_headers = {\r
94 +    Subject:        string,\r
95 +    From:           string,\r
96 +    To?:            string,\r
97 +    Cc?:            string,\r
98 +    Bcc?:           string,\r
99 +    In-reply-to:    string,\r
100 +    References:     string\r
101 +}\r
102 -- \r
103 1.7.5.4\r
104 \r