- Joined
- Feb 27, 2003
- Messages
- 8,509
If you're running a box with OpenSSL 1.0.2 or higher, any rebuilds of the exim.conf or dovecot.conf will include options to disable TLS 1.1.
TLSv1.1 is EOL as of March 31, 2020. Windows 7 support ended on January 14, 2020.
This is with CustmoBuild 2, rev 2404 and up: "./build version"
If you still need TLSv1.1 in exim and dovecot, then you'd set:
However, we'd highly recommend using E-Mail clients that support TLS 1.2, such as Thunderbird.
If you need to keep your apcahe/nginx/litspeed/openlitespeed with the intermediate settings, but still need to drop your minimum requirements for email, you can override the configs too:
But if you're flat-out using an end-of-life OS like CentOS 5, with openssl 0.9.8, then your going to want to use:
regardless. The above work-arounds are only for OSs like CentOS 6 which does support TLS 1.2, but your email client's do not.
TLSv1.1 is EOL as of March 31, 2020. Windows 7 support ended on January 14, 2020.
This is with CustmoBuild 2, rev 2404 and up: "./build version"
If you still need TLSv1.1 in exim and dovecot, then you'd set:
Code:
./build set ssl_configuration old
./build update
./build rewrite_confs
./build exim_conf
./build dovecot_conf
If you need to keep your apcahe/nginx/litspeed/openlitespeed with the intermediate settings, but still need to drop your minimum requirements for email, you can override the configs too:
- Exim: /etc/exim.variables.conf.custom add:
Code:
openssl_options = +no_sslv2 +no_sslv3 +no_tlsv1
- Dovecot: /usr/local/directadmin/custombuild/custom/dovecot/conf/ssl.conf add
Code:
ssl_cert = </etc/exim.cert ssl_key = </etc/exim.key ssl_dh = </etc/dovecot/dh.pem ssl_min_protocol = TLSv1 ssl_cipher_list = ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
But if you're flat-out using an end-of-life OS like CentOS 5, with openssl 0.9.8, then your going to want to use:
Code:
./build set ssl_configuration old
Last edited: