DKIM does not work (and howto fix it)
-
DKIM support of the newsletter plugin does not work, because there is a wrong member variable passed to the PHPmailer class of WordPress. This causes that PHPmailer never will inject the DKIM part into mail headers.
Line 7796 in file wp-mailinglist-plugin.php says:
$phpmailer -> DKIM_private = $this -> get_option('dkim_private');
This has to be changed to:
$phpmailer -> DKIM_private_string = $this -> get_option('dkim_private');
I mailed an bug report to Tribulant already. I got back kind of an automatic reply that looked not so promising.
So if an official fix should last, you can temporarily fix it yourself.Cheers.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘DKIM does not work (and howto fix it)’ is closed to new replies.