diff options
Diffstat (limited to 'conf/channels.conf.base')
-rw-r--r-- | conf/channels.conf.base | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/conf/channels.conf.base b/conf/channels.conf.base index c7e372c14..dee7575b6 100644 --- a/conf/channels.conf.base +++ b/conf/channels.conf.base @@ -63,5 +63,14 @@ chsys: ( irc_channel_nick_pw: "" /* password to this nick (if any) to identify to nick server on the irc network */ irc_channel_use_ghost: false /* whether to send a GHOST command to the nick server (requires irc_channel_nick_pw to be defined) */ irc_channel_autojoin: true + irc_flood_protection_enabled: true /* Whether to enable anti-flood protection for outgoing messages */ + irc_flood_protection_rate: 1000 /* The delay between messages during anti-flood protection (milliseconds) */ + irc_flood_protection_burst: 3 /* The maximum number of messages that are sent at once burst size before triggering the anti-flood protection */ + + // @channel setopt MessageDelay <delay> + // Sets the maximum amount of message delay (in seconds) allowed for a channel. + // Default: 10 + // Max: 255 + channel_opt_msg_delay: 10 } ) |