blob: c42d4d30998242d356022f3c8af1d91a4b242bdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import logging
BACKEND = 'XMPP'
BOT_DATA_DIR = r'/var/lib/errbot/data'
BOT_EXTRA_PLUGIN_DIR = '/var/lib/errbot/plugins'
#BOT_LOG_FILE = r'/var/log/errbot/errbot.log'
BOT_LOG_FILE = None
BOT_LOG_LEVEL = logging.WARNING
BOT_ADMINS = ('user1@example.com',
'user2@example.com')
BOT_IDENTITY = {
'username': 'chatbot@example.com/errbot',
'password': 'PASSWORD' }
CHATROOM_PRESENCE = ('room1@conference.example.com',
'room2@conference.example.com')
|