mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
Disable IMAP METADATA by default (hardly used)
This commit is contained in:
parent
8a0b3d3791
commit
8a10d30f2a
2 changed files with 4 additions and 3 deletions
|
@ -342,7 +342,7 @@ export class DomainPopupView extends AbstractViewPopup {
|
||||||
'STATUS=SIZE',
|
'STATUS=SIZE',
|
||||||
'THREAD'
|
'THREAD'
|
||||||
]);
|
]);
|
||||||
this.imapDisabled_capabilities(['PREVIEW','STATUS=SIZE']);
|
this.imapDisabled_capabilities(['METADATA','PREVIEW','STATUS=SIZE']);
|
||||||
forEachObjectEntry(domainDefaults, (key, value) => this[key](value));
|
forEachObjectEntry(domainDefaults, (key, value) => this[key](value));
|
||||||
this.enableSmartPorts(true);
|
this.enableSmartPorts(true);
|
||||||
if (oDomain) {
|
if (oDomain) {
|
||||||
|
|
|
@ -23,8 +23,9 @@
|
||||||
"security_level": 1
|
"security_level": 1
|
||||||
},
|
},
|
||||||
"disabled_capabilities": [
|
"disabled_capabilities": [
|
||||||
"STATUS=SIZE",
|
"METADATA",
|
||||||
"PREVIEW"
|
"PREVIEW",
|
||||||
|
"STATUS=SIZE"
|
||||||
],
|
],
|
||||||
"use_expunge_all_on_delete": false,
|
"use_expunge_all_on_delete": false,
|
||||||
"fast_simple_search": true,
|
"fast_simple_search": true,
|
||||||
|
|
Loading…
Reference in a new issue