diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-03-19 17:04:07 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-03-19 17:04:07 +0000 |
commit | 149ff68acf23059bea839a662be8b02949d0487d (patch) | |
tree | a1e774283773c06adc503b61d8f1099226e2ec50 /mail/dovecot | |
parent | f9087ca5d75f0fc3d521cdb3caeee2e8af2de2a3 (diff) | |
download | ports-149ff68acf23059bea839a662be8b02949d0487d.tar.gz ports-149ff68acf23059bea839a662be8b02949d0487d.zip |
Notes
Diffstat (limited to 'mail/dovecot')
-rw-r--r-- | mail/dovecot/Makefile | 2 | ||||
-rw-r--r-- | mail/dovecot/files/patch-src__login-common__ssl-proxy-openssl.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index c0adcba95e55..f942ced0b669 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -3,7 +3,7 @@ PORTNAME= dovecot PORTVERSION= 1.2.17 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ \ http://www.rename-it.nl/dovecot/${PORTVERSION:R}/ diff --git a/mail/dovecot/files/patch-src__login-common__ssl-proxy-openssl.c b/mail/dovecot/files/patch-src__login-common__ssl-proxy-openssl.c new file mode 100644 index 000000000000..b2a7adcdbb15 --- /dev/null +++ b/mail/dovecot/files/patch-src__login-common__ssl-proxy-openssl.c @@ -0,0 +1,11 @@ +--- src/login-common/ssl-proxy-openssl.c.orig 2015-03-19 11:57:04.578367000 -0500 ++++ src/login-common/ssl-proxy-openssl.c 2015-03-19 11:57:21.859436000 -0500 +@@ -818,7 +818,7 @@ static void ssl_proxy_ctx_init(SSL_CTX * + { + const char *cafile; + +- SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL); ++ SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3); + + cafile = getenv("SSL_CA_FILE"); + if (cafile != NULL) { |