fix variable type
This commit is contained in:
parent
45790af73b
commit
ad468cbf70
@ -63,15 +63,15 @@
|
||||
SMTPD_TLS_SESSION_CACHE_DATABASE:
|
||||
"{{ 'btree:${data_directory}/smtpd_scache' if postfix_tls_session_cache else '' }}"
|
||||
SMTPD_CLIENT_RESTRICTIONS:
|
||||
"{{ postfix_client_restrictions }}"
|
||||
"{{ postfix_client_restrictions | join(', ') }}"
|
||||
SMTPD_DATA_RESTRICTIONS:
|
||||
"{{ postfix_data_restrictions }}"
|
||||
"{{ postfix_data_restrictions | join(', ') }}"
|
||||
SMTPD_HELO_RESTRICTIONS:
|
||||
"{{ postfix_helo_restrictions }}"
|
||||
"{{ postfix_helo_restrictions | join(', ') }}"
|
||||
SMTPD_RELAY_RESTRICTIONS:
|
||||
"{{ postfix_relay_restrictions }}"
|
||||
"{{ postfix_relay_restrictions | join(', ') }}"
|
||||
SMTPD_RECIPIENT_RESTRICTIONS:
|
||||
"{{ postfix_recipient_restrictions }}"
|
||||
"{{ postfix_recipient_restrictions | join(', ') }}"
|
||||
MESSAGE_SIZE_LIMIT:
|
||||
"{{ postfix_message_size_limit }}"
|
||||
SMTPD_HELO_REQUIRED:
|
||||
|
Loading…
x
Reference in New Issue
Block a user