Transform some options into variables.

This commit is contained in:
Andrea Dell'Amico 2020-08-11 17:47:21 +02:00
parent c749244c69
commit db95704162
2 changed files with 6 additions and 3 deletions

View File

@ -19,6 +19,9 @@ postfix_relay_client: False
postfix_use_relay_host: '{{ postfix_relay_client }}'
postfix_biff: "no"
postfix_append_dot_mydomain: "no"
postfix_smtp_helo_required: "yes"
postfix_smtp_delay_reject: "yes"
postfix_smtp_disable_vrfy: "yes"
postfix_use_letsencrypt: False
postfix_tls_encryption_level: 'intermediate'

View File

@ -546,9 +546,9 @@ virtual_mailbox_limit = {{ postfix_message_size_limit }}
#
# UCE/RBL
#
disable_vrfy_command = yes
smtpd_delay_reject = yes
smtpd_helo_required = yes
disable_vrfy_command = {{ postfix_smtp_disable_vrfy }}
smtpd_delay_reject = {{ postfix_smtp_delay_reject }}
smtpd_helo_required = {{ postfix_smtp_helo_required }}
mailbox_size_limit = {{ postfix_message_size_limit }}
message_size_limit = {{ postfix_message_size_limit }}