Updated Section IRC (basic) (markdown)

Wim 2018-11-19 22:53:00 +01:00
parent f15ebcf5a5
commit bebef96d0c

@ -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}> "
```