X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/765d839d3c25cf804d7c0f8dbf82ad5f04b09a12..b2c208be091670e3c5259eba77187bae6ac6eece:/modules/m_info.c diff --git a/modules/m_info.c b/modules/m_info.c index 456b846e..9d11ee4f 100644 --- a/modules/m_info.c +++ b/modules/m_info.c @@ -119,7 +119,7 @@ static struct InfoStruct info_table[] = { "client_exit", OUTPUT_BOOLEAN, &ConfigFileEntry.client_exit, - "Prepend 'Client Exit:' to user QUIT messages" + "Prepend 'Quit:' to user QUIT messages" }, { "client_flood_max_lines", @@ -131,13 +131,13 @@ static struct InfoStruct info_table[] = { "client_flood_burst_rate", OUTPUT_DECIMAL, &ConfigFileEntry.client_flood_burst_rate, - "Rate at which burst lines are processed", + "Maximum lines per second during flood grace period", }, { "client_flood_burst_max", OUTPUT_DECIMAL, &ConfigFileEntry.client_flood_burst_max, - "Number of lines to permit at client_flood_burst_rate", + "Number of lines to process at once before delaying", }, { "client_flood_message_num", @@ -518,6 +518,18 @@ static struct InfoStruct info_table[] = { &ConfigFileEntry.use_propagated_bans, "KLINE sets fully propagated bans" }, + { + "max_ratelimit_tokens", + OUTPUT_DECIMAL, + &ConfigFileEntry.max_ratelimit_tokens, + "The maximum number of tokens that can be accumulated for executing rate-limited commands", + }, + { + "away_interval", + OUTPUT_DECIMAL, + &ConfigFileEntry.away_interval, + "The minimum time between aways", + }, { "default_split_server_count", OUTPUT_DECIMAL, @@ -602,6 +614,12 @@ static struct InfoStruct info_table[] = { &ConfigChannel.use_invex, "Enable chanmode +I (invite exceptions)", }, + { + "use_forward", + OUTPUT_BOOLEAN_YN, + &ConfigChannel.use_forward, + "Enable chanmode +f (channel forwarding)", + }, { "use_knock", OUTPUT_BOOLEAN_YN,