diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/hostserv.example.conf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/hostserv.example.conf b/data/hostserv.example.conf index 6d551e26b..f62ea74ba 100644 --- a/data/hostserv.example.conf +++ b/data/hostserv.example.conf @@ -92,6 +92,18 @@ module { name = "hostserv/add" } command { service = "HostServ"; name = "ADD"; command = "hostserv/add"; permission = "hostserv/add"; } /* + * hostserv/ban + * + * Provides the commands hostserv/ban, hostserv/unban, and hostserv/banlist. + * + * Used for banning users from requesting vhosts. + */ +module { name = "hostserv/ban" } +command { service = "HostServ"; name = "BAN"; command = "hostserv/ban"; permission = "hostserv/ban"; } +command { service = "HostServ"; name = "UNBAN"; command = "hostserv/unban"; permission = "hostserv/ban"; } +command { service = "HostServ"; name = "BANLIST"; command = "hostserv/banlist"; permission = "hostserv/ban"; } + +/* * hostserv/del * * Provides the command hostserv/del. |