diff options
author | Adam <Adam@anope.org> | 2017-06-24 16:20:08 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-06-24 16:20:08 -0400 |
commit | f90b2dc3dbdb79a50933a0034b2339693615b02a (patch) | |
tree | 5f944f90aa8c9ba0c028eaabeb4f458893dd8ae3 /data/hostserv.example.conf | |
parent | 8133bcaf48bb6a678bc17a9373cc59a97b68a74e (diff) |
Add hostserv ban command to ban users from requesting vhosts
Diffstat (limited to 'data/hostserv.example.conf')
-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. |