1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# Configuration for the Hobbit IRC bot
# Where to connect to (port 6667, no SSL by default)
IRC_SERVER="irc.some.net"
#IRC_PORT="6667"
#IRC_SSL=0
# Which channel to join
IRC_CHANNEL="#somechannel"
# Our nick - $MACHINE might or might not be a good default
IRC_NICK="$MACHINE"
# The IRC user name (the thing in front of @ in userhost, defaults to hobbit)
#IRC_USER="hobbit"
# The Ircname (also known as realname)
# Note: please be so polite to fill in your nick here so people can contact you
# in case the bot gets crazy
IRC_IRCNAME="Hobbit monitor bot run by Someowner"
# The bot will ignore all requests not coming from nick!user@host pattern that
# do not match this (^anchored$) Perl regexp (if unset, .* is assumed)
IRC_ACCESS="Somenick!.*@.*"
|