search for: ssl_proxy_get_security_string

Displaying 2 results from an estimated 2 matches for "ssl_proxy_get_security_string".

2009 Oct 07
1
dovecot 1.2.6 fails to build with openssl < 0.9.8
The update of ssl_proxy_get_security_string() in dovecot 1.2.6 has broken compatibility with openssl < 0.9.8 (e.g. on RHEL4) because the functions SSL_COMP_get_name and SSL_get_current_compression don't exist until openssl 0.9.8 (build fails at link time due to these symbols being unresolved). I've worked around this by reverting...
2013 Aug 14
1
Patch to log the cipher suite used for TLS
...00000000 +0100 +++ src/login-common/client-common.c 2013-08-13 21:23:15.000000000 +0100 @@ -506,7 +506,8 @@ } else { const char *ssl_state = ssl_proxy_is_handshaked(client->ssl_proxy) ? - "TLS" : "TLS handshaking"; + t_strdup_printf("TLS=<%s>", ssl_proxy_get_security_string(client->ssl_proxy)) : + "TLS handshaking"; const char *ssl_error = ssl_proxy_get_last_error(client->ssl_proxy);