Tip of the day: You can use the SAJOIN command to force a user to join a channel. Bans and other restrictions will be bypassed.

Me block

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

The me block defines the identity of the server.

Syntax:

me {
	name <name-of-server>;
	info "<server-description>";
	sid <server-id>;
}

The item name specifies the name of the server, info specifies the server's info line, sid is an unique server id which is a digit followed by two digits/letters in uppercase. This is an unique server value meaning NO other servers on the network may have the same sid.

Example:

me {
	name "irc.foonet.com";
	info "FooNet Server";
	sid 001;
}