Tip of the day: Channel mode +P makes a channel permanent. The topic and modes are preserved,

even if all users leave the channel, and even if the server is restarted thanks to channeldb.

Translations:Upgrading from 3.2.x/25/en

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Vhost block

In the Vhost block the item vhost::from::userhost is now called vhost::mask:

vhost {
        vhost some.host.name;
        from { userhost { *@*; }; };
        login "test";
        password "xyz";
};

Is now:

vhost {
        vhost some.host.name;
        mask *@*;
        login "test";
        password "xyz";
};