From 33fe9e4ef89b513d7b7580a168201df573511e88 Mon Sep 17 00:00:00 2001 From: Luca Bigliardi Date: Sun, 13 Jun 2021 23:08:01 +0200 Subject: [PATCH] Handle Atheme NickServ IDENTIFY NOTICE Update list of nickserv identify patterns to support Atheme ( https://github.com/atheme/atheme/blob/master/modules/nickserv/main.c#L80 ), used by libera.chat . Signed-off-by: Luca Bigliardi --- config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config.go b/config.go index 737f265..fa83644 100644 --- a/config.go +++ b/config.go @@ -69,6 +69,7 @@ func LoadConfig(configFile string) (*Config, error) { UsePrivmsg: false, AlertBufferSize: 2048, NickservIdentifyPatterns: []string{ + "Please choose a different nickname, or identify via", "identify via /msg NickServ identify ", "type /msg NickServ IDENTIFY password", "authenticate yourself to services with the IDENTIFY command",