X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/cfedb9220fc5a849df6d5d85cc929d1f72ac0326..942d94aba98ad4610ef258f17b073090bcd775f9:/lib/easy_domain.dtl diff --git a/lib/easy_domain.dtl b/lib/easy_domain.dtl index 2f8c0ab..4b9989b 100644 --- a/lib/easy_domain.dtl +++ b/lib/easy_domain.dtl @@ -2,6 +2,7 @@ val default_node : (node) = "mire"; val web_node : (web_node) = "mire"; +val web_ip = ip_of_node (web_node_to_node web_node); val webAt = \ n : (web_node) -> @@ -49,12 +50,28 @@ val dom = \\ config : Domain -> domain d with dns (dnsNS "ns1.hcoop.net"); - dns (dnsNS "ns3.hcoop.net"); + dns (dnsNS "ns2.hcoop.net"); - dns (dnsA default (ip_of_node (web_node_to_node web_node))); + defa : bool <- DefaultA; + if defa then + dns (dnsA default (ip_of_node (web_node_to_node web_node))) + else + Skip + end; - handleMail; - dns (dnsMX 1 "deleuze.hcoop.net"); + hmail : bool <- HandleMail; + if hmail then + handleMail + else + Skip + end; + + amx : bool <- AddMX; + if amx then + dns (dnsMX 1 "mail.hcoop.net") + else + Skip + end; createWWW : bool <- CreateWWW; if createWWW then @@ -80,5 +97,7 @@ val dnsMail = \num -> \host -> dns (dnsMX num host); val dnsAlias = \from -> \to -> dns (dnsCNAME (literal from) to); val dnsDefault = \to -> dns (dnsA default to); val dnsDefaultv6 = \to -> dns (dnsAAAA default to); -val dnsText = \from -> \to -> dns (dnsTXT (literal from) to); -val dnsDefaultText = \to -> dns (dnsTXT default to); +val dnsText = \from -> \to -> dns (dnsTXT (srv_literal from) to); +val dnsDefaultText = \to -> dns (dnsTXT srv_default to); + +val dnsWildcardIP = \to -> dns (dnsA wildcard to);