basic internal ipv6 support
[hcoop/domtool2.git] / src / main-config.sml
index 8aacdb0..9443501 100644 (file)
@@ -27,6 +27,8 @@
 *)
 
 fun println x = (print x; print "\n")
+fun printerr x = (TextIO.output (TextIO.stdErr, x); TextIO.flushOut TextIO.stdErr)
+fun die reason = (printerr reason; printerr "\n"; OS.Process.exit OS.Process.failure)
 
 val _ =
     (case CommandLine.arguments () of 
@@ -39,9 +41,10 @@ val _ =
                                                       | "certs" => println Config.certDir
                                                       | "keys" => println Config.keyDir
                                                       | "truststore" => println Config.trustStore
-                                                      | _ => println "Invalid cert path type")
-                               | _ => print "Invalid path type\n")
-      | ["-nodes"] => (app (fn (n, _) => (print n; print " ")) Config.nodeIps;
+                                                      | _ => die "Invalid cert path type")
+                               | ["vmaildb"] => println Config.Vmail.userDatabase
+                               | _ => die "Invalid path type")
+      | ["-nodes"] => (app (fn (n, _, _) => (print n; print " ")) Config.nodeIps;
                       print "\n")
       | ["-domain"] => println Config.defaultDomain
-      | _ => print "Invalid command-line arguments\n")
+      | _ => die "Invalid command-line arguments")