[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 02 / 6629b92f91c469be001a71d6bec09ed3d56a78
1 Return-Path: <tomi.ollila@iki.fi>\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 arlo.cworth.org (Postfix) with ESMTP id 66D1B6DE1607\r
6  for <notmuch@notmuchmail.org>; Thu, 14 Jan 2016 02:33:22 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0.661\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.661 tagged_above=-999 required=5 tests=[AWL=0.009, \r
12  SPF_NEUTRAL=0.652] autolearn=disabled\r
13 Received: from arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id gpou1leArfDd for <notmuch@notmuchmail.org>;\r
16  Thu, 14 Jan 2016 02:33:19 -0800 (PST)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18  by arlo.cworth.org (Postfix) with ESMTP id 3F39A6DE091E\r
19  for <notmuch@notmuchmail.org>; Thu, 14 Jan 2016 02:33:18 -0800 (PST)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21  by guru.guru-group.fi (Postfix) with ESMTP id 529C0100080;\r
22  Thu, 14 Jan 2016 12:33:24 +0200 (EET)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: Erik Quaeghebeur <notmuch@equaeghe.nospammail.net>,\r
25  notmuch@notmuchmail.org\r
26 Subject: Re: Filesystem functionality used by notmuch\r
27 In-Reply-To: <10167591.o1RkUU4mKP@sysoppad>\r
28 References: <10167591.o1RkUU4mKP@sysoppad>\r
29 User-Agent: Notmuch/0.21+32~g73439f8 (http://notmuchmail.org) Emacs/24.3.1\r
30  (x86_64-unknown-linux-gnu)\r
31 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
32  $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
33  !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
34 Date: Thu, 14 Jan 2016 12:33:24 +0200\r
35 Message-ID: <m2egdk78nf.fsf@guru.guru-group.fi>\r
36 MIME-Version: 1.0\r
37 Content-Type: text/plain\r
38 X-BeenThere: notmuch@notmuchmail.org\r
39 X-Mailman-Version: 2.1.20\r
40 Precedence: list\r
41 List-Id: "Use and development of the notmuch mail system."\r
42  <notmuch.notmuchmail.org>\r
43 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
44  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
45 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
46 List-Post: <mailto:notmuch@notmuchmail.org>\r
47 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
48 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
49  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
50 X-List-Received-Date: Thu, 14 Jan 2016 10:33:22 -0000\r
51 \r
52 On Thu, Jan 14 2016, Erik Quaeghebeur <notmuch@equaeghe.nospammail.net> wrote:\r
53 \r
54 > Dear group,\r
55 >\r
56 >\r
57 > Context: FUSE filesystem for accessing data in a database.\r
58 >\r
59 > I understand that notmuch needs to be able to read a file given a\r
60 > filename (including its path). Are there any more requirements on the\r
61 > filesystem. For example, I assume that filename modification is optional\r
62 > (maildir flag changes). But perhaps notmuch makes use of times stored\r
63 > with files or some other file property?\r
64 \r
65 notmuch new uses directory (and may, or may not (did not check) file) times\r
66 to figure out new files appearing in fs.\r
67 \r
68 https://github.com/domo141/nottoomuch/blob/master/mboxviewfs.c is a FUSE \r
69 filesystem which shows files in one mbox file as separate files; it uses\r
70 the Date: header for the times of individual files and last per month\r
71 for a directory times (files are shown in .../yyyy-mm/ directory hierarchy).\r
72 \r
73 Tomi\r
74 \r
75 >\r
76 > Best,\r
77 >\r
78 > Erik\r