fix variable type

This commit is contained in:
Mauro Torrez 2019-09-30 17:06:47 -03:00
parent 45790af73b
commit ad468cbf70

View File

@ -63,15 +63,15 @@
SMTPD_TLS_SESSION_CACHE_DATABASE: SMTPD_TLS_SESSION_CACHE_DATABASE:
"{{ 'btree:${data_directory}/smtpd_scache' if postfix_tls_session_cache else '' }}" "{{ 'btree:${data_directory}/smtpd_scache' if postfix_tls_session_cache else '' }}"
SMTPD_CLIENT_RESTRICTIONS: SMTPD_CLIENT_RESTRICTIONS:
"{{ postfix_client_restrictions }}" "{{ postfix_client_restrictions | join(', ') }}"
SMTPD_DATA_RESTRICTIONS: SMTPD_DATA_RESTRICTIONS:
"{{ postfix_data_restrictions }}" "{{ postfix_data_restrictions | join(', ') }}"
SMTPD_HELO_RESTRICTIONS: SMTPD_HELO_RESTRICTIONS:
"{{ postfix_helo_restrictions }}" "{{ postfix_helo_restrictions | join(', ') }}"
SMTPD_RELAY_RESTRICTIONS: SMTPD_RELAY_RESTRICTIONS:
"{{ postfix_relay_restrictions }}" "{{ postfix_relay_restrictions | join(', ') }}"
SMTPD_RECIPIENT_RESTRICTIONS: SMTPD_RECIPIENT_RESTRICTIONS:
"{{ postfix_recipient_restrictions }}" "{{ postfix_recipient_restrictions | join(', ') }}"
MESSAGE_SIZE_LIMIT: MESSAGE_SIZE_LIMIT:
"{{ postfix_message_size_limit }}" "{{ postfix_message_size_limit }}"
SMTPD_HELO_REQUIRED: SMTPD_HELO_REQUIRED: