summarylogtreecommitdiffstats
path: root/errbot.config.py
diff options
context:
space:
mode:
Diffstat (limited to 'errbot.config.py')
-rw-r--r--errbot.config.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/errbot.config.py b/errbot.config.py
new file mode 100644
index 000000000000..c42d4d309982
--- /dev/null
+++ b/errbot.config.py
@@ -0,0 +1,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')