]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Added an example shared namespace.
authorTimo Sirainen <tss@iki.fi>
Fri, 21 Nov 2008 15:08:58 +0000 (17:08 +0200)
committerTimo Sirainen <tss@iki.fi>
Fri, 21 Nov 2008 15:08:58 +0000 (17:08 +0200)
--HG--
branch : HEAD

dovecot-example.conf

index 44adf1aafffc41e28ca04a86eb72733786fe2b31..81b0b94cd73aea385f42a0d85a8113f1f366f7a6 100644 (file)
 
    # 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
    #subscriptions = yes
 #}
 
+# Example shared namespace configuration
+#namespace 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.
+   #subscriptions = no
+
+   # List the shared/ namespace only if there are visible shared mailboxes.
+   #list = children
+#}
+
 # System user and group used to access mails. If you use multiple, userdb
 # can override these by returning uid or gid fields. You can use either numbers
 # or names. <doc/wiki/UserIds>