webmail: use the "threads: on" mode by default

with "threads: unread", there is a bit too much change between different times
of opening the mailbox. perhaps the mode wasn't a good idea...
This commit is contained in:
Mechiel Lukkien 2023-09-22 14:12:46 +02:00
parent 89c543f662
commit be5f804d5b
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1088,7 +1088,7 @@ const defaultSettings = {
mailboxCollapsed: {},
showAllHeaders: false,
showHeaders: [],
threading: api.ThreadMode.ThreadUnread,
threading: api.ThreadMode.ThreadOn,
checkConsistency: location.hostname === 'localhost', // Enable UI update consistency checks, default only for local development.
};
const parseSettings = () => {

View file

@ -137,7 +137,7 @@ const defaultSettings = {
mailboxCollapsed: {} as {[mailboxID: number]: boolean}, // Mailboxes that are collapsed.
showAllHeaders: false, // Whether to show all message headers.
showHeaders: [] as string[], // Additional message headers to show.
threading: api.ThreadMode.ThreadUnread,
threading: api.ThreadMode.ThreadOn,
checkConsistency: location.hostname === 'localhost', // Enable UI update consistency checks, default only for local development.
}
const parseSettings = (): typeof defaultSettings => {