mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-12-09 13:46:07 +08:00
24 lines
451 B
Markdown
24 lines
451 B
Markdown
---
|
|
name: RP
|
|
parameters:
|
|
- name
|
|
- mbox
|
|
- txt
|
|
- modifiers...
|
|
parameter_types:
|
|
name: string
|
|
address: string
|
|
"modifiers...": RecordModifier[]
|
|
---
|
|
|
|
`RP()` adds an RP record to a domain.
|
|
|
|
The RP implementation in DNSControl is still experimental and may change.
|
|
|
|
{% code title="dnsconfig.js" %}
|
|
```javascript
|
|
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
|
|
RP("@", "user.example.com.", "example.com."),
|
|
);
|
|
```
|
|
{% endcode %}
|