This commit is contained in:
Ben Harris 2018-04-26 01:24:13 -04:00
parent 4dece0f65c
commit 73d0f55630
1 changed files with 11 additions and 6 deletions

View File

@ -3,14 +3,15 @@
#license: GNU GPL v3+ #license: GNU GPL v3+
SERVER=irc.example.net # the IRC server to connect to SERVER=irc.tilde.team # the IRC server to connect to
PORT=6667 # port to connect to PASS= # server pass
PORT=6697 # port to connect to
NICK=sedbot # bot's nickname NICK=sedbot # bot's nickname
LOGIN=sedbot # bot's username LOGIN=sedbot # bot's username
REALNAME=sedbot # bot's name REALNAME=sedbot # bot's name
CHANNELS=('#example') # array of channels to autojoin at start CHANNELS=('#meta') # array of channels to autojoin at start
IRC_LOG=~/sedbot.log # irc message log IRC_LOG=sedbot.log # irc message log
ERROR_LOG=~/sedbot.err # log of errors, events and used regexps ERROR_LOG=sedbot.err # log of errors, events and used regexps
MAX_LINE_LENGTH=400 # truncate lines to this many bytes MAX_LINE_LENGTH=400 # truncate lines to this many bytes
SLEEP_JOIN=3 # sleep after identifying before autojoining channels SLEEP_JOIN=3 # sleep after identifying before autojoining channels
@ -31,7 +32,7 @@ connect() {
if (($?)); then if (($?)); then
return $? return $?
fi fi
sendmsg NICK "$NICK" sendmsg PASS "$PASS"
if (($?)); then if (($?)); then
return $? return $?
fi fi
@ -39,6 +40,10 @@ connect() {
if (($?)); then if (($?)); then
return $? return $?
fi fi
sendmsg NICK "$NICK"
if (($?)); then
return $?
fi
return 0 return 0
} }