mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
4.6 KiB

  1. // Blocklist preferences
  2. pref("extensions.blocklist.enabled", false);
  3. pref("extensions.blocklist.interval", 0);
  4. pref("extensions.blocklist.url", "");
  5. pref("extensions.blocklist.detailsURL", "http://%LOCALE%.www.mozilla.com/%LOCALE%/blocklist/");
  6. pref("app.update.enabled", false);
  7. pref("app.update.auto", false);
  8. // Defines how the Application Update Service notifies the user about updates:
  9. //
  10. // AUM Set to: Minor Releases: Major Releases:
  11. // 0 download no prompt download no prompt
  12. // 1 download no prompt download no prompt if no incompatibilities
  13. // 2 download no prompt prompt
  14. //
  15. // See chart in nsUpdateService.js.in for more details
  16. pref("app.update.mode", 2);
  17. // If set to true, the Update Service will present no UI for any event.
  18. pref("app.update.silent", false);
  19. // Update service URL:
  20. pref("app.update.url", "https://aus2.mozilla.org/update/2/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/update.xml");
  21. // Interval: Time between checks for a new version (in seconds)
  22. // default=1 day
  23. pref("app.update.interval", 0);
  24. // Interval: Time before prompting the user to download a new version that
  25. // is available (in seconds) default=1 day
  26. pref("app.update.nagTimer.download", 0);
  27. // Interval: Time before prompting the user to restart to install the latest
  28. // download (in seconds) default=30 minutes
  29. pref("app.update.nagTimer.restart", 0);
  30. // Interval: When all registered timers should be checked (in milliseconds)
  31. // default=5 seconds
  32. pref("app.update.timer", 0);
  33. pref("extensions.update.enabled", false);
  34. pref("browser.shell.checkDefaultBrowser", false);
  35. // 0 = blank, 1 = home (browser.startup.homepage), 2 = last visited page, 3 = resume previous browser session
  36. // The behavior of option 3 is detailed at: http://wiki.mozilla.org/Session_Restore
  37. pref("browser.startup.page", 0);
  38. pref("browser.startup.homepage", "about:blank");
  39. pref("browser.startup.homepage_override.mstone", "ignore");
  40. pref("browser.cache.disk.capacity", 0);
  41. // search engines URL
  42. pref("browser.search.searchEnginesURL", "");
  43. // pointer to the default engine name
  44. pref("browser.search.defaultenginename", "chrome://browser-region/locale/region.properties");
  45. // send ping to the server to update
  46. pref("browser.search.update", false);
  47. // disable search suggestions by default
  48. pref("browser.search.suggest.enabled", false);
  49. // handle external links
  50. // 0=default window, 1=current window/tab, 2=new window, 3=new tab in most recent window
  51. pref("browser.link.open_newwindow", 3);
  52. // 3 at the end of the tabstrip
  53. pref("browser.tabs.closeButtons", 3);
  54. // Scripts & Windows prefs
  55. pref("dom.disable_window_open_feature.location", true);
  56. pref("dom.disable_window_status_change", true);
  57. pref("dom.disable_window_move_resize", true);
  58. pref("dom.disable_window_flip", true);
  59. // popups.policy 1=allow,2=reject
  60. pref("privacy.popups.policy", 2);
  61. pref("privacy.popups.usecustom", true);
  62. pref("privacy.popups.firstTime", true);
  63. pref("privacy.popups.showBrowserMessage", true);
  64. pref("privacy.item.history", true);
  65. pref("privacy.item.formdata", true);
  66. pref("privacy.item.passwords", true);
  67. pref("privacy.item.downloads", true);
  68. pref("privacy.item.cookies", true);
  69. pref("privacy.item.cache", true);
  70. pref("privacy.item.siteprefs", true);
  71. pref("privacy.item.sessions", true);
  72. pref("privacy.sanitize.sanitizeOnShutdown", true);
  73. pref("privacy.sanitize.promptOnSanitize", false);
  74. pref("network.cookie.enableForCurrentSessionOnly", true);
  75. pref("accessibility.typeaheadfind", true);
  76. pref("accessibility.typeaheadfind.timeout", 5000);
  77. pref("accessibility.typeaheadfind.linksonly", false);
  78. pref("accessibility.typeaheadfind.flashBar", 1);
  79. pref("layout.spellcheckDefault", 0);
  80. pref("browser.safebrowsing.enabled", false);
  81. pref("browser.safebrowsing.remoteLookups", false);
  82. // Tor stuff
  83. pref("network.proxy.http", "localhost");
  84. pref("network.proxy.http_port", 8118);
  85. pref("network.proxy.socks", "localhost");
  86. pref("network.proxy.socks_port", 9050);
  87. pref("network.proxy.socks_remote_dns", true);
  88. pref("network.proxy.ssl", "localhost");
  89. pref("network.proxy.ssl_port", 8118);
  90. pref("network.proxy.type", 1);
  91. pref("extensions.torbutton.http_port", 8118);
  92. pref("extensions.torbutton.http_proxy", "localhost");
  93. pref("extensions.torbutton.https_port", 8118);
  94. pref("extensions.torbutton.https_proxy", "localhost");
  95. pref("extensions.torbutton.socks_host", "localhost");
  96. pref("extensions.torbutton.socks_port", 9050);
  97. pref("extensions.torbutton.cookie_jars", true);
  98. pref("extensions.torbutton.clear_cookies", false);