Displaying 4 results from an estimated 4 matches for "ssl_txt_tlsv1_2".
Did you mean:
  ssl_txt_tlsv1_3
  
2016 Mar 07
2
Compilation fails: SSL_TXT_SSLV2 not defined
...: *** [all-recursive] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
In openssl/ssl.h the following is defined:
# define SSL_TXT_SSLV3           "SSLv3"
# define SSL_TXT_TLSV1           "TLSv1"
# define SSL_TXT_TLSV1_1         "TLSv1.1"
# define SSL_TXT_TLSV1_2         "TLSv1.2"
# define SSL_TXT_ALL             "ALL"
Any suggestions on how to fix this?
Kind regards, Maarten
2020 Apr 13
2
Unable to set ssl_min_protocol=TLSv1.3
...r:
  imap-login: Error: Failed to initialize SSL server context: Unknown
  ssl_min_protocol setting 'TLSv1.3'
After some digging, I found the function that parses this setting in
src/lib-ssl-iostream/iostream-openssl-common.c
(openssl_min_protocol_to_options()), which maps strings such as
SSL_TXT_TLSV1_2 == "TLSv1.2" (from openssl/ssl.h) to the appropriate
version and option defines of OpenSSL.
Said openssl/ssl.h does not contain a SSL_TXT_TLSV1_3, so it?s no
surprise that dovecot does not know this setting.  As a quick fix, I
could probably extend struct {?} protocol_versions[] (in
iost...
2020 Apr 13
0
Unable to set ssl_min_protocol=TLSv1.3
...d to initialize SSL server context: Unknown
>   ssl_min_protocol setting 'TLSv1.3'
> 
> After some digging, I found the function that parses this setting in
> src/lib-ssl-iostream/iostream-openssl-common.c
> (openssl_min_protocol_to_options()), which maps strings such as
> SSL_TXT_TLSV1_2 == "TLSv1.2" (from openssl/ssl.h) to the appropriate
> version and option defines of OpenSSL.
> 
> Said openssl/ssl.h does not contain a SSL_TXT_TLSV1_3, so it?s no
> surprise that dovecot does not know this setting.  As a quick fix, I
> could probably extend struct {?} pro...
2019 Nov 26
2
ssl_min_protocol = TLSv1.3 does not work
Hi all,
I'm trying to set up my server with support for TLS 1.3 only, but that does
not seem to be supported.
First off, TLS 1.3 itself does work fine, so it's not the config or ssl
library, and 1.3-only works fine with Postfix. The problem is only in
disabling TLS 1.2 for Dovecot.
On connection, I'm getting an error that 1.3 is an "Unknown
ssl_min_protocol setting".
Reading