Tip of the day: What is shown in WHOIS can be configured in detail via set::whois-details.

Translations:Upgrading from 3.2.x/20/en

From UnrealIRCd documentation wiki
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)