几天前,我在 CentOs 6 服务器上手动安装了 OpenDKIM Signing -http://stevejenkins.com/blog/2011/08/installing-opendkim-rpm-via-yum-with-postfix-or-sendmail-for-rhel-centos-fedora/。
但在我的所有邮件中
dkim=neutral(格式错误)[电子邮件保护]
我做了很多测试,问题出在 html 代码 html 编辑器中的空格,这里有两个例子,第一个不好,而第二个好:
#HTML 源代码
<html><head></head><body>TEST
<table border="1">
<tbody>
<tr>
<td>a</td>
</tr>
<tr>
<td>b</td>
</tr>
</tbody>
</table>
<a href="http://%%unsubscribelink%%/">Unsubscribe me from this list</a>
</body></html>
报告[电子邮件保护]
DKIM 检查详情:
结果:失败
#HTML 源代码
<html><head></head><body>TEST<a href="http://%%unsubscribelink%%/">Unsubscribe me from this list</a></body></html>
报告[电子邮件保护]
DKIM 检查详情:
结果:经过(火柴)
#如何修复它?