From: Jeremy Harris Date: Fri, 5 Feb 2016 18:47:45 +0000 (+0000) Subject: TLS: Whine to log on client config of SNI under too-old OpenSSL version X-Git-Tag: exim-4_87_RC4~16 X-Git-Url: https://git.exim.org/users/jgh/exim.git/commitdiff_plain/66802652b8500bae10ac530b6fe4976669f5dcff TLS: Whine to log on client config of SNI under too-old OpenSSL version --- diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index f45daa767..98762fd62 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -2079,8 +2079,7 @@ if (ob->tls_sni) DEBUG(D_tls) debug_printf("Setting TLS SNI \"%s\"\n", tls_out.sni); SSL_set_tlsext_host_name(client_ssl, tls_out.sni); #else - DEBUG(D_tls) - debug_printf("OpenSSL at build-time lacked SNI support, ignoring \"%s\"\n", + log_write(0, LOG_MAIN, "SNI unusable with this OpenSSL library version; ignoring \"%s\"\n", tls_out.sni); #endif } diff --git a/test/scripts/2100-OpenSSL/2130 b/test/scripts/2100-OpenSSL/2130 index 1de3e4f40..afaa949e0 100644 --- a/test/scripts/2100-OpenSSL/2130 +++ b/test/scripts/2100-OpenSSL/2130 @@ -1,4 +1,4 @@ -# TLS: SNI +# TLS: client SNI # exim -DSERVER=server -bd -oX PORT_D ****