Re: Filesystem functionality used by notmuch
authorTomi Ollila <tomi.ollila@iki.fi>
Thu, 14 Jan 2016 10:33:24 +0000 (12:33 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 23:20:52 +0000 (16:20 -0700)
02/6629b92f91c469be001a71d6bec09ed3d56a78 [new file with mode: 0644]

diff --git a/02/6629b92f91c469be001a71d6bec09ed3d56a78 b/02/6629b92f91c469be001a71d6bec09ed3d56a78
new file mode 100644 (file)
index 0000000..fe140b2
--- /dev/null
@@ -0,0 +1,78 @@
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 66D1B6DE1607\r
+ for <notmuch@notmuchmail.org>; Thu, 14 Jan 2016 02:33:22 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.661\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.661 tagged_above=-999 required=5 tests=[AWL=0.009, \r
+ SPF_NEUTRAL=0.652] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id gpou1leArfDd for <notmuch@notmuchmail.org>;\r
+ Thu, 14 Jan 2016 02:33:19 -0800 (PST)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 3F39A6DE091E\r
+ for <notmuch@notmuchmail.org>; Thu, 14 Jan 2016 02:33:18 -0800 (PST)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+ by guru.guru-group.fi (Postfix) with ESMTP id 529C0100080;\r
+ Thu, 14 Jan 2016 12:33:24 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: Erik Quaeghebeur <notmuch@equaeghe.nospammail.net>,\r
+ notmuch@notmuchmail.org\r
+Subject: Re: Filesystem functionality used by notmuch\r
+In-Reply-To: <10167591.o1RkUU4mKP@sysoppad>\r
+References: <10167591.o1RkUU4mKP@sysoppad>\r
+User-Agent: Notmuch/0.21+32~g73439f8 (http://notmuchmail.org) Emacs/24.3.1\r
+ (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+ $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+ !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Thu, 14 Jan 2016 12:33:24 +0200\r
+Message-ID: <m2egdk78nf.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Thu, 14 Jan 2016 10:33:22 -0000\r
+\r
+On Thu, Jan 14 2016, Erik Quaeghebeur <notmuch@equaeghe.nospammail.net> wrote:\r
+\r
+> Dear group,\r
+>\r
+>\r
+> Context: FUSE filesystem for accessing data in a database.\r
+>\r
+> I understand that notmuch needs to be able to read a file given a\r
+> filename (including its path). Are there any more requirements on the\r
+> filesystem. For example, I assume that filename modification is optional\r
+> (maildir flag changes). But perhaps notmuch makes use of times stored\r
+> with files or some other file property?\r
+\r
+notmuch new uses directory (and may, or may not (did not check) file) times\r
+to figure out new files appearing in fs.\r
+\r
+https://github.com/domo141/nottoomuch/blob/master/mboxviewfs.c is a FUSE \r
+filesystem which shows files in one mbox file as separate files; it uses\r
+the Date: header for the times of individual files and last per month\r
+for a directory times (files are shown in .../yyyy-mm/ directory hierarchy).\r
+\r
+Tomi\r
+\r
+>\r
+> Best,\r
+>\r
+> Erik\r