[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 30 / d83e67eb1229b960c5db46d327d30afc40d4c6
1 Return-Path: <wsh@resox.2x.cz>\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 80FD040D173\r
6         for <notmuch@notmuchmail.org>; Sun, 31 Oct 2010 14:48:33 -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: -1.9\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5\r
12         tests=[BAYES_00=-1.9] autolearn=ham\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 SpmETygshsTN for <notmuch@notmuchmail.org>;\r
16         Sun, 31 Oct 2010 14:48:19 -0700 (PDT)\r
17 Received: from smtp.nextra.cz (smtp.nextra.cz [212.65.193.3])\r
18         by olra.theworths.org (Postfix) with ESMTP id 6EEF040D16A\r
19         for <notmuch@notmuchmail.org>; Sun, 31 Oct 2010 14:48:02 -0700 (PDT)\r
20 Received: from resox.2x.cz (unknown [213.29.198.144])\r
21         by smtp.nextra.cz (Postfix) with ESMTP id 2BDCB88C7D;\r
22         Sun, 31 Oct 2010 22:29:56 +0100 (CET)\r
23 Received: from wsh by resox.2x.cz with local (Exim 4.72)\r
24         (envelope-from <wsh@resox.2x.cz>)\r
25         id 1PCfTF-0004vc-Mo; Sun, 31 Oct 2010 22:29:45 +0100\r
26 From: Michal Sojka <sojkam1@fel.cvut.cz>\r
27 To: notmuch@notmuchmail.org\r
28 Subject: [PATCH v4 0/4] Maildir synchronization\r
29 Date: Sun, 31 Oct 2010 22:29:14 +0100\r
30 Message-Id: <1288560558-18915-1-git-send-email-sojkam1@fel.cvut.cz>\r
31 X-Mailer: git-send-email 1.7.1\r
32 In-Reply-To: <87tyk3vpxd.fsf@wsheee.2x.cz>\r
33 References: <87tyk3vpxd.fsf@wsheee.2x.cz>\r
34 X-BeenThere: notmuch@notmuchmail.org\r
35 X-Mailman-Version: 2.1.13\r
36 Precedence: list\r
37 List-Id: "Use and development of the notmuch mail system."\r
38         <notmuch.notmuchmail.org>\r
39 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
40         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
41 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
42 List-Post: <mailto:notmuch@notmuchmail.org>\r
43 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
44 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
46 X-List-Received-Date: Sun, 31 Oct 2010 21:48:33 -0000\r
47 \r
48 This is the next iteration of maildir synchronization patches. The\r
49 changes are:\r
50 - Configuration is now simplified. The synchronization can only be\r
51   full enabled or disabled. By default it is still disabled.\r
52 - Added test for notmuch restore (with enabled synchronization)\r
53 - Rebased to the current master\r
54 - 'D' flag is mapped to 'deleted' tag instead of 'delete' (this has\r
55   already been in v3)\r
56 \r
57 Can be pulled by\r
58 git pull git://rtime.felk.cvut.cz/notmuch tags/maildir-sync-v4\r
59 \r
60 Michal Sojka (4):\r
61   lib: Return added message even if it already was in the database\r
62   Maildir synchronization\r
63   Make maildir synchronization configurable\r
64   Tests for maildir synchronization\r
65 \r
66  lib/database-private.h |    2 +-\r
67  lib/database.cc        |   19 ++++-\r
68  lib/message.cc         |  226 ++++++++++++++++++++++++++++++++++++++++++++++\r
69  lib/notmuch-private.h  |    4 +\r
70  lib/notmuch.h          |   16 +++-\r
71  notmuch-client.h       |    7 ++\r
72  notmuch-config.c       |   49 ++++++++++\r
73  notmuch-new.c          |    7 ++-\r
74  notmuch-restore.c      |    2 +\r
75  notmuch-setup.c        |   10 ++\r
76  notmuch-tag.c          |    2 +\r
77  test/maildir-sync      |  231 ++++++++++++++++++++++++++++++++++++++++++++++++\r
78  test/notmuch-test      |    3 +-\r
79  test/test-lib.sh       |   14 +++-\r
80  14 files changed, 585 insertions(+), 7 deletions(-)\r
81  create mode 100755 test/maildir-sync\r
82 \r