| 258 |
|
max_number = 100; |
| 259 |
|
sendq = 100 kbytes; |
| 260 |
|
|
| 261 |
– |
|
| 261 |
|
/* |
| 262 |
|
* max_channels: maximum number of channels users in this class can join. |
| 263 |
|
*/ |
| 523 |
|
* allowed to do on the server. All flags default to 'no'. |
| 524 |
|
* Available flags: |
| 525 |
|
* |
| 526 |
< |
* module - allows MODULE |
| 526 |
> |
* admin - gives administrator privileges | ('A' flag) |
| 527 |
|
* connect - allows local CONNECT | ('P' flag) |
| 528 |
|
* connect:remote - allows remote CONNECT | ('Q' flag) |
| 529 |
< |
* squit - allows local SQUIT | ('R' flag) |
| 530 |
< |
* squit:remote - allows remote SQUIT | ('S' flag) |
| 529 |
> |
* die - allows DIE | ('D' flag) |
| 530 |
> |
* dline - allows DLINE | |
| 531 |
> |
* gline - allows GLINE | ('G' flag) |
| 532 |
> |
* globops - allows GLOBOPS | |
| 533 |
|
* kill - allows to KILL local clients | ('N' flag) |
| 534 |
|
* kill:remote - allows remote users to be /KILL'd | ('O' flag) |
| 534 |
– |
* remoteban - allows remote KLINE/UNKLINE | ('B' flag) |
| 535 |
– |
* dline - allows DLINE | |
| 536 |
– |
* undline - allows UNDLINE | |
| 535 |
|
* kline - allows KLINE | ('K' flag) |
| 538 |
– |
* unkline - allows UNKLINE | ('U' flag) |
| 539 |
– |
* gline - allows GLINE | ('G' flag) |
| 540 |
– |
* xline - allows XLINE | ('X' flag) |
| 541 |
– |
* unxline - allows UNXLINE | |
| 536 |
|
* locops - allows LOCOPS | |
| 537 |
< |
* globops - allows GLOBOPS | |
| 544 |
< |
* wallops - allows WALLOPS | |
| 537 |
> |
* module - allows MODULE | |
| 538 |
|
* rehash - allows oper to REHASH config | ('H' flag) |
| 539 |
< |
* die - allows DIE | ('D' flag) |
| 539 |
> |
* remoteban - allows remote KLINE/UNKLINE | ('B' flag) |
| 540 |
|
* restart - allows RESTART | |
| 541 |
|
* set - allows SET | |
| 542 |
< |
* admin - gives administrator privileges | ('A' flag) |
| 542 |
> |
* squit - allows local SQUIT | ('R' flag) |
| 543 |
> |
* squit:remote - allows remote SQUIT | ('S' flag) |
| 544 |
> |
* undline - allows UNDLINE | |
| 545 |
> |
* unkline - allows UNKLINE | ('U' flag) |
| 546 |
> |
* unxline - allows UNXLINE | |
| 547 |
> |
* wallops - allows WALLOPS | |
| 548 |
> |
* xline - allows XLINE | ('X' flag) |
| 549 |
|
*/ |
| 550 |
< |
flags = kill, kill:remote, connect, connect:remote, kline, unkline, |
| 551 |
< |
xline, globops, restart, die, rehash, admin, module; |
| 550 |
> |
flags = admin, connect, connect:remote, die, globops, kill, kill:remote, |
| 551 |
> |
kline, module, rehash, restart, set, unkline, unxline, xline; |
| 552 |
|
}; |
| 553 |
|
|
| 554 |
|
/* |
| 731 |
|
|
| 732 |
|
/* |
| 733 |
|
* kill {}: users that are not allowed to connect |
| 734 |
< |
* Oper issued klines will be added to the specified kline config |
| 734 |
> |
* Oper issued klines will be added to the specified kline database |
| 735 |
|
*/ |
| 736 |
|
kill { |
| 737 |
|
user = "bad@*.hacked.edu"; |
| 741 |
|
/* |
| 742 |
|
* deny {}: IP addresses that are not allowed to connect |
| 743 |
|
* (before DNS/ident lookup) |
| 744 |
< |
* Oper issued dlines will be added to the specified dline config |
| 744 |
> |
* Oper issued dlines will be added to the specified dline database |
| 745 |
|
*/ |
| 746 |
|
deny { |
| 747 |
|
ip = "10.0.1.0/24"; |
| 787 |
|
}; |
| 788 |
|
|
| 789 |
|
/* |
| 790 |
< |
* gecos {}: Used for banning users based on their "realname". |
| 790 |
> |
* gecos {}: used for banning users based on their "realname". |
| 791 |
|
*/ |
| 792 |
|
gecos { |
| 793 |
|
name = "*sex*"; |
| 800 |
|
}; |
| 801 |
|
|
| 802 |
|
/* |
| 803 |
< |
* channel {}: The channel block contains options pertaining to channels |
| 803 |
> |
* channel {}: the channel block contains options pertaining to channels |
| 804 |
|
*/ |
| 805 |
|
channel { |
| 806 |
|
/* |
| 885 |
|
}; |
| 886 |
|
|
| 887 |
|
/* |
| 888 |
< |
* serverhide {}: The serverhide block contains the options regarding |
| 888 |
> |
* serverhide {}: the serverhide block contains the options regarding |
| 889 |
|
* to server hiding. For more information regarding server hiding, |
| 890 |
|
* please see doc/serverhide.txt |
| 891 |
|
*/ |
| 927 |
|
hide_services = no; |
| 928 |
|
|
| 929 |
|
/* |
| 930 |
< |
* Use this as the servername users see if hide_servers = yes. |
| 930 |
> |
* hidden_name: use this as the servername users see if hide_servers = yes. |
| 931 |
|
*/ |
| 932 |
|
hidden_name = "*.hidden.com"; |
| 933 |
|
|
| 947 |
|
}; |
| 948 |
|
|
| 949 |
|
/* |
| 950 |
< |
* general {}: The general block contains many of the options that were once |
| 950 |
> |
* general {}: the general block contains many of the options that were once |
| 951 |
|
* compiled in options in config.h |
| 952 |
|
*/ |
| 953 |
|
general { |
| 1215 |
|
*/ |
| 1216 |
|
|
| 1217 |
|
/* oper_only_umodes: usermodes only operators may set. */ |
| 1218 |
< |
oper_only_umodes = bots, cconn, debug, full, hidden, skill, |
| 1219 |
< |
nchange, rej, spy, external, |
| 1221 |
< |
locops, unauth, farconnect; |
| 1218 |
> |
oper_only_umodes = bots, cconn, debug, external, farconnect, full, hidden, locops, |
| 1219 |
> |
nchange, rej, skill, spy, unauth; |
| 1220 |
|
|
| 1221 |
|
/* oper_umodes: default usermodes operators get when they /oper or /challenge. */ |
| 1222 |
|
oper_umodes = bots, locops, servnotice, wallop; |