2013-11-08 20:31:08 +00:00
|
|
|
.. -*- coding: utf-8-with-signature -*-
|
|
|
|
|
2010-10-15 05:29:13 +00:00
|
|
|
=========================
|
|
|
|
Filesystem-specific notes
|
|
|
|
=========================
|
|
|
|
|
|
|
|
1. ext3_
|
2008-08-21 20:59:01 +00:00
|
|
|
|
|
|
|
Tahoe storage servers use a large number of subdirectories to store their
|
|
|
|
shares on local disk. This format is simple and robust, but depends upon the
|
|
|
|
local filesystem to provide fast access to those directories.
|
|
|
|
|
2010-10-15 05:29:13 +00:00
|
|
|
ext3
|
|
|
|
====
|
2008-08-21 20:59:01 +00:00
|
|
|
|
|
|
|
For moderate- or large-sized storage servers, you'll want to make sure the
|
|
|
|
"directory index" feature is enabled on your ext3 directories, otherwise
|
|
|
|
share lookup may be very slow. Recent versions of ext3 enable this
|
2010-10-15 05:29:13 +00:00
|
|
|
automatically, but older filesystems may not have it enabled::
|
2008-08-21 20:59:01 +00:00
|
|
|
|
2010-10-15 05:29:13 +00:00
|
|
|
$ sudo tune2fs -l /dev/sda1 |grep feature
|
|
|
|
Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super large_file
|
2008-08-21 20:59:01 +00:00
|
|
|
|
|
|
|
If "dir_index" is present in the "features:" line, then you're all set. If
|
|
|
|
not, you'll need to use tune2fs and e2fsck to enable and build the index. See
|
2013-11-12 16:37:02 +00:00
|
|
|
`http://wiki2.dovecot.org/MailboxFormat/Maildir`_ for some hints.
|
2013-11-11 22:04:11 +00:00
|
|
|
|
2013-11-12 16:37:02 +00:00
|
|
|
.. _`http://wiki2.dovecot.org/MailboxFormat/Maildir`: http://wiki2.dovecot.org/MailboxFormat/Maildir
|