mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
Drop use_imap_list_subscribe and use 'HideUnsubscribed' = false
This prevents user questions regarding: "my folders are missing"
This commit is contained in:
parent
661e937fd1
commit
5757d8d464
11 changed files with 26 additions and 37 deletions
|
|
@ -3,7 +3,7 @@ import { koComputable } from 'External/ko';
|
|||
|
||||
import { Layout, EditorDefaultType } from 'Common/EnumsUser';
|
||||
import { pInt, addObservablesTo } from 'Common/Utils';
|
||||
import { $htmlCL, Settings, SettingsGet } from 'Common/Globals';
|
||||
import { $htmlCL, SettingsGet } from 'Common/Globals';
|
||||
import { ThemeStore } from 'Stores/Theme';
|
||||
|
||||
export const SettingsUserStore = new class {
|
||||
|
|
@ -34,7 +34,7 @@ export const SettingsUserStore = new class {
|
|||
allowDraftAutosave: 1,
|
||||
useThreads: 0,
|
||||
replySameFolder: 0,
|
||||
hideUnsubscribed: 1,
|
||||
hideUnsubscribed: 0,
|
||||
autoLogout: 0
|
||||
});
|
||||
|
||||
|
|
@ -74,13 +74,13 @@ export const SettingsUserStore = new class {
|
|||
self.messageReadDelay(pInt(SettingsGet('MessageReadDelay')));
|
||||
self.autoLogout(pInt(SettingsGet('AutoLogout')));
|
||||
|
||||
self.showImages(!!SettingsGet('ShowImages'));
|
||||
self.removeColors(!!SettingsGet('RemoveColors'));
|
||||
self.useCheckboxesInList(!!SettingsGet('UseCheckboxesInList'));
|
||||
self.allowDraftAutosave(!!SettingsGet('AllowDraftAutosave'));
|
||||
self.useThreads(!!SettingsGet('UseThreads'));
|
||||
self.replySameFolder(!!SettingsGet('ReplySameFolder'));
|
||||
self.showImages(SettingsGet('ShowImages'));
|
||||
self.removeColors(SettingsGet('RemoveColors'));
|
||||
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
|
||||
self.allowDraftAutosave(SettingsGet('AllowDraftAutosave'));
|
||||
self.useThreads(SettingsGet('UseThreads'));
|
||||
self.replySameFolder(SettingsGet('ReplySameFolder'));
|
||||
|
||||
self.hideUnsubscribed(Settings.app('useImapSubscribe') && SettingsGet('HideUnsubscribed'));
|
||||
self.hideUnsubscribed(SettingsGet('HideUnsubscribed'));
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue