We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 897b17c commit 65c7e02Copy full SHA for 65c7e02
docs/core/settings/syntax.md
@@ -349,7 +349,22 @@ after it. For example:
349
```[dovecot.conf]
350
@mysql = default
351
mysql_host = mysql2.example.com # override the default mysql_host
352
+```
353
+
354
+Note that explicit settings always override group settings. For example this
355
+is not possible:
356
357
+```[dovecot.conf]
358
+mailbox trash {
359
+ name = Trash
360
+}
361
362
+group @mailboxes finnish {
363
+ mailbox trash {
364
+ name = Roskakori
365
+ }
366
367
+@mailboxes = finnish # Does not work - name is still Trash
368
```
369
370
It's possible to override groups using the command line parameter `-o` or
0 commit comments