summaryrefslogtreecommitdiff
path: root/network/emailrelay/patches/b79f2cb7c70d7c311162cb9d38b3921b76ddae3d.patch
diff options
context:
space:
mode:
Diffstat (limited to 'network/emailrelay/patches/b79f2cb7c70d7c311162cb9d38b3921b76ddae3d.patch')
-rw-r--r--network/emailrelay/patches/b79f2cb7c70d7c311162cb9d38b3921b76ddae3d.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/network/emailrelay/patches/b79f2cb7c70d7c311162cb9d38b3921b76ddae3d.patch b/network/emailrelay/patches/b79f2cb7c70d7c311162cb9d38b3921b76ddae3d.patch
deleted file mode 100644
index 3e0f6f2115..0000000000
--- a/network/emailrelay/patches/b79f2cb7c70d7c311162cb9d38b3921b76ddae3d.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From b79f2cb7c70d7c311162cb9d38b3921b76ddae3d Mon Sep 17 00:00:00 2001
-From: Andrew Clemons <andrew.clemons@gmail.com>
-Date: Thu, 5 May 2016 12:55:02 +1200
-Subject: [PATCH] Use TLS1.1 and TLS1.2 if openssl supports it
-
----
- src/gssl/gssl_openssl.cpp | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/src/gssl/gssl_openssl.cpp b/src/gssl/gssl_openssl.cpp
-index 34af44f..f64ad94 100644
---- a/src/gssl/gssl_openssl.cpp
-+++ b/src/gssl/gssl_openssl.cpp
-@@ -294,8 +294,10 @@ GSsl::Context::Context( const std::string & pem_file , unsigned int flags )
- m_ssl_ctx = SSL_CTX_new(SSLv23_method()) ;
- else if( (flags&3U) == 3U )
- m_ssl_ctx = SSL_CTX_new(SSLv3_method()) ;
-- else
-- m_ssl_ctx = SSL_CTX_new(TLSv1_method()) ;
-+ else {
-+ m_ssl_ctx = SSL_CTX_new(SSLv23_method()) ;
-+ SSL_CTX_set_options(m_ssl_ctx, SSL_OP_NO_SSLv2| SSL_OP_NO_SSLv3) ;
-+ }
-
- if( m_ssl_ctx == NULL )
- throw Error( "SSL_CTX_new" , ERR_get_error() ) ;