From 0413ab0fd472a01e7ef6b7fcf0a662aaa50facd8 Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 24 Mar 2023 21:04:31 +0100 Subject: [PATCH] Fix sorting --- templates/postfix/main.cf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/postfix/main.cf.j2 b/templates/postfix/main.cf.j2 index 1a6a89d..3977884 100644 --- a/templates/postfix/main.cf.j2 +++ b/templates/postfix/main.cf.j2 @@ -139,8 +139,8 @@ postscreen_greet_action = drop # DNS block lists postscreen_dnsbl_threshold = 2 {% if postfix_postscreen_dnsbl_sites is defined %} -{% for site in postfix_postscreen_dnsbl_sites %} postscreen_dnsbl_sites = +{% for site in postfix_postscreen_dnsbl_sites %} {{ site.name }}*{{ site.multiplier }} {% endfor %} {% endif %}