Aurora Corporate documentation

Configuring DKIM

DKIM configuration is available in Aurora Corporate. You'll need to generate DKIM keys, one of the services which can do that for you is:

https://tools.socketlabs.com/dkim/generator

You will need to supply the keys in DNS TXT record of your domain, and in Exim configuration file /etc/exim4/exim4.conf:

DKIM_FILE                       = /opt/afterlogic/etc/ssl-certs/dk.key
DKIM_PRIVATE_KEY                = ${if exists{DKIM_FILE}{DKIM_FILE}{0}}
DKIM_DOMAIN = ${lc:${domain:$h_from:}}
...
remote_smtp:
    driver = smtp
    dkim_domain           = DKIM_DOMAIN
    dkim_selector         = mail
    dkim_private_key      = DKIM_PRIVATE_KEY
    user = afterlogic
    group = afterlogic
    interface = xx.xx.xx.xx

The lines are already there, some may be commented out so be sure to uncomment those and specify selector (it's mail in the sample, can be anything else) and the proper external IP - supplying 0.0.0.0 should work as well.

/opt/afterlogic/etc/ssl-certs/dk.key is the file where DKIM key needs to be saved, by default the file isn't there so you need to create it. Make sure it has afterlogic:afterlogic ownership.

If you have multiple domains, create DKIM for one of them, and then supply the same DNS TXT record for all the other domains involved.