Tip of the day: To upgrade UnrealIRCd on *NIX simply run: ./unrealircd upgrade

Official-channels block

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Official channels are shown in /LIST even if no users are in the channel.

IMPORTANT: This feature is DEPRECATED. Instead, you should set channel mode +P (Permanent channel). This allows you to dynamically add and remove channels including all settings such as: topic, modes (regular modes and bans/exempts/invex), etc. All this information is stored in a database by the channeldb module (loaded by default).

Syntax

official-channels {
	"#channel" { topic "The default topic"; };
};

The topic is optional and is only shown in /LIST if the channel has 0 users.

Example

official-channels {
	"#Help" { topic "The official help channel, if nobody is present type /helpop helpme"; };
	"#Home";
	"#Main" { topic "The main channel"; };
};