2022-03-08 19:42:28 +01:00
|
|
|
# OPENDKIM KEY TABLE
|
|
|
|
# To use this file, uncomment the #KeyTable option in /etc/opendkim.conf,
|
|
|
|
# then uncomment the following line and replace example.com with your domain
|
|
|
|
# name, then restart OpenDKIM. Additional keys may be added on separate lines.
|
|
|
|
|
|
|
|
#default._domainkey.example.com example.com:default:/etc/opendkim/keys/default.private
|
2023-06-23 08:12:05 +02:00
|
|
|
{% for domain in general.postfix.postfix_relay_domains %}
|
|
|
|
default._domainkey.{{ domain }} {{ domain }}:default:{{ general.opendkim.opendkim_keys[loop.index - 1] }}
|
|
|
|
{% endfor %}
|