mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-02-11 15:01:37 +00:00
14 lines
408 B
Plaintext
14 lines
408 B
Plaintext
# /etc/dovecot/conf.d/10-ssl.conf
|
|
# TLS/SSL settings.
|
|
ssl_min_protocol = TLSv1.2
|
|
ssl_cipher_list = ALL:!ADH:!LOW:!SSLv2:!SSLv3:!EXP:!aNULL:!eNULL:!3DES:!MD5:!PSK:!DSS:!RC4:!SEED:!IDEA:+HIGH:+MEDIUM
|
|
ssl_options = no_ticket
|
|
#ssl_dh_parameters_length = 2048
|
|
|
|
ssl_server {
|
|
prefer_ciphers = server
|
|
dh_file = /etc/ssl/mail/dhparams.pem
|
|
cert_file = /etc/ssl/mail/cert.pem
|
|
key_file = /etc/ssl/mail/key.pem
|
|
}
|