vendor-prefs.js 606 B

123456789101112131415161718
  1. // Use LANG environment variable to choose locale
  2. pref("intl.locale.requested", "");
  3. // Use system-provided dictionaries
  4. pref("spellchecker.dictionary_path", "/usr/share/hunspell");
  5. // Disable default mailer checking
  6. pref("mail.shell.checkDefaultMail", false);
  7. // Don't disable our bundled extensions in the application directory
  8. pref("extensions.autoDisableScopes", 11);
  9. pref("extensions.shownSelectionUI", true);
  10. // Disable telemetry
  11. pref("datareporting.healthreport.uploadEnabled", false);
  12. pref("datareporting.policy.dataSubmissionEnabled", false);
  13. pref("toolkit.telemetry.archive.enabled", false);