summaryrefslogtreecommitdiffstats
path: root/roles/releng/files/fedmsg/ircbot.py
blob: 44e35679e6396a0befef95a0b5940560e1bb9bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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'],
            ),
        ),
    ],
)