commit 7b5fd8c94ebdf81b6d0e8893a75aa64d48e4cf53 Author: Sukhbir Singh sukhbir@torproject.org Date: Thu May 19 09:39:12 2016 -0400
Prevent third-party images from loading
In theory we can allow all images but in the context of Thunderbird, blocking third-party images should be fine. Earlier we were blocking all images but that isn't really required. --- components/torbirdy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/torbirdy.js b/components/torbirdy.js index eb64df6..a113323 100644 --- a/components/torbirdy.js +++ b/components/torbirdy.js @@ -352,7 +352,7 @@ var TorBirdyPrefs = { "gfx.downloadable_fonts.enabled": false,
// Disable remote images. - "permissions.default.image": 2, + "permissions.default.image": 3,
/* Finish
tor-commits@lists.torproject.org