upgarde settings to dovecot 2.3

This commit is contained in:
Sebastian Hugentobler 2018-02-16 09:33:18 +01:00
parent 1009ae9fc8
commit ef2dab732c
2 changed files with 10 additions and 6 deletions

View File

@ -96,16 +96,19 @@ Name of the certificate domain.
Length of the Diffie-Helman key in bits. Length of the Diffie-Helman key in bits.
## SSL_PROTOCOLS ## SSL_MIN_PROTOCOL
- default: !SSLv2 !SSLv3 - default: TLSv1
Space seperated list of allowed ssl protocols (`!`disables a protocol). Ssl minimum protocol version.
## SSL_CIPHERLIST ## SSL_CIPHERLIST
- default: ALL:!ADH:!LOW:!SSLv2:!EXP:!aNULL:!RC4:+HIGH:+MEDIUM - default: ALL:!kRSA:!SRP:!kDHd:!DSS:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH
Colon seperated list of supported ciphers (`!`disables a cipher). Colon seperated list of supported ciphers (`!`disables a cipher).
Go [here](https://www.openssl.org/docs/manmaster/man1/ciphers.html) for a list
of ciphers.
## IMAP_MAX_USER_CONNECTIONS ## IMAP_MAX_USER_CONNECTIONS
- default: 10 - default: 10

View File

@ -1,7 +1,8 @@
ssl = yes ssl = yes
ssl_cert = </etc/ssl/mail/{{ getenv "CERT_DOMAIN"}}.crt ssl_cert = </etc/ssl/mail/{{ getenv "CERT_DOMAIN"}}.crt
ssl_key = </etc/ssl/mail/{{ getenv "CERT_DOMAIN"}}.key ssl_key = </etc/ssl/mail/{{ getenv "CERT_DOMAIN"}}.key
ssl_dh=</etc/ssl/mail/dh.pem
ssl_dh_parameters_length = {{getenv "SSL_DH_LENGTH" "2048"}} ssl_dh_parameters_length = {{getenv "SSL_DH_LENGTH" "2048"}}
ssl_protocols = {{getenv "SSL_PROTOCOLS" "!SSLv2 !SSLv3"}} ssl_min_protocol = {{getenv "SSL_MIN_PROTOCOL" "TLSv1"}}
ssl_cipher_list = {{getenv "SSL_CIPHERLIST" "ALL:!ADH:!LOW:!SSLv2:!EXP:!aNULL:!RC4:+HIGH:+MEDIUM"}} ssl_cipher_list = {{getenv "SSL_CIPHERLIST" "ALL:!kRSA:!SRP:!kDHd:!DSS:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH "}}
ssl_prefer_server_ciphers = yes ssl_prefer_server_ciphers = yes