Is it possible to stop users from creating new channels on /join so that the only channels they have access to are those on the official channels list?
Is it just a simple case of creating this:
deny channel {
channel "#*";
reason no user created channels;
};
Our network is very topic specific and we don't want people branching out into channels that are not related to our site.
Personally i would use a deny channel block on the mask * since #* wont block the channel # and then an allow channel block for every authorized channel.