:/opt/kumomta/etc# cat dkim_data.toml # To do double or triple signing, add each additional # signature name to this list and see the `signature."MyESPName"` # block below additional_signatures = ["SELECT1"] # Default selector to assume if the domain/signature block # doesn't specify one selector = "select1" # The default set of headers to sign if otherwise unspecified # This recommended set comes from section 5.4.1 of RFC 6376 # See https://datatracker.ietf.org/doc/html/rfc6376#section-5.4 headers = [ "From", "Reply-To", "Subject", "Date", "To", "Cc", "Resent-Date", "Resent-From", "Resent-To", "Resent-Cc", "In-Reply-To", "References", "List-Id", "List-Help", "List-Unsubscribe", "List-Subscribe", "List-Post", "List-Owner", "List-Archive" ] # Automatic oversigning can help prevent certain DKIM replay attacks by asserting # absence of any additional copies of a given header. over_sign = true # Domain blocks match based on the sender domain of the # incoming message [domain."bengaluru.city"] selector = 'select1' # optional overridden filename. # Default is "/opt/kumomta/etc/dkim/DOMAIN/SELECTOR.key" # filename = "/opt/kumomta/etc/dkim/$bengaluru.city/$select1.key" # The signature block is independent of the sender domain. # They are consulted based on the value of `base.additional_signatures` # above. # In addition to the same values that are found in the `domain` block, # the following keys are supported [signature."TWW"] # Policy is interpreted differently for these policy = "Always" # Always add this signature #policy = "OnlyIfMissingDomainBlock" # Use this as a fallback # specifies the signing domain for this signature block domain = "bengaluru.city" ~