Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1004 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 1004 Bytes

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

Installation

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

Authentication

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.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D