Tip of the day: Channel mode +P makes a channel permanent. The topic and modes are preserved,

even if all users leave the channel, and even if the server is restarted thanks to channeldb.

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