------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugs.exim.org/show_bug.cgi?id=1499 Git Commit <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from Git Commit <[email protected]> 2014-07-08 14:17:08 --- Git commit: http://git.exim.org/exim.git/commitdiff/4b57b15d12942aff5360105a71f9c1b9d9a4edaf commit 4b57b15d12942aff5360105a71f9c1b9d9a4edaf Author: Jeremy Harris <[email protected]> AuthorDate: Tue Jul 8 13:54:53 2014 +0100 Commit: Jeremy Harris <[email protected]> CommitDate: Tue Jul 8 13:54:53 2014 +0100 Reinstate SNI variables under GnuTLS. Bug 1499 --- src/src/expand.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/src/expand.c b/src/src/expand.c index 9d73803..c0edef6 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -677,7 +677,7 @@ static var_entry var_table[] = { { "tls_in_ourcert", vtype_cert, &tls_in.ourcert }, { "tls_in_peercert", vtype_cert, &tls_in.peercert }, { "tls_in_peerdn", vtype_stringptr, &tls_in.peerdn }, -#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS) +#if defined(SUPPORT_TLS) { "tls_in_sni", vtype_stringptr, &tls_in.sni }, #endif { "tls_out_bits", vtype_int, &tls_out.bits }, @@ -687,12 +687,12 @@ static var_entry var_table[] = { { "tls_out_ourcert", vtype_cert, &tls_out.ourcert }, { "tls_out_peercert", vtype_cert, &tls_out.peercert }, { "tls_out_peerdn", vtype_stringptr, &tls_out.peerdn }, -#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS) +#if defined(SUPPORT_TLS) { "tls_out_sni", vtype_stringptr, &tls_out.sni }, #endif { "tls_peerdn", vtype_stringptr, &tls_in.peerdn }, /* mind the alphabetical order! */ -#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS) +#if defined(SUPPORT_TLS) { "tls_sni", vtype_stringptr, &tls_in.sni }, /* mind the alphabetical order! */ #endif -- Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email -- ## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
