Software / code / prosody
Changeset
5896:019130907a07
Merge 0.9 -> 0.10
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 31 Oct 2013 20:47:57 +0100 |
| parents | 5894:9e47ece9457c (current diff) 5895:1b0ac7950129 (diff) |
| children | 5897:296e32a1ff33 5903:0e0aab930e10 |
| files | core/certmanager.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/certmanager.lua Thu Oct 31 00:53:59 2013 +0100 +++ b/core/certmanager.lua Thu Oct 31 20:47:57 2013 +0100 @@ -37,7 +37,7 @@ capath = "/etc/ssl/certs"; protocol = "sslv23"; verify = (ssl and ssl.x509 and { "peer", "client_once", }) or "none"; - options = { "no_sslv2", luasec_has_noticket and "no_ticket" or nil }; + options = { "no_sslv2", "no_sslv3", luasec_has_noticket and "no_ticket" or nil }; verifyext = { "lsec_continue", "lsec_ignore_purpose" }; curve = "secp384r1"; ciphers = "HIGH:!DSS:!aNULL@STRENGTH";