summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSukhbir Singh <sukhbir@torproject.org>2017-03-18 01:58:04 -0400
committerSukhbir Singh <sukhbir@torproject.org>2017-03-18 01:58:04 -0400
commitc0e12ccb97ac07861417bbffbac58f95557bc23c (patch)
treeb9acb507a68dc33e099e4746c4f888f8c615d84d
parent3313298262c384d6deeab8a79218c6d32883e147 (diff)
Bug 20751: Enforce stronger ciphers in TorBirdy
-rw-r--r--components/torbirdy.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/torbirdy.js b/components/torbirdy.js
index 64ab390..c1bb474 100644
--- a/components/torbirdy.js
+++ b/components/torbirdy.js
@@ -123,7 +123,8 @@ var TorBirdyPrefs = {
"security.enable_ssl3": false,
// Thunderbird 23.0 uses the following preference.
// https://bugs.torproject.org/11253
- "security.tls.version.min": 1,
+ // March 2017: See https://bugs.torproject.org/20751
+ "security.tls.version.min": 3,
"security.tls.version.max": 3,
// Display a dialog warning the user when entering an insecure site from a secure one.
"security.warn_entering_weak": true,