You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
316B

  1. {
  2. {% for dkim_domain in dkim_domains %}
  3. "{{dkim_domain}}":
  4. {% set key = _dkim_public_keys[dkim_domain] %}
  5. "{{dkim_selector}}._domainkey IN TXT \"v=DKIM1; h=sha256; k=rsa; \" \"p={{key[0:253]}}\"{% for n in range((((key|length)-253)/255)|round|int) %} \"{{key[253+n*255:253+(n+1)*255]}}\"{% endfor %}"
  6. {% endfor %}
  7. }