Domain alias support for Webalizer
[hcoop/domtool2.git] / src / main.sig
CommitLineData
234b917a
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.
dac62e84 17 *)
234b917a
AC
18
19(* Main interface *)
20
21signature MAIN = sig
22
aa56e112 23 val init : unit -> unit
234b917a 24
d189ec0e
AC
25 val check : string -> Env.env * Ast.exp option
26 val check' : Env.env -> string -> Env.env
1824f573 27 val checkDir : string -> unit
d189ec0e
AC
28
29 val basis : unit -> Env.env
30
31 val reduce : string -> Ast.exp option
a3698041 32 val eval : string -> unit
234b917a 33
559e89e9 34 val request : string -> unit
c53e82e4
AC
35 val requestDir : string -> unit
36
62260c5f 37 val requestPing : unit -> OS.Process.status
9f27d58f 38 val requestShutdown : unit -> unit
5ee41dd0 39 val requestGrant : Acl.acl -> unit
411a85f2 40 val requestRevoke : Acl.acl -> unit
08a04eb4 41 val requestListPerms : string -> (string * string list) list option
094877b1 42 val requestWhoHas : {class : string, value : string} -> string list option
e69e60cc 43 val requestRmdom : string list -> unit
1824f573 44 val requestRegen : unit -> unit
e69e60cc 45 val requestRmuser : string -> unit
5ee41dd0 46
c9731b9b
AC
47 val requestSlavePing : unit -> OS.Process.status
48 val requestSlaveShutdown : unit -> unit
49
3b267643 50 val service : unit -> unit
36e42cb8 51 val slave : unit -> unit
559e89e9 52
44a5ce2f 53 val listBasis : unit -> string list
3196000d
AC
54 val autodocBasis : string -> unit
55
21d921a5 56 val requestDbUser : {dbtype : string, passwd : string option} -> unit
86aa5de7 57 val requestDbPasswd : {dbtype : string, passwd : string} -> unit
90dd48df 58 val requestDbTable : {dbtype : string, dbname : string} -> unit
d541c618 59
1d3ef80e 60 val requestListMailboxes : string -> Vmail.listing
08688401
AC
61 val requestNewMailbox : {domain : string, user : string,
62 passwd : string, mailbox : string} -> unit
63 val requestPasswdMailbox : {domain : string, user : string, passwd : string}
64 -> unit
65 val requestRmMailbox : {domain : string, user : string} -> unit
2e96b9d4
AC
66
67 val requestSaQuery : string -> unit
68 val requestSaSet : string * bool -> unit
2bc5ed22
AC
69
70 val requestSmtpLog : string -> unit
75585a67
AC
71
72 val requestApt : {node : string, pkg : string} -> OS.Process.status
d351d679
AC
73 val requestCron : {node : string, uname : string} -> OS.Process.status
74 val requestFtp : {node : string, uname : string} -> OS.Process.status
4d5126e1 75 val requestTrustedPath : {node : string, uname : string} -> OS.Process.status
737c68d4 76 val requestSocketPerm : {node : string, uname : string} -> OS.Process.status
f9548f16 77 val requestFirewall : {node : string, uname : string} -> OS.Process.status
234b917a 78end