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.

Except blacklist block

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

The except blacklist block allows you to specify an IP mask that will not be scanned (and not be banned) by the Blacklist blocks

Syntax

except blacklist {
	mask <ipmask>;
};

The except::mask specifies an IP mask that will not be scanned or banned by blacklist blocks.

Example

/* One IP exception in one block */
except blacklist {
	mask 192.168.1.*;
}

/* Multiple IPs in one block */
except blacklist {
	mask { 192.168.*; 10.*; 127.*; }
}