-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmodule.xml
66 lines (66 loc) · 2.94 KB
/
module.xml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<module>
<rawname>queues</rawname>
<repo>standard</repo>
<name>Queues</name>
<version>17.0.1.13</version>
<publisher>Sangoma Technologies Corporation</publisher>
<license>GPLv2+</license>
<licenselink>https://www.gnu.org/licenses/gpl-2.0.txt</licenselink>
<category>Applications</category>
<description>Creates a queue where calls are placed on hold and answered on a first-in, first-out basis. Many options are available, including ring strategy for agents, caller announcements, max wait times, etc.</description>
<more-info>https://sangomakb.atlassian.net/wiki/spaces/PG/pages/24608891/Queues+Module</more-info>
<changelog>
*17.0.1.13* bump
*17.0.1.1* 17.0
</changelog>
<depends>
<version>17.0.1</version>
<module>recordings ge 17.0.1</module>
<module>core ge 17.0.1</module>
</depends>
<menuitems>
<queues needsenginedb="yes">Queues</queues>
</menuitems>
<popovers>
<queues>
<display>queues</display>
<view>form</view>
</queues>
</popovers>
<supported>
<version>17.0</version>
</supported>
<database>
<table name="queues_details">
<field name="id" type="string" length="45" default="-1" primarykey="true"/>
<field name="keyword" type="string" length="30" default="" primarykey="true"/>
<field name="data" type="string" length="150" default="" primarykey="true"/>
<field name="flags" type="integer" default="0"/>
</table>
<table name="queues_config">
<field name="extension" type="string" length="20" default="" primaryKey="true"/>
<field name="descr" type="string" length="254" default=""/>
<field name="grppre" type="string" length="100" default=""/>
<field name="alertinfo" type="string" length="254" default=""/>
<field name="ringing" type="boolean" default="0"/>
<field name="maxwait" type="string" length="8" default=""/>
<field name="password" type="string" length="20" default=""/>
<field name="ivr_id" type="string" length="8" default="0"/>
<field name="dest" type="string" length="50" default=""/>
<field name="cwignore" type="boolean" default="0"/>
<field name="queuewait" type="boolean" default="0" notnull="false"/>
<field name="use_queue_context" type="boolean" default="0" notnull="false"/>
<field name="togglehint" type="boolean" default="0" notnull="false"/>
<field name="qnoanswer" type="boolean" default="0" notnull="false"/>
<field name="callconfirm" type="boolean" default="0" notnull="false"/>
<field name="callconfirm_id" type="integer" notnull="false"/>
<field name="qregex" type="string" length="255" notnull="false"/>
<field name="agentannounce_id" type="integer" notnull="false"/>
<field name="joinannounce_id" type="integer" notnull="false"/>
<field name="monitor_type" type="string" length="5" notnull="false"/>
<field name="monitor_heard" type="integer" notnull="false"/>
<field name="monitor_spoken" type="integer" notnull="false"/>
<field name="callback_id" type="string" length="8" default=""/>
</table>
</database>
</module>