Skip to content

Commit d5bef13

Browse files
sirainenslusarz
authored andcommitted
global: Add missing namespace section names
1 parent 4e3e416 commit d5bef13

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

data/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8786,7 +8786,7 @@ Must end with [[setting,namespace_separator]].
87868786
Example:
87878787
87888788
\`\`\`
8789-
namespace {
8789+
namespace shared {
87908790
prefix = Shared/
87918791
separator = /
87928792
}

docs/core/admin/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ pop3c_port = 995
257257
pop3c_ssl = starttls
258258
pop3c_port = 110
259259
260-
namespace {
260+
namespace pop3-migration {
261261
prefix = POP3-MIGRATION-NS/
262262
mail_driver = pop3c
263263
mail_path =

docs/core/config/namespaces.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ trouble with different IMAP clients. The `^` separator is troublesome with
182182
Thunderbird. If `\` has to be used, it needs to be escaped in configuration:
183183

184184
```[dovecot.conf]
185-
namespace {
185+
namespace inbox {
186186
separator = "\\"
187187
}
188188
```
@@ -226,7 +226,7 @@ mailboxes in Maildir format under `~/Maildir`, you can do this by creating two
226226
namespaces:
227227

228228
```[dovecot.conf]
229-
namespace {
229+
namespace inbox {
230230
separator = /
231231
prefix = "#mbox/"
232232
mail_driver = mbox
@@ -237,7 +237,7 @@ namespace {
237237
list = no
238238
}
239239
240-
namespace {
240+
namespace maildir {
241241
separator = /
242242
prefix =
243243
mail_driver = maildir
@@ -424,7 +424,7 @@ namespace inbox {
424424
}
425425
}
426426
427-
namespace {
427+
namespace shared {
428428
type = shared
429429
prefix = shared/$user/
430430
mail_driver = mdbox
@@ -434,7 +434,7 @@ namespace {
434434
subscriptions = no
435435
}
436436
437-
namespace {
437+
namespace public {
438438
type = public
439439
separator = /
440440
prefix = public/

docs/core/config/shared_mailboxes.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ mail_driver = maildir
4747
mail_path = ~/Maildir
4848
4949
# When creating any namespaces, you must also have a private namespace:
50-
namespace {
50+
namespace inbox {
5151
type = private
5252
separator = /
5353
prefix =
5454
# use global mail_path
5555
inbox = yes
5656
}
5757
58-
namespace {
58+
namespace public {
5959
type = public
6060
separator = /
6161
prefix = Public/
@@ -87,7 +87,7 @@ files, which contain only the message UIDs and the private flags. Currently the
8787
list of private flags is hardcoded only to the \\Seen flag.
8888

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

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

170170
```[dovecot.conf]
171-
namespace {
171+
namespace public {
172172
type = public
173173
separator = /
174174
prefix = Public/
@@ -179,7 +179,7 @@ namespace {
179179
subscriptions = no
180180
}
181181
182-
namespace {
182+
namespace public {
183183
type = public
184184
separator = /
185185
prefix = Team/
@@ -196,7 +196,7 @@ namespace {
196196
See [[plugin,acl]] for more information about ACLs.
197197

198198
```[dovecot.conf]
199-
namespace {
199+
namespace public {
200200
type = public
201201
separator = .
202202
prefix = public.
@@ -230,15 +230,15 @@ mail_driver = maildir
230230
mail_path = ~/Maildir
231231
232232
# When creating any namespaces, you must also have a private namespace:
233-
namespace {
233+
namespace inbox {
234234
type = private
235235
separator = /
236236
prefix =
237237
# use global mail_path
238238
inbox = yes
239239
}
240240
241-
namespace {
241+
namespace shared {
242242
type = shared
243243
separator = /
244244
prefix = shared/$user/

docs/core/plugins/virtual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Then, you'll have to create a [[link,namespaces,namespace]] for the virtual
3232
mailboxes, for example:
3333

3434
```[dovecot.conf]
35-
namespace {
35+
namespace virtual {
3636
prefix = virtual/
3737
separator = /
3838
mail_driver = virtual

docs/howto/virtual/postfix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ mail_plugins {
3939
quota = yes
4040
}
4141
42-
namespace {
42+
namespace inbox {
4343
type = private
4444
separator = /
4545
prefix =
4646
hidden = no
4747
inbox = yes
4848
}
4949
50-
namespace {
50+
namespace public {
5151
type = public
5252
separator = /
5353
prefix = Public/

docs/installation/upgrade/include/2.4-acls.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ With the following starting configuration:
44

55
::: code-group
66
```[dovecot.conf]
7-
namespace {
7+
namespace inbox {
88
prefix = INBOX/
99
separator = /
1010
}

0 commit comments

Comments
 (0)