Skip to content

Commit a4f48ad

Browse files
Sergey-Kitovsirainen
authored andcommitted
data: Change imap_capability setting to boollist.
1 parent 7d81e26 commit a4f48ad

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
@@ -5906,17 +5906,24 @@ Directory for writing raw log data for debugging purposes.`
59065906

59075907
imap_capability: {
59085908
tags: [ 'imap' ],
5909-
values: setting_types.STRING,
5909+
values: setting_types.BOOLLIST,
59105910
text: `
59115911
Override the IMAP CAPABILITY response.
59125912
5913-
If the value begins with the \`+\` character, the capabilities listed here
5914-
are added at the end of the default string.
5913+
Example of modifying capability banner by adding QUOTA and ACL, and removing IDLE:
59155914
5916-
Example:
5915+
\`\`\`
5916+
imap_capability {
5917+
QUOTA = yes
5918+
ACL = yes
5919+
IDLE = no
5920+
}
5921+
\`\`\`
5922+
5923+
Example of setting capability banner to exactly IMAP4rev1 SASL-IR IDLE:
59175924
59185925
\`\`\`
5919-
imap_capability = +XFOO XBAR
5926+
imap_capability = IMAP4rev1 SASL-IR IDLE
59205927
\`\`\``
59215928
},
59225929

0 commit comments

Comments
 (0)