From f12ebd1f2ac718e17c438410c332192d1360d6a3 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 12 May 2013 14:51:41 +0000 Subject: - Removed 'remote', and 'global_kill' oper flags, and added 'connect', 'squit', and 'kill' flags for better fine-tuning instead. Whether or not a specific action is allowed on a remote server can be controlled by appeding the ':remote' flag. For example: 'kill' allows only local clients to be killed, whereas 'kill:remote' allows to issue a KILL for remote clients git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2013 82007160-df01-0410-b94d-b575c5fd34c7 --- doc/reference.conf | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) (limited to 'doc') diff --git a/doc/reference.conf b/doc/reference.conf index da977bf..87c5a5c 100644 --- a/doc/reference.conf +++ b/doc/reference.conf @@ -477,27 +477,31 @@ operator { * allowed to do on the server. All options default to no. * Available options: * - * module - allows MODULE - * global_kill - allows remote users to be /KILL'd - * remote - allows remote SQUIT and CONNECT - * remoteban - allows remote KLINE/UNKLINE - * dline - allows DLINE - * undline - allows UNDLINE - * kline - allows KILL and KLINE - * unkline - allows UNKLINE - * gline - allows GLINE - * xline - allows XLINE - * globops - allows GLOBOPS - * operwall - allows OPERWALL - * rehash - allows oper to REHASH config - * die - allows DIE - * restart - allows RESTART - * set - allows SET - * admin - gives admin privileges. admins for example, - * may see the real IP addresses of servers. - */ - flags = global_kill, remote, kline, unkline, xline, globops, restart, - die, rehash, admin, operwall, module; + * module - allows MODULE + * connect - allows local CONNECT + * connect:remote - allows remote CONNECT + * squit - allows local SQUIT + * squit:remote - allows remote SQUIT + * kill - allows to KILL local clients + * kill:remote - allows remote users to be /KILL'd + * remoteban - allows remote KLINE/UNKLINE + * dline - allows DLINE + * undline - allows UNDLINE + * kline - allows KILL and KLINE + * unkline - allows UNKLINE + * gline - allows GLINE + * xline - allows XLINE + * globops - allows GLOBOPS + * operwall - allows OPERWALL + * rehash - allows oper to REHASH config + * die - allows DIE + * restart - allows RESTART + * set - allows SET + * admin - gives admin privileges. admins for example, + * may see the real IP addresses of servers. + */ + flags = kill, kill:remote, connect, connect:remote, kline, unkline, + xline, globops, restart, die, rehash, admin, operwall, module; }; /* -- cgit