diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-12-11 19:06:29 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-12-11 19:33:35 +0100 |
commit | 9c192cc8946800535be678644314ec38f6e48ec7 (patch) | |
tree | 45623b04ff80b66d25882c3161df947a8acd0f10 | |
parent | feeb91998a29ca040f6e5dd103e09507a6355e32 (diff) |
documentation: simplify SSL options in the sample configuration files.
-rw-r--r-- | Changelog | 1 | ||||
-rw-r--r-- | interimap.sample | 5 | ||||
-rw-r--r-- | pullimap.sample | 5 |
3 files changed, 5 insertions, 6 deletions
@@ -20,6 +20,7 @@ interimap (0.5.5) upstream; - test suite: explicitly set ssl_min_protocol=TLSv1 in the Dovecot configuration file (the default as of 2.3.11.3), hence running TLS tests now require Dovecot 2.3 or later. + - documentation: simplify SSL options in the sample configuration files. -- Guilhem Moulin <guilhem@fripost.org> Fri, 11 Dec 2020 14:55:53 +0100 diff --git a/interimap.sample b/interimap.sample index b4d131c..17c8f7e 100644 --- a/interimap.sample +++ b/interimap.sample @@ -23,10 +23,9 @@ password = xxxxxxxxxxxxxxxx #compress = YES # SSL options -SSL_CApath = /etc/ssl/certs +#SSL_CApath = /etc/ssl/certs #SSL_verify = YES -#SSL_protocols = !SSLv2 !SSLv3 !TLSv1 !TLSv1.1 -#SSL_cipherlist = EECDH+AESGCM:!MEDIUM:!LOW:!EXP:!aNULL:!eNULL +#SSL_protocol_min = !TLSv1.3 #SSL_fingerprint = sha256$29111aea5d5be7e448bdc5c6e8a9d03bc9221c53c09b1cfbe6f953221e24dda0 # vim:ft=dosini diff --git a/pullimap.sample b/pullimap.sample index 136d3d4..d92e645 100644 --- a/pullimap.sample +++ b/pullimap.sample @@ -4,10 +4,9 @@ deliver-method = smtp:[127.0.0.1]:25 purge-after = 90 # SSL options -SSL_CApath = /etc/ssl/certs +#SSL_CApath = /etc/ssl/certs #SSL_verify = YES -#SSL_protocols = !SSLv2 !SSLv3 !TLSv1 !TLSv1.1 -#SSL_cipherlist = EECDH+AESGCM:!MEDIUM:!LOW:!EXP:!aNULL:!eNULL +#SSL_protocol_min = !TLSv1.3 [private] #type = imaps |