diff options
author | Gaming4JC <g4jc@bulletmail.org> | 2018-11-05 20:14:40 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@bulletmail.org> | 2018-11-05 20:14:40 -0500 |
commit | c6b68efb26540e8f1d047d3f8d3da242e4f4f255 (patch) | |
tree | 870473332343745b75067bb6942d6b5cc79b0d64 | |
parent | 6853a1b8ef1b28001a398f95f46259e6413712ea (diff) | |
download | iceweasel-uxp-c6b68efb26540e8f1d047d3f8d3da242e4f4f255.tar.gz |
Enable opportunistic encryption by default
-rw-r--r-- | app/profile/iceweasel-uxp.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/profile/iceweasel-uxp.js b/app/profile/iceweasel-uxp.js index f671767..72b68c1 100644 --- a/app/profile/iceweasel-uxp.js +++ b/app/profile/iceweasel-uxp.js @@ -587,6 +587,10 @@ pref("network.captive-portal-service.enabled", true); // If true, network link events will change the value of navigator.onLine pref("network.manage-offline-status", true); +// Enable opportunistic encryption by default +pref("network.http.altsvc.oe", true); +pref("network.http.upgrade-insecure-requests", true); + // We want to make sure mail URLs are handled externally... pref("network.protocol-handler.external.mailto", true); // for mail pref("network.protocol-handler.external.news", true); // for news |