| 431 |
|
|
| 432 |
|
/* |
| 433 |
|
* privileges: controls the activities and commands an oper is |
| 434 |
< |
* allowed to do on the server. All options default to no. |
| 434 |
> |
* allowed to do on the server. All options default to no. |
| 435 |
|
* Available options: |
| 436 |
|
* |
| 437 |
< |
* global_kill: allows remote users to be /KILL'd (OLD 'O' flag) |
| 438 |
< |
* remote: allows remote SQUIT and CONNECT (OLD 'R' flag) |
| 437 |
> |
* module: allows MODLIST, MODRESTART, MODLOAD, MODUNLOAD |
| 438 |
> |
* global_kill: allows remote users to be /KILL'd |
| 439 |
> |
* remote: allows remote SQUIT and CONNECT |
| 440 |
|
* remoteban: allows remote KLINE/UNKLINE |
| 441 |
< |
* kline: allows KILL, KLINE and DLINE (OLD 'K' flag) |
| 442 |
< |
* unkline: allows UNKLINE and UNDLINE (OLD 'U' flag) |
| 443 |
< |
* gline: allows GLINE (OLD 'G' flag) |
| 444 |
< |
* xline: allows XLINE (OLD 'X' flag) |
| 444 |
< |
* operwall: allows OPERWALL |
| 441 |
> |
* kline: allows KILL, KLINE and DLINE |
| 442 |
> |
* unkline: allows UNKLINE and UNDLINE |
| 443 |
> |
* gline: allows GLINE |
| 444 |
> |
* xline: allows XLINE |
| 445 |
|
* globops: allows GLOBOPS |
| 446 |
< |
* nick_changes: allows oper to see nickchanges (OLD 'N' flag) |
| 446 |
> |
* operwall: allows OPERWALL |
| 447 |
> |
* nick_changes: allows oper to see nickchanges |
| 448 |
|
* via usermode +n |
| 449 |
< |
* rehash: allows oper to REHASH config (OLD 'H' flag) |
| 450 |
< |
* die: allows DIE and RESTART (OLD 'D' flag) |
| 451 |
< |
* admin: gives admin privileges. admins |
| 452 |
< |
* may (un)load modules and see the |
| 453 |
< |
* real IPs of servers. |
| 449 |
> |
* rehash: allows oper to REHASH config |
| 450 |
> |
* die: allows DIE |
| 451 |
> |
* restart: allows RESTART |
| 452 |
> |
* admin: gives admin privileges. admins for example, |
| 453 |
> |
* may see the real IP addresses of servers. |
| 454 |
|
* hidden_admin: same as 'admin', but noone can recognize you as |
| 455 |
|
* being an admin |
| 456 |
|
* hidden_oper: not shown in /stats p (except for other operators) |
| 456 |
– |
* |
| 457 |
– |
* A flag can be negated with ~ i.e. |
| 458 |
– |
* flags = ~remote; |
| 457 |
|
*/ |
| 458 |
< |
flags = global_kill, remote, kline, unkline, xline, globops, |
| 459 |
< |
die, rehash, nick_changes, admin, operwall; |
| 458 |
> |
flags = global_kill, remote, kline, unkline, xline, globops, restart, |
| 459 |
> |
die, rehash, nick_changes, admin, operwall, module; |
| 460 |
|
}; |
| 461 |
|
|
| 462 |
|
service { |
| 963 |
|
kill_chase_time_limit = 90 seconds; |
| 964 |
|
|
| 965 |
|
/* |
| 966 |
< |
* If hide_spoof_ips is disabled, opers will be allowed to see the real IP of spoofed |
| 967 |
< |
* users in /trace etc. If this is defined they will be shown a masked IP. |
| 966 |
> |
* If hide_spoof_ips is disabled, opers will be allowed to see the real |
| 967 |
> |
* IP of spoofed users in /trace etc. If this is defined they will be |
| 968 |
> |
* shown a masked IP. |
| 969 |
|
*/ |
| 970 |
|
hide_spoof_ips = yes; |
| 971 |
|
|