Add dnsWildcardIP
[hcoop/domtool2.git] / lib / easy_domain.dtl
index ee223f2..c3e79b7 100644 (file)
@@ -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) ->
@@ -50,11 +51,23 @@ val dom =
   domain d with
     dns (dnsNS "ns1.hcoop.net");
     dns (dnsNS "ns3.hcoop.net");
+    dns (dnsNS "ns5.hcoop.net");
 
     dns (dnsA default (ip_of_node (web_node_to_node web_node)));
 
-    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 "deleuze.hcoop.net")
+    else
+      Skip
+    end;
 
     createWWW : bool <- CreateWWW;
     if createWWW then
@@ -82,3 +95,5 @@ val dnsDefault = \to -> dns (dnsA default to);
 val dnsDefaultv6 = \to -> dns (dnsAAAA 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);