Tip of the day: If you don't want to receive private messages, set user mode +D. You can also force it on all users.

Or, if you only want to allow private messages from people who are identified to Services then set +R.

Translations:Configuration/17/es

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Bloque de baneo de nick

The ban nick block allows you to disable use of a nickname on the server. This is the same as a "Q-Line" from Services.

Syntax

ban nick {

	mask <nickname>;
	reason <reason-for-ban>;
};

The ban::mask allows wildcard masks to match multiple nicks, and ban::reason allows you to specify the reason for which this ban is placed. Most commonly these blocks are used to ban usage of the nicknames commonly used for network services.

Example

Single nick

ban nick {
	mask "*C*h*a*n*S*e*r*v*";
	reason "Reserved for Services";
};

Multiple nicks

Requires UnrealIRCd 6.1.8 or later

ban nick {
    mask { nick; nick2; nick3; }
    reason "Go away";
}