| Tip of the day: If you run multiple servers then consider using Remote includes to share configuration settings. |
Translations:Upgrading from 3.2.x/20/en
Jump to navigation
Jump to search
In UnrealIRCd 4 this may look like:
oper TestOper {
mask 192.168.*;
password "test";
operclass netadmin;
swhois "a Network Administrator";
class clients;
};
Above we refer to an operclass called netadmin. This netadmin operclass is defined in the operclass.default.conf shipped with UnrealIRCd 4 by default. You probably want to include this file in your unrealircd.conf like:
include "operclass.default.conf";
(similarly to how most people should load modules.default.conf)