Listing vmail mailboxes
[hcoop/domtool2.git] / src / main-vmail.sml
... / ...
CommitLineData
1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 *)
18
19(* Driver for vmail *)
20
21val _ =
22 case CommandLine.arguments () of
23 [] => print "Invalid command-line arguments\n"
24 | domain :: rest =>
25 case rest of
26 ["list"] =>
27 (case Main.requestListMailboxes domain of
28 Vmail.Error msg => (print msg;
29 print "\n")
30 | Vmail.Listing users => app (fn user => (print user;
31 print "\n")) users)
32
33 | ["add", user, mailbox] =>
34 (case Client.getpass () of
35 Client.Passwd passwd =>
36 Main.requestNewMailbox {domain = domain,
37 user = user,
38 passwd = passwd,
39 mailbox = mailbox}
40 | _ => ())
41
42 | ["passwd", user] =>
43 (case Client.getpass () of
44 Client.Passwd passwd =>
45 Main.requestPasswdMailbox {domain = domain,
46 user = user,
47 passwd = passwd}
48 | _ => ())
49
50 | ["rm", user] =>
51 (print ("Are you sure you want to delete the mapping for " ^ user ^ "@" ^ domain ^ "? (yes/no) ");
52 if TextIO.inputLine TextIO.stdIn = SOME "yes\n" then
53 Main.requestRmMailbox {domain = domain,
54 user = user}
55 else
56 print "Aborted\n")
57
58 | _ => print "Invalid command-line arguments\n"