Add dovecot_proxy.config option
This commit is contained in:
parent
2a5ae9da82
commit
54123ccb76
2 changed files with 6 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
dovecot_proxy:
|
||||
config: {}
|
||||
debug_log_enabled: false # Logs passwords and more to /var/log/dovecot.debug.log
|
||||
ssl_cert: "/etc/ssl/{{ inventory_hostname }}.chain.crt"
|
||||
ssl_key: "/etc/ssl/private/{{ inventory_hostname }}.key"
|
||||
|
|
|
|||
|
|
@ -30,6 +30,10 @@ ssl_min_protocol = TLSv1.2
|
|||
ssl_cipher_list = ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
|
||||
ssl_prefer_server_ciphers = yes
|
||||
|
||||
{% for key, value in dovecot_proxy.config.items() %}
|
||||
{{ key }} = {{ value }}
|
||||
{% endfor %}
|
||||
|
||||
{% for domain in dovecot_proxy.domain_proxies %}
|
||||
passdb {
|
||||
driver = sql
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue