dnscontrol/documentation/language-reference/domain-modifiers/RP.md
Thomas Limoncelli b06a721e71
fix RP docs
2025-12-04 16:39:55 -05:00

462 B

name parameters parameter_types
RP
name
mbox
txt
modifiers...
name mbox txt modifiers...
string string string RecordModifier[]

RP() adds an RP record to a domain.

The RP implementation in DNSControl is still experimental and may change.

{% code title="dnsconfig.js" %}

D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
  RP("@", "user.example.com.", "example.com."),
);

{% endcode %}