First vmail support
[hcoop/domtool2.git] / src / domain.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 (* Domain-related primitive actions *)
20
21 signature DOMAIN = sig
22
23 val yourPath : string -> bool
24 val isIdent : char -> bool
25 val validHost : string -> bool
26 val validDomain : string -> bool
27 val yourDomain : string -> bool
28 val validUser : string -> bool
29
30 val ip : string Env.arg
31
32 val registerResetGlobal : (unit -> unit) -> unit
33 val registerResetLocal : (unit -> unit) -> unit
34 (* Register functions for clearing out all Domtool configuration at the global
35 * (AFS) and local levels, respectively. *)
36
37 val resetGlobal : unit -> unit
38 val resetLocal : unit -> unit
39 (* Call all registered functions *)
40
41 val registerBefore : (string -> unit) -> unit
42 val registerAfter : (string -> unit) -> unit
43 (* Register handlers to run just before and after entering a domain
44 * block. *)
45
46 val currentDomain : unit -> string
47
48 val domainFile : {node : string, name : string} -> TextIO.outstream
49 (* Open one of the current domain's configuration files for a particular
50 * node. *)
51
52 val dnsMaster : unit -> string option
53 (* Name of the node that is the DNS master for the current domain, if there
54 * is one *)
55
56 val nodes : string list
57 (* Names of all system nodes *)
58 val nodeMap : string Ast.StringMap.map
59 (* Map node names to IP addresses *)
60 val nodeIp : string -> string
61 (* Look up a node in nodeMap *)
62
63 val setUser : string -> unit
64 val getUser : unit -> string
65 (* Name of the UNIX user providing this configuration *)
66
67 val your_domains : unit -> DataStructures.StringSet.set
68 (* The domains the current user may configure *)
69
70 val your_users : unit -> DataStructures.StringSet.set
71 val your_groups : unit -> DataStructures.StringSet.set
72 val your_paths : unit -> DataStructures.StringSet.set
73 (* UNIX users, groups, and paths the user may act with *)
74
75 val set_context : OpenSSL.context -> unit
76
77 val hasPriv : string -> bool
78
79 val rmdom : string list -> unit
80 end