From ad468cbf702270afc3bea198c45e3bce09605abb Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Mon, 30 Sep 2019 17:06:47 -0300 Subject: [PATCH] fix variable type --- tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 7d06f76..80cd390 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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: