Move ambient environment defaults into Env.env
[hcoop/domtool2.git] / src / plugins / easy_domain.sml
index 2d7110c..7a15dea 100644 (file)
@@ -1,5 +1,6 @@
 (* HCoop Domtool (http://hcoop.sourceforge.net/)
  * Copyright (c) 2007, Adam Chlipala
+ * Copyright (c) 2014  Clinton Ebadi <clinton@unknownlamer.org>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -42,6 +43,10 @@ val _ = Defaults.registerDefault ("DefaultAlias",
                                  (TBase "bool", dl),
                                  (fn () => (EVar "true", dl)))
 
+val _ = Defaults.registerDefault ("DefaultAliasSource",
+                                 (TBase "aliasSource", dl),
+                                 (fn () => (EVar "defaultSource", dl)))
+
 val _ = Defaults.registerDefault ("HandleMail",
                                  (TBase "bool", dl),
                                  (fn () => (EVar "true", dl)))
@@ -52,6 +57,6 @@ val _ = Defaults.registerDefault ("AddMX",
 
 val _ = Defaults.registerDefault ("DefaultWebNode",
                                  (TBase "web_node", dl),
-                                 (fn () => (EVar "mire", dl)))
+                                 (fn () => (EString "navajos", dl)))
 
 end