X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/d63aa5e7b08630cc17a606e85e35acc5bd0041ee..b2293570ee621fcb91f62b4effde0fe9b9c32cbd:/src/main-config.sml diff --git a/src/main-config.sml b/src/main-config.sml index 8aacdb0..a3fc686 100644 --- a/src/main-config.sml +++ b/src/main-config.sml @@ -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") + | _ => 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")