72 lines
1.4 KiB
Plaintext
72 lines
1.4 KiB
Plaintext
# ---------------------------------------------------------
|
|
# - Parameter Settings for script 'add_dkim_key.sh'.
|
|
# ---------------------------------------------------------
|
|
|
|
|
|
# ----------
|
|
# DNS Server
|
|
# ----------
|
|
|
|
# - DNS_DKIM_ZONE_MASTER_SERVER
|
|
# -
|
|
# - The DNS Server who is serving the update zone and is used
|
|
# - for the dynamic updates (nsupdate)
|
|
# -
|
|
# - Example:
|
|
# -
|
|
# - DNS_DKIM_ZONE_MASTER_SERVER="b.ns.oopen.de"
|
|
# - DNS_DKIM_ZONE_MASTER_SERVER="dns0.warenform.de"
|
|
#
|
|
DNS_DKIM_ZONE_MASTER_SERVER="b.ns.oopen.de"
|
|
|
|
|
|
# - TTL
|
|
# -
|
|
# - TTL for the DKIM TXT Record.
|
|
# -
|
|
# - Defaults to "3600" if update_dns=true
|
|
# -
|
|
#TTL=
|
|
|
|
|
|
# ----------
|
|
# TSIG Key
|
|
# ----------
|
|
|
|
# - KEY_SECRET
|
|
# -
|
|
# - Sectret Key used by 'nsupdate' to create/update the
|
|
# - DKIM TXT record.
|
|
# -
|
|
# - Example:
|
|
# -
|
|
# - # Key b.ns.oopen.de
|
|
# - key_secret="EtvvMdW0PXD4GMHP+onuHZ0dT/Z8OSJGlce/xH10OwI="
|
|
# -
|
|
# - # Key dns0.warenform.de
|
|
# - key_secret="qG9e/gOucCXcwVUTU+uewU0Yth1iJh2JHgnogrHvh2A="
|
|
# -
|
|
#KEY_SECRET=""
|
|
|
|
# - KEY_ALGO
|
|
# -
|
|
# - The key algorithm used for key creation. Available choices are: hmac-md5,
|
|
# - hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384 and hmac-sha512. The
|
|
# - default is hmac-sha256. Options are case-insensitive.
|
|
# -
|
|
# - Example:
|
|
# - KEY_ALGO="hmac-md5"
|
|
# -
|
|
# - Defaults to 'hmac-sha256'
|
|
# -
|
|
#KEY_ALGO="hmac-sha256"
|
|
|
|
# - KEY_NAME
|
|
# -
|
|
# - Name of the Key
|
|
# -
|
|
# - Defaults to "$update_zone"
|
|
# -
|
|
#KEY_NAME="update-dkim"
|
|
|