blob: 6d64a84c01633f6460ac9594d0ad8655d16c6fae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
namespace inbox {
separator = /
mail_driver = sdbox
mail_path = ~/inbox
inbox = yes
list = yes
}
namespace foo {
separator = /
prefix = foo/
mail_driver = sdbox
mail_path = ~/foo
inbox = no
list = yes
}
namespace bar {
separator = /
prefix = bar/
mail_driver = sdbox
mail_path = ~/bar
inbox = no
list = yes
}
namespace baz {
separator = /
prefix = baz/
mail_driver = sdbox
mail_path = ~/baz
inbox = no
list = yes
}
|