ansible/roles/releng/files/fedmsg/ircbot.py

19 lines
498 B
Python
Raw Normal View History

2013-05-03 21:22:43 +00:00
config = dict(
irc=[
dict(
network='irc.freenode.net',
port=6667,
nickname='fedmsg-bot',
channel='fedora-fedmsg',
make_pretty=True,
make_terse=True,
# Don't show busmon or the heartbeat... gross.
# any httpd topics would also be a huge source of spam.
filters=dict(
topic=['busmon', 'httpd'],
body=['lub-dub'],
),
),
],
)