Disable IMAP METADATA by default (hardly used)

This commit is contained in:
the-djmaze 2024-02-18 16:47:04 +01:00
parent 8a0b3d3791
commit 8a10d30f2a
2 changed files with 4 additions and 3 deletions

View file

@ -342,7 +342,7 @@ export class DomainPopupView extends AbstractViewPopup {
'STATUS=SIZE',
'THREAD'
]);
this.imapDisabled_capabilities(['PREVIEW','STATUS=SIZE']);
this.imapDisabled_capabilities(['METADATA','PREVIEW','STATUS=SIZE']);
forEachObjectEntry(domainDefaults, (key, value) => this[key](value));
this.enableSmartPorts(true);
if (oDomain) {

View file

@ -23,8 +23,9 @@
"security_level": 1
},
"disabled_capabilities": [
"STATUS=SIZE",
"PREVIEW"
"METADATA",
"PREVIEW",
"STATUS=SIZE"
],
"use_expunge_all_on_delete": false,
"fast_simple_search": true,