iaresee
Active member
I'm trying to get DKIM set up on my forum.
DNS is set up and, afaict, propagated pretty thoroughly at this point.
Dmarcian thinks my DKIM setup for selector
The forum admin panel is still showing "Attempting to verify your DNS record but it may take up to 24 hours for DNS changes to propagate. If it has been longer, you may need to verify your entries." Which led me down the path of looking for where, in the code, verification is done. I found the VerifyEmailDkim job but it does not appear to be a job I can kick off.
How often is that verification job, VerifyEmailDkim, run by the forum software? Is there a way for me to execute it and check the log output from the job run?
I feel like the last step is getting the email options for dkim set up. And my feeling is that I'm getting DKIM signature failures because of the lack of
Note that the keyfile does exist.
I'm somewhat tempted to flip that bit by hand...
Thanks in advance for any troubleshooting help here!
- Ian
DNS is set up and, afaict, propagated pretty thoroughly at this point.
Dmarcian thinks my DKIM setup for selector
xenforo
is correct. But test emails set to mail-tester.com are failing the DKIM sig check: https://www.mail-tester.com/test-vrk4rdz4f&reloaded=1The forum admin panel is still showing "Attempting to verify your DNS record but it may take up to 24 hours for DNS changes to propagate. If it has been longer, you may need to verify your entries." Which led me down the path of looking for where, in the code, verification is done. I found the VerifyEmailDkim job but it does not appear to be a job I can kick off.
How often is that verification job, VerifyEmailDkim, run by the forum software? Is there a way for me to execute it and check the log output from the job run?
I feel like the last step is getting the email options for dkim set up. And my feeling is that I'm getting DKIM signature failures because of the lack of
verified:true
in the email options here:
Code:
MariaDB [xenforo_forum]> select option_value from xf_option where option_id = "emailDkim";
+----------------------------------------------------------------------------------------------------------------------+
| option_value |
+----------------------------------------------------------------------------------------------------------------------+
| {"enabled":true,"verified":false,"failed":false,"domain":"fractalaudio.com","privateKey":"emailDkim-wOi1IPkJBq.key"} |
+----------------------------------------------------------------------------------------------------------------------+
1 row in set (0.000 sec)
Note that the keyfile does exist.
I'm somewhat tempted to flip that bit by hand...
Thanks in advance for any troubleshooting help here!
- Ian