Skip to content

Commit 94e5054

Browse files
sirainenslusarz
authored andcommitted
global: Fix config syntax errors setting named list filters
1 parent 07fad6d commit 94e5054

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/core/config/auth/databases/oauth2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ the [[setting,oauth2]] named filter.
3131

3232
::: code-group
3333
```[dovecot.conf]
34-
auth_mechanisms = {
34+
auth_mechanisms {
3535
oauthbearer = yes
3636
xoauth2 = yes
3737
}

docs/core/config/auth/databases/prefetch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ you might want to use [[link,auth_staticdb]] instead of prefetch.
3636
```[dovecot.conf]
3737
passdb ldap {
3838
...
39-
fields = {
39+
fields {
4040
user = %{ldap:uid}
4141
password = %{ldap:userPassword}
4242
userdb_home = %{ldap:homeDirectory}
@@ -52,7 +52,7 @@ userdb prefetch {
5252
# The userdb below is used only by LDA.
5353
userdb ldap {
5454
...
55-
fields = {
55+
fields {
5656
home = %{ldap:homeDirectory}
5757
uid = %{ldap:uidNumber}
5858
gid = %{ldap:gidNumber}

docs/core/config/auth/mechanisms/gssapi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ KVNO Principal
7676
Once you have a keytab, configure GSSAPI on Dovecot.
7777

7878
```[dovecot.conf]
79-
auth_mechanisms = {
79+
auth_mechanisms {
8080
gssapi = yes
8181
}
8282
auth_gssapi_hostname = hostname-from-spn # or "$ALL"

docs/core/config/delivery/lmtp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ By general convention, LMTP is expected to listen on port 24.
4242

4343
```[dovecot.conf]
4444
# add lmtp to protocols, otherwise its listeners are ignored
45-
protocols = {
45+
protocols {
4646
lmtp = yes
4747
}
4848

docs/core/settings/variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ For best results, you should leave salt and IV management to Dovecot.
407407
### Examples
408408

409409
```[dovecot.conf]
410-
import_environment = {
410+
import_environment {
411411
SECRET_KEY = %{env:SECRET_KEY}
412412
}
413413
imapc_password = "%{literal('s=3-?I&-a|,r=10000$e80e6ab3c18c0da69b20bf201eaf6269$') | decrypt(key=env:SECRET_KEY)}"

0 commit comments

Comments
 (0)