I’m trying to configure the domain blocks in my DKIM setup. Currently, the following configuration only matches the domain “example.com”:
Domain blocks match based on the sender domain of the
incoming message
[domain.“example.com”]
selector = ‘dkim1024’
headers = [“From”, “To”, “Subject”, “Date”, “Sender”]
algo = “sha256” # or “ed25519”. Omit to use the default of “sha256”
How can I modify this configuration to match any domain, rather than just “example.com”?
Perhaps you didn’t understand my question. What I mean is: if I have a large number of domains that need automated signing, do I need to write a [domain.“example.com”] block for each domain in order for the program to automatically perform the signing? Because I noticed that once I remove the [domain.“example.com”] block, the program stops performing DKIM signing for example.com, and the emails sent no longer contain the DKIM signature header.