mirror of
https://github.com/mjl-/mox.git
synced 2025-01-28 07:15:55 +03:00
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:
parent
89c543f662
commit
be5f804d5b
2 changed files with 2 additions and 2 deletions
|
@ -1088,7 +1088,7 @@ const defaultSettings = {
|
||||||
mailboxCollapsed: {},
|
mailboxCollapsed: {},
|
||||||
showAllHeaders: false,
|
showAllHeaders: false,
|
||||||
showHeaders: [],
|
showHeaders: [],
|
||||||
threading: api.ThreadMode.ThreadUnread,
|
threading: api.ThreadMode.ThreadOn,
|
||||||
checkConsistency: location.hostname === 'localhost', // Enable UI update consistency checks, default only for local development.
|
checkConsistency: location.hostname === 'localhost', // Enable UI update consistency checks, default only for local development.
|
||||||
};
|
};
|
||||||
const parseSettings = () => {
|
const parseSettings = () => {
|
||||||
|
|
|
@ -137,7 +137,7 @@ const defaultSettings = {
|
||||||
mailboxCollapsed: {} as {[mailboxID: number]: boolean}, // Mailboxes that are collapsed.
|
mailboxCollapsed: {} as {[mailboxID: number]: boolean}, // Mailboxes that are collapsed.
|
||||||
showAllHeaders: false, // Whether to show all message headers.
|
showAllHeaders: false, // Whether to show all message headers.
|
||||||
showHeaders: [] as string[], // Additional message headers to show.
|
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.
|
checkConsistency: location.hostname === 'localhost', // Enable UI update consistency checks, default only for local development.
|
||||||
}
|
}
|
||||||
const parseSettings = (): typeof defaultSettings => {
|
const parseSettings = (): typeof defaultSettings => {
|
||||||
|
|
Loading…
Reference in a new issue