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.

Allow DCC block

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

The allow dcc blocks allows you to specify exceptions over the Deny DCC block.

Syntax

allow dcc {
	filename "<filename-mask>";
	soft [yes|no];
};

The filename specifies the name of the file, wildcards are permitted. If allow dcc::soft is set to 'yes' it applies to 'soft dcc bans' list, if set to 'no' it applies to the normal ('hard') dcc bans.

Example

allow dcc {
	filename "*.jpg"; /* Images are usually safe */
	soft yes;
};