diff --git a/conf/irc.json b/conf/irc.json new file mode 100644 index 0000000..c7c5bb9 --- /dev/null +++ b/conf/irc.json @@ -0,0 +1,8 @@ +{ + "_": { + "register": true, + "authentity": "NickServ", + "authcmd": "REGISTER {password} {email}", + "tokenregex": "" + } +} diff --git a/main.py b/main.py index 6b29325..681c755 100644 --- a/main.py +++ b/main.py @@ -24,6 +24,7 @@ filemap = { "tokens": ["tokens.json", "authentication tokens", "json"], "aliasdata": ["aliasdata.json", "data for alias generation", "json"], "alias": ["alias.json", "provisioned alias data", "json"], + "irc": ["irc.json", "IRC network definitions", "json"], # Binary (pickle) configs "network": ["network.dat", "network list", "pickle"]