Skip to content
Snippets Groups Projects

Postfix TLS-Improvements

Merged Lars Beckers requested to merge ext-3 into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -20,11 +20,11 @@
@@ -20,11 +20,11 @@
{% endif %}
{% endif %}
{% if 'mx' in net %}
{% if 'mx' in net %}
{{ net.mx|comment('plain', prefix='', postfix='') }}
{{ net.mx|comment('plain', prefix='', postfix='') }}
{% for mx in q('dig', net.mx, 'qtype=MX') %}
{% for mx in q('dig', net.mx, 'qtype=MX')|sort %}
{% for addr in q('dig', mx.split(' ', maxsplit=1)[-1], 'qtype=A') %}
{% for addr in q('dig', mx.split(' ', maxsplit=1)[-1], 'qtype=A')|sort %}
{{ addr }} {{ net.action|default('dunno') }}
{{ addr }} {{ net.action|default('dunno') }}
{% endfor %}
{% endfor %}
{% for addr in q('dig', mx.split(' ', maxsplit=1)[-1], 'qtype=AAAA') %}
{% for addr in q('dig', mx.split(' ', maxsplit=1)[-1], 'qtype=AAAA')|sort %}
{{ addr }} {{ net.action|default('dunno') }}
{{ addr }} {{ net.action|default('dunno') }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endfor %}
Loading