Check mailbox existence for various vmail commands
[hcoop/domtool2.git] / src / main.sig
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 (* Main interface *)
20
21 signature MAIN = sig
22
23 val init : unit -> unit
24
25 val check : string -> Env.env * Ast.exp option
26 val check' : Env.env -> string -> Env.env
27 val checkDir : string -> unit
28
29 val basis : unit -> Env.env
30
31 val reduce : string -> Ast.exp option
32 val eval : string -> unit
33
34 val request : string -> unit
35 val requestDir : string -> unit
36
37 val requestGrant : Acl.acl -> unit
38 val requestRevoke : Acl.acl -> unit
39 val requestListPerms : string -> (string * string list) list option
40 val requestWhoHas : {class : string, value : string} -> string list option
41 val requestRmdom : string list -> unit
42 val requestRegen : unit -> unit
43 val requestRmuser : string -> unit
44
45 val service : unit -> unit
46 val slave : unit -> unit
47
48 val listBasis : unit -> string list
49 val autodocBasis : string -> unit
50
51 val requestDbUser : {dbtype : string, passwd : string option} -> unit
52 val requestDbTable : {dbtype : string, dbname : string} -> unit
53
54 val requestListMailboxes : string -> Vmail.listing
55 val requestNewMailbox : {domain : string, user : string,
56 passwd : string, mailbox : string} -> unit
57 val requestPasswdMailbox : {domain : string, user : string, passwd : string}
58 -> unit
59 val requestRmMailbox : {domain : string, user : string} -> unit
60 end