-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.py
executable file
·27 lines (25 loc) · 1.02 KB
/
template.py
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
general_section = '[general]\n' \
'persistentmembers = yes\n' \
'monitor-type = MixMonitor\n'
queue_section = '\n[{0}-{1}]\n' \
'musicclass = default\n' \
'memberdelay = 0\n' \
'timeout = 120\n' \
'retry = 0\n' \
'wrapuptime=0\n' \
'autofill=yes\n' \
'relative-periodic-announce=yes\n' \
'announce-holdtime = no\n' \
'announce-position = no\n' \
'ringinuse = no\n' \
'announce-to-first-user = no\n' \
'joinempty = yes\n' \
'leavewhenempty = no\n' \
'periodic-announce-frequency=25\n' \
'periodic-announce=stay_online\n' \
'reportholdtime=no\n' \
'strategy=ringall\n' \
'setinterfacevar=yes\n' \
'setqueueentryvar=yes\n' \
'setqueuevar=yes\n\n'
member_section = 'member => SIP/{0},,{0}\n'