mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-26 22:36:51 +00:00
[MailNews] Allow ordering of accounts to respect mail.accountmanager.accounts
This commit is contained in:
@@ -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,14 @@ 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", true)) {
|
||||
accountList = accountList.sort(compareAccounts);
|
||||
}
|
||||
|
||||
return accountList.sort(compareAccounts);
|
||||
|
||||
return accountList;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -431,6 +431,7 @@ pref("mail.default_sendlater_uri", "mailbox://nobody@Local%20Folders/Unsent%20Me
|
||||
|
||||
pref("mail.smtpservers", "");
|
||||
pref("mail.accountmanager.accounts", "");
|
||||
pref("mail.accountmanager.accounts.ordered", true);
|
||||
|
||||
// Last used account key value
|
||||
pref("mail.account.lastKey", 0);
|
||||
|
||||
Reference in New Issue
Block a user