forked from jmcguirl/dynroute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.xml
95 lines (95 loc) · 4.76 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<module>
<rawname>dynroute</rawname>
<repo>local</repo>
<name>Dynamic Routes</name>
<version>14.0.1</version>
<publisher>John Fawcett</publisher>
<info>https://www.voipsupport.it/</info>
<license>GPLv3+</license>
<licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink>
<category>Applications</category>
<description>
Routes calls based on dynamically calculated information that can be taken from a mysql database or via odbc with any supported database, from asterisk variables, from a url or an agi script.
Parameters to the lookups can combine dtmf input, asterisk variables, or values saved from previously executed dynamic routes on the same call.
</description>
<changelog>
See CHANGES.txt file in module directory for full details.
*14.0.q* Bug fix deleting dynroute entries, added max digits field for dtmf input
*14.0.0* Compatible with Freepbx 14
*13.0.5* Database schema change for compatibility with Freepbx 14 beta release
*13.0.4* Compatible with Freepbx 13.0.79 stable release
*13.0.3* Fixes error with saving destination
*13.0.1* Updated release for Freepbx 13 including automatic upgrade from 2.X releases
*13.0.0* First release for Freepbx 13
*2.11.4.0* Validation capability, bug fix
*2.11.3.2* Bug fix
*2.11.3.1* Bug fix
*2.11.3.0* Asterisk variable source type
*2.11.2.0* AGI support
*2.11.1.0* Web service support
*2.11.0.0* ODBC support, popover compatibility, GUI cleanup, Updated Italian, Dutch translations
*2.10.0.2* Bug fix for db server name that was not saved, cleanups, dutch translations
*2.10.0.1* Security: prevent scripts from being called directly.
Updated uninstall from sql to php script, cosmetic and tooltip corrections.
*2.10.0.0* Only update is to change Category to be compatible with new menu categories (now under Applications instead of Inbound Call Control)
*2.8.0.0* Added ability to get dtmf input (with optional announcement) and storage of input and/or sql result in channel variables for use in further dynamic routes or custom extensions.
*2.6.0.2* First Release
</changelog>
<depends>
<version>14.0.0</version>
<module>recordings</module>
</depends>
<menuitems>
<dynroute>Dynamic Routes</dynroute>
</menuitems>
<popovers>
<dynroute>
<display>dynroute</display>
<action>add</action>
<view>form</view>
</dynroute>
</popovers>
<supported>
<version>14.0</version>
</supported>
<location>release/14/dynroute-14.0.0.tgz</location>
<md5sum>57d8316dc41fcd3153cefd00a5e3bdd5</md5sum>
<database>
<table name="dynroute">
<field name="id" type="integer" primaryKey="true" autoincrement="true"/>
<field name="name" type="string" length="255"/>
<field name="description" type="text" length=""/>
<field name="sourcetype" type="string" length="100" notnull="false"/>
<field name="mysql_host" type="string" length="60" notnull="false"/>
<field name="mysql_dbname" type="string" length="60" notnull="false"/>
<field name="mysql_query" type="text" length="" notnull="false"/>
<field name="mysql_username" type="string" length="30" notnull="false"/>
<field name="mysql_password" type="string" length="30" notnull="false"/>
<field name="odbc_func" type="string" length="100" notnull="false"/>
<field name="odbc_query" type="text" length="" notnull="false"/>
<field name="url_query" type="text" length="" notnull="false"/>
<field name="agi_query" type="text" length="" notnull="false"/>
<field name="agi_var_name_res" type="string" length="255" notnull="false"/>
<field name="astvar_query" type="text" length="" notnull="false"/>
<field name="enable_dtmf_input" type="string" length="8" notnull="false"/>
<field name="max_retries" type="integer" notnull="false"/>
<field name="max_digits" type="integer" notnull="false"/>
<field name="timeout" type="integer" notnull="false"/>
<field name="announcement_id" type="integer" notnull="false"/>
<field name="chan_var_name" type="string" length="255" notnull="false"/>
<field name="chan_var_name_res" type="string" length="255" notnull="false"/>
<field name="validation_regex" type="text" length="" notnull="false"/>
<field name="max_retries" type="integer" default="0"/>
<field name="invalid_retry_rec_id" type="integer" notnull="false"/>
<field name="invalid_rec_id" type="integer" notnull="false"/>
<field name="invalid_dest" type="string" length="255" notnull="false"/>
<field name="default_dest" type="string" length="255" notnull="false"/>
</table>
<table name="dynroute_dests">
<field name="dynroute_id" type="integer" primaryKey="true"/>
<field name="selection" type="string" length="190" default="" primaryKey="true"/>
<field name="dest" type="string" length="255" notnull="false"/>
</table>
</database>
<updateurl>https://updates.voipsupport.it/dynroute.json</updateurl>
</module>