From 2df0e621664a7b1e52bfb369b3c5245eef1947c4 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Fri, 3 Jun 2022 20:38:36 -0700 Subject: [PATCH] Add nickserv config documentation Signed-off-by: Alek Ratzloff --- config.example.toml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/config.example.toml b/config.example.toml index 6a49f7f..e83c005 100644 --- a/config.example.toml +++ b/config.example.toml @@ -104,4 +104,21 @@ module = "plugins.markov" # Additionally, users may set their reply chance between 0.0 and the value they # set. e.g. with a value of 0.01, a user may set their reply chance to 0.001. # default: 0.01 -# reply_chance = 0.01 \ No newline at end of file +# reply_chance = 0.01 + +[[plugins]] +module = "plugins.nickserv" + +# password +# The password used to log in to this server using NickServ. +password = "my_password" + +# email +# The email address to use for this server when registering with NickServ. +# default: omnibotomni.bot +# email = "omnibotomni.bot" + +# nickserv +# The nickname for the nickserv user. +# default: "NickServ" +# nickserv = "NickServ" \ No newline at end of file