对于我的应用程序,我需要创建 MX 和 SRV 记录。如果我只在 install.json 中包含 MX 记录,它就可以工作。如果我还添加了我需要的 SRV 记录,我会收到代码“dns”和消息“保存 DNS 时出错”的错误。
以下是我的 install.json 中的“dns”部分,实际域名已更改:
"dns": [
{
"content": "mx.example.com.",
"name": "_mx._tcp.example.name",
"port": 25,
"priority": 10,
"type": "SRV",
"weight": 10
},
{
"content": "mx1.example.net",
"name": "example.org",
"priority": 1,
"type": "MX"
},
{
"content": "mx2.exmaple.net",
"name": "example.org",
"priority": 1,
"type": "MX"
}
],
我做错了什么,还是这不可能?