mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-15 20:08:31 +08:00
14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
|
dmarc = [
|
||
|
"v=DMARC1\\;",
|
||
|
'p=reject\\;',
|
||
|
'sp=reject\\;',
|
||
|
'pct=100\\;',
|
||
|
'rua=mailto:xx...@yyyy.com\\;',
|
||
|
'ruf=mailto:xx...@yyyy.com\\;',
|
||
|
'fo=1'
|
||
|
].join(' ');
|
||
|
|
||
|
D("foo.com","none",
|
||
|
TXT('_dmarc', dmarc, TTL(300))
|
||
|
);
|