This is a backend for campfire (https://campfirenow.com/) for err (http://errbot.net) 2.3.0-rc3 or newer.
Note: as of writing, this backend is only compatible with Python 2.7
git checkout https://github.com/gbin/err-backend-campfire.git
pip install pyfire
and add:
BACKEND = 'Campfire'
BOT_EXTRA_BACKEND_DIR = '/path_to/err-backend-campfire'
to your config.py
You need to set your BOT_IDENTITY in your config.py as this:
BOT_IDENTITY = {
'subdomain': 'yatta',
'username' : 'errbot',
'password' : 'changeme',
}
Also the BOT_ADMINS setting needs to be the full name of the user like: BOT_ADMINS = ('Guillaume Binet',)
CHATROOM_RELAY is unsupported by this backend, you should leave it empty.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D