1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 05:03:11 +02:00

Restrict the length of kick reasons in cs_kick, cs_ban, and cs_akick

This commit is contained in:
Adam
2012-11-25 22:37:54 -05:00
parent 80c573eed7
commit 1bdb756b25
6 changed files with 20 additions and 2 deletions
+1
View File
@@ -1287,6 +1287,7 @@ ConfigItems::ConfigItems(ServerConfig *conf)
{"chanserv", "require", "", new ValueContainerString(&conf->CSRequire), DT_STRING, NoValidation},
{"chanserv", "use_server_side_mlock", "yes", new ValueContainerBool(&conf->UseServerSideMLock), DT_BOOLEAN, NoValidation},
{"chanserv", "use_server_side_topiclock", "yes", new ValueContainerBool(&conf->UseServerSideTopicLock), DT_BOOLEAN, NoValidation},
{"chanserv", "reasonmax", "200", new ValueContainerUInt(&conf->CSReasonMax), DT_UINTEGER, NoValidation},
{"memoserv", "name", "", new ValueContainerString(&conf->MemoServ), DT_STRING, NoValidation},
{"memoserv", "maxmemos", "0", new ValueContainerUInt(&conf->MSMaxMemos), DT_UINTEGER, NoValidation},
{"memoserv", "senddelay", "0", new ValueContainerTime(&conf->MSSendDelay), DT_TIME, NoValidation},