talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit c6dc3e229f361f11ab4920d84bb11b5821bc4e86
parent dc8728ee3222dbe49cdac81e6dc72b2ba206a046
Author: Colin Leroy <colin@colino.net>
Date:   Thu, 16 Oct 2014 14:35:46 +0200

Disable SSL3.0 entirely as a Poodle fix.

Diffstat:
Msrc/common/ssl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/ssl.c b/src/common/ssl.c @@ -323,7 +323,7 @@ gboolean ssl_init_socket(SockInfo *sockinfo) sockinfo->gnutls_priority, r); } else { - gnutls_priority_set_direct(session, "NORMAL", NULL); + gnutls_priority_set_direct(session, "NORMAL:-VERS-SSL3.0", NULL); } gnutls_record_disable_padding(session);