Displaying 1 result from an estimated 1 matches for "namespaces_foo_mbox".
2005 Apr 08
3
Upcoming configuration file changes
...'s an example:
# config process reads something like:
mmap_disable = yes
namespace foo {
type = private
separator = /
mbox {
dir = ~/mail
mbox_read_locks = dotlock
}
}
# sends out:
mmap_disable = yes
namespaces = foo
namespaces_foo_type = private
namespaces_foo_separator = /
namespaces_foo_mbox = 1
namespaces_foo_mbox_1_dir = ~/mail
namespaces_foo_mbox_1_mbox_read_locks = dotlock
- Config process should verify that all given settings are valid so
that typos are noticed. This may not be that easy because the setting
definitions are distributed all around the source code. I think there
ne...