diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-09-30 00:48:24 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-09-30 00:48:39 +0200 |
commit | 656fe7b3b6601ebd9a83838677e17f0ca366af05 (patch) | |
tree | a5c0f156e780b612b4462bff0be7d1880f7e3ba0 /roles/IMAP/files | |
parent | c9b1e5b047096f55070702f79ce7777faf8fa670 (diff) |
IMAP: Store virtual indexes in memory.
Diffstat (limited to 'roles/IMAP/files')
-rw-r--r-- | roles/IMAP/files/etc/dovecot/conf.d/10-mail.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/IMAP/files/etc/dovecot/conf.d/10-mail.conf b/roles/IMAP/files/etc/dovecot/conf.d/10-mail.conf index 902f58b..cd59ebf 100644 --- a/roles/IMAP/files/etc/dovecot/conf.d/10-mail.conf +++ b/roles/IMAP/files/etc/dovecot/conf.d/10-mail.conf @@ -63,41 +63,41 @@ namespace inbox { # If namespace is hidden, it's not advertised to clients via NAMESPACE # extension. You'll most likely also want to set list=no. This is mostly # useful when converting from another server with different namespaces which # you want to deprecate but still keep working. For example you can create # hidden namespaces with prefixes "~/mail/", "~%u/mail/" and "mail/". #hidden = no # Show the mailboxes under this namespace with LIST command. This makes the # namespace visible for clients that don't support NAMESPACE extension. # "children" value lists child mailboxes, but hides the namespace prefix. #list = yes # Namespace handles its own subscriptions. If set to "no", the parent # namespace handles them (empty prefix should always have this as "yes") #subscriptions = yes } namespace virtual { prefix = virtual/ separator = / - location = virtual:/etc/dovecot/virtual:INDEX=~/virtual + location = virtual:/etc/dovecot/virtual:INDEX=MEMORY list = yes hidden = no subscriptions = no } # Example shared namespace configuration #namespace { #type = shared #separator = / # Mailboxes are visible under "shared/user@domain/" # %%n, %%d and %%u are expanded to the destination user. #prefix = shared/%%u/ # Mail location for other users' mailboxes. Note that %variables and ~/ # expands to the logged in user's data. %%n, %%d, %%u and %%h expand to the # destination user's data. #location = maildir:%%h/Maildir:INDEX=~/Maildir/shared/%%u # Use the default namespace for saving subscriptions. |