More helpful error message for failure to create an SSL context
[hcoop/domtool2.git] / src / main-vmail.sml
CommitLineData
08688401
AC
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
1d3ef80e
AC
26 ["list"] =>
27 (case Main.requestListMailboxes domain of
28 Vmail.Error msg => (print msg;
29 print "\n")
2fc6b0dd
AC
30 | Vmail.Listing users => app (fn {user, mailbox} => (print user;
31 print "\t";
32 print mailbox;
33 print "\n")) users)
1d3ef80e
AC
34
35 | ["add", user, mailbox] =>
08688401
AC
36 (case Client.getpass () of
37 Client.Passwd passwd =>
38 Main.requestNewMailbox {domain = domain,
39 user = user,
40 passwd = passwd,
41 mailbox = mailbox}
42 | _ => ())
43
44 | ["passwd", user] =>
45 (case Client.getpass () of
46 Client.Passwd passwd =>
47 Main.requestPasswdMailbox {domain = domain,
48 user = user,
49 passwd = passwd}
50 | _ => ())
51
52 | ["rm", user] =>
53 (print ("Are you sure you want to delete the mapping for " ^ user ^ "@" ^ domain ^ "? (yes/no) ");
54 if TextIO.inputLine TextIO.stdIn = SOME "yes\n" then
55 Main.requestRmMailbox {domain = domain,
56 user = user}
57 else
58 print "Aborted\n")
59
60 | _ => print "Invalid command-line arguments\n"