DKIM implementation with on premise installtion
Hello,
can somebody give us some documentation on how to implement DKIM keys:
do we follow open dkim implementation with on premise installation?
where do I put information what private key should be used?
Is it automatically assigned from .ssh folder?
Do we need to sign email before we add txt records?
....
Only thing i have found is this from @jonathon_wodnicki in https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-standard/how-to-implement-dkim-and-dmarc-record-in-adobe-campaign/qaq-p/240789
For DKIM:
Create a TXT record:
Hostname: selector._domainkey
Value: v=DKIM1; p=base64 encoding of pub key
Follow these steps for the key pair:
- Create a private key: openssl genrsa -out dkim_private.pem 2048
- Get its public key: openssl rsa -in dkim_private.pem -pubout -outform der 2>/dev/null | openssl base64 -A
- Create a long text xtk:option with internal name selector_RSA_PRIVATE_KEY_domain and
fill value with contents of dkim_private.pem. Selector is from the hostname field,
domain is the fqdn.
- Set hostname to _domainkey.subdomain if desired
Marcel


