Skip to content

Commit 83a36a6

Browse files
authoredMar 7, 2025··
DOCS: SOA RNAME description isn't accurate (#3481)
1 parent bd2c940 commit 83a36a6

File tree

1 file changed

+1
-5
lines changed
  • documentation/language-reference/domain-modifiers

1 file changed

+1
-5
lines changed
 

‎documentation/language-reference/domain-modifiers/SOA.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,11 @@ parameter_types:
2525
{% code title="dnsconfig.js" %}
2626
```javascript
2727
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
28-
SOA("@", "ns3.example.com.", "hostmaster@example.com", 3600, 600, 604800, 1440),
28+
SOA("@", "ns3.example.com.", "hostmaster.example.com.", 3600, 600, 604800, 1440),
2929
);
3030
```
3131
{% endcode %}
3232

33-
If you accidentally include an `@` in the email field DNSControl will quietly
34-
change it to a `.`. This way you can specify a human-readable email address
35-
when you are making it easier for spammers how to find you.
36-
3733
## Notes
3834
* The serial number is managed automatically. It isn't even a field in `SOA()`.
3935
* Most providers automatically generate SOA records. They will ignore any `SOA()` statements.

0 commit comments

Comments
 (0)
Please sign in to comment.