diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2022-02-21 13:52:52 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2022-02-21 13:52:54 +0100 |
commit | 6bfc13635af817bb16b4fe5ef5a42619573c51fc (patch) | |
tree | 29893331f04de8b266fa90981398acf615f7705a /tests/config/dovecot | |
parent | 556f02ce636e11e898ed5608b3b130ce4e7c6ba6 (diff) |
Tests: Dovecot: Bump min protocol level to TLSv1.2.
And use security level 2 for ssl_cipher_list. As of dovecot 2.3.18
ssl_min_protocol defaults to TLSv1.2.
Diffstat (limited to 'tests/config/dovecot')
-rw-r--r-- | tests/config/dovecot/ssl.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/config/dovecot/ssl.conf b/tests/config/dovecot/ssl.conf index 3fd99d5..1f3a698 100644 --- a/tests/config/dovecot/ssl.conf +++ b/tests/config/dovecot/ssl.conf @@ -2,4 +2,5 @@ ssl = required ssl_cert = <dovecot.rsa.crt ssl_key = <dovecot.rsa.key ssl_dh = <dhparams.pem -ssl_min_protocol = TLSv1 +ssl_min_protocol = TLSv1.2 +ssl_cipher_list = DEFAULT@SECLEVEL=2 |