commit d4fac5bc054c8d6130bfd5d7c07d45e6a80e543c Author: Mike Perry mikeperry-git@torproject.org Date: Wed Dec 11 19:29:23 2013 -0800
fixup! Tor Browser's Firefox preference overrides.
The damn datareporting service still asks you if you want to report data unless you set all three of these prefs (even though datareporting.healthreport.service.enabled is supposed to disable all of it). --- browser/app/profile/000-tor-browser.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index 63440c4..1d30d34 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -40,7 +40,9 @@ pref("browser.safebrowsing.enabled", false); pref("browser.safebrowsing.malware.enabled", false); pref("browser.download.manager.scanWhenDone", false); // prevents AV remote reporting of downloads pref("extensions.ui.lastCategory", "addons://list/extension"); -pref("datareporting.healthreport.service.enabled", false); +pref("datareporting.healthreport.service.enabled", false); // Yes, all three of these must be set +pref("datareporting.healthreport.uploadEnabled", false); +pref("datareporting.policy.dataSubmissionEnabled", false); pref("security.mixed_content.block_active_content", false); // Disable until https://bugzilla.mozilla.org/show_bug.cgi?id=878890 is patched
// Fingerprinting