18 lines
418 B
YAML
18 lines
418 B
YAML
|
---
|
||
|
# vim: set et sw=2 ts=2 sts=2:
|
||
|
|
||
|
- name: DHs for Postfix
|
||
|
community.crypto.openssl_dhparam:
|
||
|
path: '/etc/postfix/tls/mail_{{item}}.dh'
|
||
|
size: '{{item}}'
|
||
|
owner: postfix
|
||
|
mode: 0400
|
||
|
with_items: [512,2048,4192]
|
||
|
- name: DHs for Dovecot
|
||
|
community.crypto.openssl_dhparam:
|
||
|
path: '/etc/dovecot/tls/mail_{{item}}.dh'
|
||
|
size: '{{item}}'
|
||
|
owner: dovecot
|
||
|
mode: 0400
|
||
|
with_items: [512,2048,4192]
|