Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -8785,7 +8785,7 @@ Must end with [[setting,namespace_separator]].
Example:

\`\`\`
namespace {
namespace shared {
prefix = Shared/
separator = /
}
Expand Down
2 changes: 1 addition & 1 deletion docs/core/admin/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ pop3c_port = 995
pop3c_ssl = starttls
pop3c_port = 110

namespace {
namespace pop3-migration {
prefix = POP3-MIGRATION-NS/
mail_driver = pop3c
mail_path =
Expand Down
10 changes: 5 additions & 5 deletions docs/core/config/namespaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ trouble with different IMAP clients. The `^` separator is troublesome with
Thunderbird. If `\` has to be used, it needs to be escaped in configuration:

```[dovecot.conf]
namespace {
namespace inbox {
separator = "\\"
}
```
Expand Down Expand Up @@ -226,7 +226,7 @@ mailboxes in Maildir format under `~/Maildir`, you can do this by creating two
namespaces:

```[dovecot.conf]
namespace {
namespace inbox {
separator = /
prefix = "#mbox/"
mail_driver = mbox
Expand All @@ -237,7 +237,7 @@ namespace {
list = no
}

namespace {
namespace maildir {
separator = /
prefix =
mail_driver = maildir
Expand Down Expand Up @@ -424,7 +424,7 @@ namespace inbox {
}
}

namespace {
namespace shared {
type = shared
prefix = shared/$user/
mail_driver = mdbox
Expand All @@ -434,7 +434,7 @@ namespace {
subscriptions = no
}

namespace {
namespace public {
type = public
separator = /
prefix = public/
Expand Down
18 changes: 9 additions & 9 deletions docs/core/config/shared_mailboxes.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ mail_driver = maildir
mail_path = ~/Maildir

# When creating any namespaces, you must also have a private namespace:
namespace {
namespace inbox {
type = private
separator = /
prefix =
# use global mail_path
inbox = yes
}

namespace {
namespace public {
type = public
separator = /
prefix = Public/
Expand Down Expand Up @@ -87,7 +87,7 @@ files, which contain only the message UIDs and the private flags. Currently the
list of private flags is hardcoded only to the \\Seen flag.

```[dovecot.conf]
namespace {
namespace public {
type = public
separator = /
prefix = Public/
Expand Down Expand Up @@ -133,7 +133,7 @@ If you have a read-only directory structure containing mbox files,
you'll need to store index files elsewhere:

```[dovecot.conf]
namespace {
namespace public {
type = public
prefix = Public/
mail_driver = mbox
Expand Down Expand Up @@ -168,7 +168,7 @@ is however possible to use shared control files but per-user index
files, assuming you've set up permissions properly.

```[dovecot.conf]
namespace {
namespace public {
type = public
separator = /
prefix = Public/
Expand All @@ -179,7 +179,7 @@ namespace {
subscriptions = no
}

namespace {
namespace public {
type = public
separator = /
prefix = Team/
Expand All @@ -196,7 +196,7 @@ namespace {
See [[plugin,acl]] for more information about ACLs.

```[dovecot.conf]
namespace {
namespace public {
type = public
separator = .
prefix = public.
Expand Down Expand Up @@ -230,15 +230,15 @@ mail_driver = maildir
mail_path = ~/Maildir

# When creating any namespaces, you must also have a private namespace:
namespace {
namespace inbox {
type = private
separator = /
prefix =
# use global mail_path
inbox = yes
}

namespace {
namespace shared {
type = shared
separator = /
prefix = shared/$user/
Expand Down
2 changes: 1 addition & 1 deletion docs/core/plugins/virtual.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Then, you'll have to create a [[link,namespaces,namespace]] for the virtual
mailboxes, for example:

```[dovecot.conf]
namespace {
namespace virtual {
prefix = virtual/
separator = /
mail_driver = virtual
Expand Down
4 changes: 2 additions & 2 deletions docs/howto/virtual/postfix.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ mail_plugins {
quota = yes
}

namespace {
namespace inbox {
type = private
separator = /
prefix =
hidden = no
inbox = yes
}

namespace {
namespace public {
type = public
separator = /
prefix = Public/
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/upgrade/include/2.4-acls.inc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ With the following starting configuration:

::: code-group
```[dovecot.conf]
namespace {
namespace inbox {
prefix = INBOX/
separator = /
}
Expand Down