First vmail support
[hcoop/domtool2.git] / src / main-vmail.sml
diff --git a/src/main-vmail.sml b/src/main-vmail.sml
new file mode 100644 (file)
index 0000000..63ea19d
--- /dev/null
@@ -0,0 +1,51 @@
+(* HCoop Domtool (http://hcoop.sourceforge.net/)
+ * Copyright (c) 2006, Adam Chlipala
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *)
+
+(* Driver for vmail *)
+
+val _ =
+    case CommandLine.arguments () of
+       [] => print "Invalid command-line arguments\n"
+      | domain :: rest =>
+       case rest of
+           ["add", user, mailbox] =>
+           (case Client.getpass () of
+                Client.Passwd passwd =>
+                Main.requestNewMailbox {domain = domain,
+                                        user = user,
+                                        passwd = passwd,
+                                        mailbox = mailbox}
+              | _ => ())
+
+         | ["passwd", user] =>
+           (case Client.getpass () of
+                Client.Passwd passwd =>
+                Main.requestPasswdMailbox {domain = domain,
+                                           user = user,
+                                           passwd = passwd}
+              | _ => ())
+
+         | ["rm", user] =>
+           (print ("Are you sure you want to delete the mapping for " ^ user ^ "@" ^ domain ^ "? (yes/no) ");
+            if TextIO.inputLine TextIO.stdIn = SOME "yes\n" then
+                Main.requestRmMailbox {domain = domain,
+                                       user = user}
+            else
+                print "Aborted\n")
+           
+         | _ => print "Invalid command-line arguments\n"