Skip to content

Commit 7796c69

Browse files
Sergey-Kitovfleischie
authored andcommitted
data: Change imap_capability setting to boollist.
1 parent 3733977 commit 7796c69

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

data/settings.js

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5914,17 +5914,24 @@ Directory for writing raw log data for debugging purposes.`
59145914

59155915
imap_capability: {
59165916
tags: [ 'imap' ],
5917-
values: setting_types.STRING,
5917+
values: setting_types.BOOLLIST,
59185918
text: `
59195919
Override the IMAP CAPABILITY response.
59205920
5921-
If the value begins with the \`+\` character, the capabilities listed here
5922-
are added at the end of the default string.
5921+
Example of modifying capability banner by adding QUOTA and ACL, and removing IDLE:
59235922
5924-
Example:
5923+
\`\`\`
5924+
imap_capability {
5925+
QUOTA = yes
5926+
ACL = yes
5927+
IDLE = no
5928+
}
5929+
\`\`\`
5930+
5931+
Example of setting capability banner to exactly IMAP4rev1 SASL-IR IDLE:
59255932
59265933
\`\`\`
5927-
imap_capability = +XFOO XBAR
5934+
imap_capability = IMAP4rev1 SASL-IR IDLE
59285935
\`\`\``
59295936
},
59305937

0 commit comments

Comments
 (0)