Tip of the day: You can allow trusted users to send more messages per second without having to make them IRCOp. Especially useful for bots.

Translations:Configuration/38/en

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Official-channels block

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"; }
}