[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 91 / 63cd815d06bbcb23a7137f7f19581d4c91e8fa
1 Return-Path: <amthrax@drake.mit.edu>\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 EC2F6429E23\r
6         for <notmuch@notmuchmail.org>; Thu, 17 Feb 2011 23:59:09 -0800 (PST)\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\r
12         tests=[RCVD_IN_DNSWL_NONE=-0.0001] 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 2jyYQS4z0khA for <notmuch@notmuchmail.org>;\r
16         Thu, 17 Feb 2011 23:59:09 -0800 (PST)\r
17 Received: from dmz-mailsec-scanner-7.mit.edu (DMZ-MAILSEC-SCANNER-7.MIT.EDU\r
18         [18.7.68.36])\r
19         by olra.theworths.org (Postfix) with ESMTP id 6BE42431FD0\r
20         for <notmuch@notmuchmail.org>; Thu, 17 Feb 2011 23:59:09 -0800 (PST)\r
21 X-AuditID: 12074424-b7b0bae000000a05-49-4d5e26cc6d37\r
22 Received: from mailhub-auth-4.mit.edu ( [18.7.62.39])\r
23         by dmz-mailsec-scanner-7.mit.edu (Symantec Brightmail Gateway) with\r
24         SMTP id FC.70.02565.CC62E5D4; Fri, 18 Feb 2011 02:59:08 -0500 (EST)\r
25 Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103])\r
26         by mailhub-auth-4.mit.edu (8.13.8/8.9.2) with ESMTP id p1I7x7Pr009316; \r
27         Fri, 18 Feb 2011 02:59:07 -0500\r
28 Received: from drake.mit.edu\r
29         (209-6-116-242.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com\r
30         [209.6.116.242]) (authenticated bits=0)\r
31         (User authenticated as amdragon@ATHENA.MIT.EDU)\r
32         by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id p1I7x54I001510\r
33         (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NOT);\r
34         Fri, 18 Feb 2011 02:59:07 -0500 (EST)\r
35 Received: from amthrax by drake.mit.edu with local (Exim 4.72)\r
36         (envelope-from <amthrax@drake.mit.edu>)\r
37         id 1PqLF3-0008L2-8U; Fri, 18 Feb 2011 02:59:05 -0500\r
38 From: Austin Clements <amdragon@MIT.EDU>\r
39 To: notmuch@notmuchmail.org\r
40 Subject: [PATCH 00/10] Fix 'notmuch new' atomicity issues\r
41 Date: Fri, 18 Feb 2011 02:58:50 -0500\r
42 Message-Id: <1298015940-31986-1-git-send-email-amdragon@mit.edu>\r
43 X-Mailer: git-send-email 1.7.2.3\r
44 X-Brightmail-Tracker: AAAAAA==\r
45 Cc: amdragon@mit.edu\r
46 X-BeenThere: notmuch@notmuchmail.org\r
47 X-Mailman-Version: 2.1.13\r
48 Precedence: list\r
49 List-Id: "Use and development of the notmuch mail system."\r
50         <notmuch.notmuchmail.org>\r
51 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
53 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
54 List-Post: <mailto:notmuch@notmuchmail.org>\r
55 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
56 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
57         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
58 X-List-Received-Date: Fri, 18 Feb 2011 07:59:10 -0000\r
59 \r
60 This patch series modifies notmuch new to perform all operations\r
61 atomically and to perform maildir flag synchronization eagerly.  As a\r
62 result, notmuch new can be interrupted without risking database\r
63 consistency or losing track of messages, but still without losing\r
64 progress in the middle of a big import.  This also paves the way for\r
65 fixing the antisocial locking behavior of notmuch new.\r
66 \r
67 While there are quite a few patches in the series, each one is\r
68 bite-sized and you can see the number of atomicity violations dropping\r
69 with nearly every patch using the test added by the first patch.\r
70 \r
71 On my test machine, these patches have no affect on performance.\r
72 \r
73 These patches are also available on the atomic-new-v1 branch at\r
74  http://awakening.csail.mit.edu/git/notmuch.git/\r
75 \r