/etc/xymon/xymonserver.d/ircbot.cfg is in hobbit-plugins 20170219.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # Configuration for the Xymon IRC bot
# Where to connect to (port 6667, no SSL by default)
IRC_SERVER="irc.example.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 xymon)
#IRC_USER="xymon"
# 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="Xymon 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!.*@.*"
# IRC nicks that should be alerted when certain machines have a problem
#ALERT_NICKS="adminnick1, adminnick2"
#ALERT_HOSTS="server1 server2 someotherimportanthost"
# Don't alert for these tests
#ALERT_IGNORE="apt ntp ntpq someotherservice"
# Uncomment to make "green" and "clear" messages go to the channel
# like all other messages instead of being sent as notice.
#IRC_GREEN_PRIVMSG=1
|