31 líneas
940 B
TOML
31 líneas
940 B
TOML
# If enabled then encrypt DKIM keys with the secret password. By default DKIM keys
|
|
# are not encrypted and stored as cleartext. Once set up do not change these values,
|
|
# otherwise decrypting DKIM keys is going to fail
|
|
#cipher="aes192"
|
|
#secret="a secret cat"
|
|
|
|
# If true then spwans openssl command line executable for generating DKIM keys
|
|
# Otherwise forge library is used which is cross-environment but slower
|
|
useOpenSSL=true
|
|
# Define path to openssl if not in default path
|
|
#pathOpenSSL="/usr/local/bin/openssl"
|
|
|
|
# If true then also adds a signature for the outbound domain
|
|
# Affects WildDuck ZoneMTA plugin only
|
|
signTransportDomain=true
|
|
|
|
# do not change this
|
|
hashAlgo="sha256"
|
|
|
|
enabled="sender"
|
|
|
|
# Domain name in the dkim signature. Leave blank to use the domain of From: address
|
|
domain="hatthieves.es"
|
|
|
|
# Selector value in the dkim signature
|
|
selector="dkim"
|
|
|
|
# Key location. Relative to working directory
|
|
path="/secure/dkim_private.key"
|
|
|