-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py.sample
47 lines (40 loc) · 1.07 KB
/
conf.py.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import logging
# API Configuration
#
MCU_API_HOSTNAME = 'mcu.mydomain.com'
MCU_API_URL = '/RPC2'
MCU_API_USERNAME = 'username'
MCU_API_PSW = 'password'
MCU_API_VERSION = '2.8' # Only 2.8 implemented
# LOGGING
#
LOG_FILEPATH = os.path.join('logs', 'mcu.log')
LOG_ERROR_FILEPATH = os.path.join('logs', 'error.log')
LOG_LEVEL = logging.DEBUG
LOG_EMAIL = False
LOG_MAIL_HOSTNAME = "mail.server.com"
LOG_MAIL_FROM = "mail_from@mydomain.com"
LOG_MAIL_TO = ["mail_to@mydomain.com"]
LOG_EMAIL_FREQUENCY = 60 # minutes
# Conferences to be controlled and restored
WATCHDOG_CONFERENCES = [
{
"name": "Conf 1 Name",
"locked": True,
"participants": [
{
"name": "shortname1",
"display_name": "Nice name 1",
"address": "xxx.xxxx.xxxx.xxx",
"layout_index": "1"
},
{
"name": "shortname2",
"displayName": "Nice name 2",
"address": "xxx.xxxx.xxxx.xxx",
"layout_index": "2"
}
]
}
]