Skip to content

Instantly share code, notes, and snippets.

@heath
Created November 25, 2014 21:30
Show Gist options
  • Save heath/e6d4544241f037fbe3cd to your computer and use it in GitHub Desktop.
Save heath/e6d4544241f037fbe3cd to your computer and use it in GitHub Desktop.
nick = 'paperbotplus'
host = 'irc.freenode.net'
channels = ['#hplus-dev']
owner = 'heath'
# password is the NickServ password, serverpass is the server password
# password = 'example'
# serverpass = 'serverpass'
# These are people who will be able to use admin.py's functions...
admins = [owner, 'heath']
# But admin.py is disabled by default, as follows:
exclude = []
# Directories to load user modules from
# e.g. /path/to/my/modules
extra = ["/vagrant/paperbot/modules"]
# If you want to enumerate a list of modules rather than disabling
# some, use "enable = ['example']", which takes precedent over exclude
#
enable = ['papers', 'scihub']
# Services to load: maps channel names to white or black lists
external = {
'#liberal': ['!'], # allow all
'#conservative': [], # allow none
'*': ['!'] # default whitelist, allow all
}
# EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment