dovecot-2.0-sslstream: login: Completely drop support for SSLv2.

dovecot at dovecot.org dovecot at dovecot.org
Sat Feb 13 02:59:10 EET 2010


details:   http://hg.dovecot.org/dovecot-2.0-sslstream/rev/449fa953210b
changeset: 10610:449fa953210b
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Jan 31 14:04:59 2010 +0200
description:
login: Completely drop support for SSLv2.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/login-common/ssl-proxy-openssl.c |    2 +-

diffs (12 lines):

diff -r 6799298bfa27 -r 449fa953210b src/login-common/ssl-proxy-openssl.c
--- a/src/login-common/ssl-proxy-openssl.c	Fri Jan 29 18:06:13 2010 +0200
+++ b/src/login-common/ssl-proxy-openssl.c	Sun Jan 31 14:04:59 2010 +0200
@@ -1098,7 +1098,7 @@ ssl_server_context_init(const struct log
 	ctx->cipher_list = p_strdup(pool, set->ssl_cipher_list);
 	ctx->verify_client_cert = set->ssl_verify_client_cert;
 
-	ctx->ctx = ssl_ctx = SSL_CTX_new(SSLv23_server_method());
+	ctx->ctx = ssl_ctx = SSL_CTX_new(SSLv3_server_method());
 	if (ssl_ctx == NULL)
 		i_fatal("SSL_CTX_new() failed");
 	xnames = ssl_proxy_ctx_init(ssl_ctx, set);


More information about the dovecot-cvs mailing list