vendor-prefs.js 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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);
  14. // Disable Social API for content
  15. pref("social.remote-install.enabled", false);
  16. pref("social.toast-notifications.enabled", false);
  17. // Make sure that whitelisted and directory installs are empty
  18. pref("social.whitelist", "");
  19. pref("social.directories", "");
  20. // Disable the GeoLocation API for content
  21. pref("geo.enabled", false);
  22. // TODO: this "whats new" page should be in the branding package or abslibre
  23. // Pointing the "Help -> What's new" menu entry to mozilla.debian.net
  24. //pref("mailnews.start_page.override_url", "http://wiki.debian.org/Icedove/WhatsNew45");