Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions dns/nix.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ D("nix.dev",
REG_NONE,
DnsProvider(DSP_GANDI),

CAA_BUILDER({
label: "@",
iodef: "mailto:[email protected]",
iodef_critical: true,
issue: ["letsencrypt.org"],
issue_critical: true,
issuewild: "none",
issuewild_critical: true,
}),

// Domain is not used for mail
SPF_BUILDER({
label: "@",
Expand Down
10 changes: 10 additions & 0 deletions dns/nixcon.org.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ D("nixcon.org",
REG_NONE,
DnsProvider(DSP_GANDI),

CAA_BUILDER({
label: "@",
iodef: "mailto:[email protected]",
iodef_critical: true,
issue: ["letsencrypt.org"],
issue_critical: true,
issuewild: "none",
issuewild_critical: true,
}),

MX("@", 10, "umbriel.nixos.org."),
SPF_BUILDER({
label: "@",
Expand Down
13 changes: 10 additions & 3 deletions dns/nixos.org.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ D("nixos.org",
// bluesky account/domain binding
TXT("_atproto", "did=did:plc:bf43o4nxudgubwt4iljpayb7"),

CAA_BUILDER({
label: "@",
iodef: "mailto:[email protected]",
iodef_critical: true,
issue: ["letsencrypt.org"],
issue_critical: true,
issuewild: "none",
issuewild_critical: true,
}),

// nixos.org mailing
MX("@", 10, "umbriel"),
SPF_BUILDER({
Expand Down Expand Up @@ -171,9 +181,6 @@ D("nixos.org",
CNAME("test.wiki", "dualstack.n.sni.global.fastly.net."),
CNAME("_acme-challenge.test.wiki", "zsz0meyel8hxoy9dtb.fastly-validations.com."),

// cloudflare pages
CNAME("20th", "20th-nix.pages.dev."),

// github org/domain binding
TXT("_github-challenge-nixos", "9e10a04a4b"),

Expand Down
10 changes: 10 additions & 0 deletions dns/ofborg.org.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ D("ofborg.org",
REG_NONE,
DnsProvider(DSP_GANDI),

CAA_BUILDER({
label: "@",
iodef: "mailto:[email protected]",
iodef_critical: true,
issue: ["letsencrypt.org"],
issue_critical: true,
issuewild: "none",
issuewild_critical: true,
}),

// Domain is not used for mail
SPF_BUILDER({
label: "@",
Expand Down