Hi there,
Iām using suiteCRM 7.7.8, and iām impressed by all the possibilities, iād like to start with great congratulations and my best regards to the community.
Iām quite new to all the coding things, so i may sound weird or wrong but as a former automation engineer I understand quickly (sometimes)
Iām trying to add a dKIM signature to my outgoing emails, sent with the suitecrm client with multiple users.
I think iām now ok with the DNS records on the hosting side.
Generated the public and private keys with http://dkimcore.org/tools/ and checked it, everything seams to be okay.
I created a private.key file and checked for accessibility, guess itās ok too
At this point iām trying to understand which module generates the emails and (might be wrong) passes them through PHPMailer in order to automatically add the DKIM private key into the mail header.
Googeling the āsetting up PHPmailer with DKIMā leads me to this last step :
4. Add the following DKIM lines to PHPMailer *after the setFrom
$mail->setFrom($from, $from_name);
..
$mail->DKIM_domain = 'mydomain.com';
$mail->DKIM_private = 'path/to/your/private.key>';
$mail->DKIM_selector = '1450071.mydomain'; //Prefix for the DKIM selector
$mail->DKIM_passphrase = ''; //leave blank if no Passphrase
$mail->DKIM_identity = $mail->From;
My noobishness strikes hard here, I just canāt figure which file i should modify.
Can anyone help me find the holy truth ?
Tanks in advance, and sorry for my bad english.
Alex322