mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
Merge remote-tracking branch 'origin/master' into custom
This commit is contained in:
commit
61e493cf30
69 changed files with 2727 additions and 2128 deletions
|
|
@ -12,6 +12,7 @@ this.EXPORTED_SYMBOLS = ["getFolderProperties", "getSpecialFolderString",
|
|||
|
||||
Components.utils.import("resource:///modules/mailServices.js");
|
||||
Components.utils.import("resource:///modules/iteratorUtils.jsm");
|
||||
Components.utils.import("resource://gre/modules/Services.jsm");
|
||||
|
||||
/**
|
||||
* Returns a string representation of a folder's "special" type.
|
||||
|
|
@ -169,8 +170,18 @@ function allAccountsSorted(aExcludeIMAccounts) {
|
|||
return a.incomingServer.type != "im";
|
||||
});
|
||||
}
|
||||
|
||||
// Sort the accounts else will respect the order in mail.accountmanager.accounts
|
||||
if (!Services.prefs.getBoolPref("mail.accountmanager.accounts.ordered", false)) {
|
||||
accountList = accountList.sort(compareAccounts);
|
||||
}
|
||||
|
||||
return accountList.sort(compareAccounts);
|
||||
// Set "Local Folders" as always the first displayed account
|
||||
if (Services.prefs.getBoolPref("mail.accountmanager.localfolderfirst", false)) {
|
||||
accountList.unshift(accountList.splice(accountList.findIndex(item => item.key === "account1"), 1)[0]);
|
||||
}
|
||||
|
||||
return accountList;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue