forked from jasonroman/eggdrop-slackbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
26 lines (23 loc) · 1.07 KB
/
config.yml
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
# webhook settings
webhook:
# this is the "Webhook URL" under your Incoming Webhook's Integration Settings
url: https://hooks.slack.com/services/<therest/ofthe/path>
# whether or not to automatically unfurl links in slack; links such as
# youtube/twitter/flicker/xkcd will do unfurl regardless of the setting
unfurl_links: "true"
# irc settings
channel:
# channel mapping - text from the specified irc channel will get pushed to the corresponding slack channel;
# works with public channels and private groups and does not matter if you prefix the slack channel with #
mapping:
# format: <irc_channel>: <slack_channel>
"#lounge": "#general"
"#random": "#random"
"#secret": "myprivategroup"
# prefixes for bot commands that will not be echoed to slack; for instance, if you set
# a command prefix of "!c", then "!test" will be pushed to slack but "!cmd" will not.
#
# multiple prefixes can be defined by a comma-separated list
#
# use "" to echo all messages to slack regardless
command_prefix: "!, *"