Skip to content

Commit

Permalink
Merge pull request #65 from fmarier/use-correct-apprep-pref
Browse files Browse the repository at this point in the history
Use the right pref for disabling remote lookups for downloads
  • Loading branch information
pyllyukko committed Oct 21, 2015
2 parents 7e72790 + c9b747d commit 05abedb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,11 @@ user_pref("browser.safebrowsing.enabled", true);
// http://kb.mozillazine.org/Browser.safebrowsing.malware.enabled
user_pref("browser.safebrowsing.malware.enabled", true);

// Disable safe browsing for downloaded files. this leaks information to google.
// Disable safe browsing remote lookups for downloaded files.
// This leaks information to google.
// https://www.mozilla.org/en-US/firefox/39.0/releasenotes/
user_pref("browser.safebrowsing.downloads.enabled", false);
// https://wiki.mozilla.org/Security/Application_Reputation
user_pref("browser.safebrowsing.downloads.remote.enabled", false);

// Disable pocket
// https://support.mozilla.org/en-US/kb/save-web-pages-later-pocket-firefox
Expand Down

0 comments on commit 05abedb

Please sign in to comment.