Add README and make some sanity changes.

This commit is contained in:
2026-03-08 13:36:30 -04:00
parent 57930abc00
commit 77293ba260
2 changed files with 41 additions and 6 deletions

View File

@@ -30,9 +30,14 @@ DEFAULTS(
}),
);
/* ****************************************************************************************************************** *\
Primary Domains
Managed Domains
\* ****************************************************************************************************************** */
/* -------------------------------------------------------------------------- *\
Primary Domains
\* -------------------------------------------------------------------------- */
D("arirex.me", REG_101DOMAIN,
ALIAS("@", rexbox),
protonmail("6fd60590dc31588ca5a85c7e311649ff5f93cab2", "dodai2qaszneyk5jeyfloq24ttjcqfer2gdopw3nfmxn3bugtw2hq"),
@@ -59,9 +64,9 @@ D("achl.fr", REG_101DOMAIN,
);
/* ****************************************************************************************************************** *\
/* -------------------------------------------------------------------------- *\
Email Proxy Domains
\* ****************************************************************************************************************** */
\* -------------------------------------------------------------------------- */
D("arirex.email", REG_101DOMAIN,
simplelogin("ngmfowygibangqmiobjznfmjhxniyi"),
);
@@ -136,9 +141,9 @@ cnames("arirex.me", rexcloud, [
* @param {string[]} records - Array of "comment@subdomain" strings
*/
function cnames(domain, target, records) {
records.forEach(function(r) {
var parts = r.split("@");
D_EXTEND(domain, CNAME(parts[1], target, CF_COMMENT(parts[0])));
records.forEach(function(rec) {
var part = rec.split("@");
D_EXTEND(domain, CNAME(part[1], target, CF_COMMENT(part[0])));
});
}