diff --git a/README.md b/README.md index 8579f44..7b56e84 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,7 @@ it stores affected users, permits to do deep search on them, review actives mode It also has a lot of channel protection features, flood, repeat, uppercase, ctcps, notices, hilight, join/part flood, etc all of those settings configurable per channel It works with any version of supybot, vannila, limnoria etc + +After first load, you must type !config supybot.plugins.ChanTracker.CAPS account-notify,extended-join +and reload the plugin + diff --git a/config.py b/config.py index dbfcb2b..e7d3732 100644 --- a/config.py +++ b/config.py @@ -46,13 +46,13 @@ conf.registerGlobalValue(ChanTracker, 'pool', registry.Integer(60, """delay between two check about mode removal, in seconds, note, it's also based on irc activity, so removal may be delayed a bit""")) conf.registerGlobalValue(ChanTracker, 'modesToAsk', - registry.CommaSeparatedListOfStrings("b,q", """sync lists for those modes on join""")) + registry.CommaSeparatedListOfStrings(['b','q'], """sync lists for those modes on join""")) conf.registerGlobalValue(ChanTracker, 'modesToAskWhenOpped', - registry.CommaSeparatedListOfStrings("e,I", """sync lists for those modes when opped, only asked one time""")) + registry.CommaSeparatedListOfStrings(['e','I'], """sync lists for those modes when opped, only asked one time""")) conf.registerGlobalValue(ChanTracker, 'CAPS', - registry.CommaSeparatedListOfStrings("account-notify,extended-join", """CAP asked to ircd, that permits to track username and account changes""")) + registry.CommaSeparatedListOfStrings(['account-notify','extended-join'], """CAP asked to ircd, that permits to track username and account changes""")) conf.registerGlobalValue(ChanTracker, 'logsSize', registry.PositiveInteger(60, """number of messages to keep, per nick - not per nick per channel"""))