kumo.dkim.ed25519_signer {PARAMS}
Create a DKIM signer that uses ED25519 keys.
The key data must be PKCS8 DER encoded data.
This function will attempt to load V2 data first, which must contain the matching public and private key pair.
If the data cannot be loaded as V2, then it will fall back to try to load V1 data, which contains just the private key.
Since: Version 2023.08.22-4d895015
The functionality described in this outlined box requires version 2023.08.22-4d895015 of KumoMTA, or a more recent version.
We now support loading either DER or PEM encoded PKCS8 private keys.
-- Called once the body has been received.
-- For multi-recipient mail, this is called for each recipient.
kumo.on('smtp_server_message_received', function(msg)
local signer = kumo.dkim.ed25519_signer {
domain = msg:from_header().domain,
selector = 'default',
headers = { 'From', 'To', 'Subject' },
key = 'example-private-dkim-key.der',
}
msg:dkim_sign(signer)
end)
PARAMS
is a lua table that can have the following keys:
domain
Required. The domain for which the mail is being signed.
selector
Required. The selector used for signing
headers
Required. The list of headers which should be signed.
atps
Optional string. Allows setting the Authorized Third-Party signature.
atpsh
Optional string. Set the Authorized Third-Party Signature hashing algorithm.
agent_user_identifier
Optional string. Sets the Agent of User Identifier (AUID) to use for signing.
expiration
Optional number. Sets the number of seconds from now to use for the signature expiration.
body_length
Optional boolean. If true
, the body length will be included
in the signature.
reporting
Optional boolean. If true
, the signature will be marked as
requesting reports from the receiver/verifier.
header_canonicalization
Specify the canonicalization method to be used when hashing message headers. Can be one of:
"Relaxed"
- this is the default"Simple"
body_canonicalization
Specify the canonicalization method to be used when hashing message body. Can be one of:
"Relaxed"
- this is the default"Simple"
key
Required. Specify the signing key.
The value is a KeySource.
The key data must be PKCS8 DER encoded data.
local file_signer = kumo.dkim.ed25519_signer {
domain = msg:from_header().domain,
selector = 'default',
headers = { 'From', 'To', 'Subject' },
key = '/path/to/example-private-dkim-key.pem',
}
Tip
The KeySource page explains how to read from HashiCorp Vault or from an arbitrary source of data.
ttl
Optional number. Specifies the time-to-live (TTL) in KumoMTA's DKIM signer
cache. The default is 300
seconds.
Each call to this function with the same parameters is cached for up to the specified TTL in order to avoid the overhead of repeatedly load the key from disk.
Created: 2023-02-25