I cannot disable SSLv2\v3 in courier-imap.
In imapd-ssl config I have following:
TLS_CIPHER_LIST="ALL:!SSLv2:!SSLv3:!ADH:!NULL:!EXPORT:!DES:!LOW:@STRENGTH"
According, to openssl - SSL is disabled by this entry
[root@a10-52-79-181 ~]# openssl ciphers -v 'ALL:!SSLv2:!SSLv3:!ADH:!NULL:!EXPORT:!DES:!LOW:@STRENGTH'
ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(256) Mac=AEAD
... and rest of output is only related to TLS, nothing for SSL
So far - looks good. But...
openssl s_client -connect localhost:993 -ssl3 | grep "Protocol"
Protocol : SSLv3
Same for "-ssl2". Courier was restarted multiple times - no help. If we run openssl without specifying cipher - TLS correctly used. But how to finally disable SSL?
Note - I don't want to change TLS_CIPHER_LIST - I want to understand, why it seems correct, but not working as intended?