blob: 279bdc158a8134d1acc73b45ab2611f101bf081c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Forbid application updates
lockPref("app.update.enabled", false);
// Use LANG environment variable to choose locale
pref("intl.locale.matchOS", true);
// Disable default mailer checking.
pref("mail.shell.checkDefaultMail", false);
// Don't disable our bundled extensions in the application directory
pref("extensions.autoDisableScopes", 11);
pref("extensions.shownSelectionUI", true);
|