aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-10-31 19:00:36 +0100
committerKim Alvefur <zash@zash.se>2013-10-31 19:00:36 +0100
commit45ecf509edc30aa6f83d87323d87b2b9c8104bb4 (patch)
tree33984340cf3057aa28b1a34f35a57716776b131a /core/certmanager.lua
parent3b6c5dc15e2d6d3cd2b3d56efdedb192734c8639 (diff)
downloadprosody-45ecf509edc30aa6f83d87323d87b2b9c8104bb4.tar.gz
prosody-45ecf509edc30aa6f83d87323d87b2b9c8104bb4.zip
certmanager: Disable SSLv3 by default
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 350fb837..e820c914 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -33,7 +33,7 @@ module "certmanager"
local default_ssl_config = configmanager.get("*", "ssl");
local default_capath = "/etc/ssl/certs";
local default_verify = (ssl and ssl.x509 and { "peer", "client_once", }) or "none";
-local default_options = { "no_sslv2", luasec_has_noticket and "no_ticket" or nil };
+local default_options = { "no_sslv2", "no_sslv3", luasec_has_noticket and "no_ticket" or nil };
local default_verifyext = { "lsec_continue", "lsec_ignore_purpose" };
if ssl and not luasec_has_verifyext and ssl.x509 then