From bebef96d0c746c260f762737810815c7e466792d Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 19 Nov 2018 22:53:00 +0100 Subject: [PATCH] Updated Section IRC (basic) (markdown) --- Section-IRC-(basic).md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Section-IRC-(basic).md b/Section-IRC-(basic).md index e06f780..d6a39c1 100644 --- a/Section-IRC-(basic).md +++ b/Section-IRC-(basic).md @@ -1,6 +1,21 @@ +# Plain IRC ``` [irc.myirc] Server="irc.freenode.net:6667" Nick="yourbotname" RemoteNickFormat="[{PROTOCOL}] <{NICK}> " ``` + +# SASL support on freenode when you're registered with nickserv + +``` +[irc.myirc] +Nick="yournick" # <== change this +NickServNick="yournick" # <== change this +NickServPassword="yourpass" # <== change this +Server="irc.freenode.net:6697" +UseTLS=true +UseSASL=true +SkipTLSVerify=false +RemoteNickFormat="[{PROTOCOL}] <{NICK}> " +```