Tip of the day: If you run multiple servers then consider using Remote includes to share configuration settings.

Translations:Configuration/5/zh-tw

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Me模組

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