我们的DNS是通过微软管理的。我需要建立一个新的记录,以允许一个新的网站发送电子邮件。这就是我所做的。
1)我设置了以下SPF记录主机:subdomain值:v=spf1 ip4:xxxx ip6:xxx include:subdomain.domain.com -all
2)有一个现有的SPF记录主机:@值:v=spf1 include:spf.protection.outlook.com -all
当我测试它时,我得到以下错误
PermError SPF Permanent Error: include has trivial recursion: include:subdomain.domain.com有人能告诉我为什么以及如何修复它吗?
另外,对于新的SPF,如果我将主机添加为@,我应该如何增加值?
非常感谢!
发布于 2020-03-19 04:04:00
您需要设置多个SPF记录。对吗?
SPF不能有多个TXT条目。你必须把所有的东西结合起来。
v=spf1 ip4:xxxx ip6:xxx include:spf1.sampledomain.com include:spf2.sampledomain.com include:spf3.sampledomain.com -all发布于 2020-03-18 22:42:53
您正在为域设置SPF记录: subdomain.domain.com
您不应该在自己的记录中包含自身的递归查找(包含)。我相信你打算创造记录
v=spf1 ip4:xxxx ip6:xxx a:subdomain.domain.com -all因此它查找子域的DNS A记录。另外要注意的是,这个SPF记录需要在结构的subdomain.domain.com级别,而不是直接应用到domain.com级别。
https://serverfault.com/questions/1007478
复制相似问题