How do I change the default DKIM selector and/or DKIM full selector?

How do I change the default DKIM selector and/or DKIM full selector?

The DKIM selector and DKIM full selector are defined as application params in the configuration, which means you can override them by adding following params in your apps/common/config/main-custom.php file:

'components' => array(
    ...
),
'params' => array(
    ...
    // add these two below:
    'email.custom.dkim.selector'      => 'mailer',
    'email.custom.dkim.full_selector' => 'mailer._domainkey',
    ...
),

Instead of mailer you can use whatever you wish.

    • Related Articles

    • AppMail generates DKIM keys that are too long, what can I do?

      By default, AppMail’s DKIM key size is 2048 bit which should be supported by all DNS platforms, and you should not have any issue adding it as a TXT record. However, some providers don’t support 2048 bit keys, only 1024, which means when you paste ...
    • How do I change the email headers prefix?

      How do I change the email headers prefix? AppMail uses the X-Mw- header prefix for all the email headers. For instance, an email header section will look like: X-Mw-Campaign-Uid: tf833t6s9z842 X-Mw-Subscriber-Uid: ts4196dhvl2ff X-Mw-Customer-Uid: ...
    • Decide what template tags are required

      By default, when creating a campaign template, the [UNSUBSCRIBE_URL] and the [COMPANY_FULL_ADDRESS] tags are required in your template, otherwise you won’t be able to save it.
    • What tracking and sending domains actually are?

      TRACKING DOMAINS: If you have AppMail installed on email.a.com and you send campaigns, all your URL links will start with https://email.a.com and this is fine for most of the cases, but what if you want to handle emailing for b.com domain? In this ...
    • How to increase PHP upload file size directive

      Many times, trying to upload a file in AppMail for different purposes, like importing a subscriber's CSV list or uploading an email template, you got stuck with this error message: This means that the maximum allowed file size is 2MB (the default for ...