-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathmodule.xml
98 lines (98 loc) · 4.15 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
96
97
98
<module>
<rawname>superfecta</rawname>
<repo>extended</repo>
<name>CID Superfecta</name>
<version>17.0.3.5</version>
<type>setup</type>
<category>Admin</category>
<publisher>Sangoma Technologies Corporation</publisher>
<license>GPLv2+</license>
<licenselink>httpS://www.gnu.org/licenses/gpl-2.0.txt</licenselink>
<description>
Provides simultaneous use of, and complete control over multiple caller id data sources.
</description>
<more-info>https://sangomakb.atlassian.net/wiki/spaces/PG/pages/20644530/CID+Superfecta</more-info>
<changelog>
*17.0.3.5* bump
*17.0.3.3* Add Russian Federal Tax Service source
*17.0.3.2* Fixing PHP 8.2 compatibility issue in Google Auth module and Add HTML support for email
*17.0.3.1* Fixing PHP 8.2 compatibility issue
*17.0.3* Issue #356 add support for FreeCNAM
*17.0.2.1* New superfecta source for Allowlist
*17.0.1.10* bump
</changelog>
<menuitems>
<superfecta needsenginedb="yes">CID Superfecta</superfecta>
</menuitems>
<database>
<table name="superfectaconfig">
<field name="source" type="string" length="150" primarykey="true"/>
<field name="field" type="string" length="150" primarykey="true"/>
<field name="value" type="text" notnull="false"/>
</table>
<table name="superfectacache">
<field name="number" type="string" length="45" primarykey="true"/>
<field name="callerid" type="string" length="45"/>
<field name="dateentered" type="datetime"/>
</table>
<table name="superfecta_to_incoming">
<field name="superfecta_to_incoming_id" type="bigint" primarykey="true" autoincrement="true"/>
<field name="extension" type="string" length="50" notnull="false"/>
<field name="cidnum" type="string" length="50" notnull="false"/>
<field name="scheme" type="string" length="50"/>
<key name="extn" type="unique">
<column name="extension"/>
<column name="cidnum"/>
</key>
</table>
<table name="superfecta_mf_child">
<field name="superfecta_mf_child_id" type="bigint" primarykey="true" autoincrement="true"/>
<field name="superfecta_mf_id" type="bigint" notnull="false"/>
<field name="priority" type="integer" notnull="false"/>
<field name="source" type="string" length="128" notnull="false"/>
<field name="timestamp_start" type="float" notnull="false"/>
<field name="timestamp_cnam" type="float" notnull="false"/>
<field name="timestamp_end" type="float" notnull="false"/>
<field name="spam" type="integer" notnull="false"/>
<field name="spam_text" type="string" length="64" notnull="false"/>
<field name="cnam" type="string" length="128" notnull="false"/>
<field name="cached" type="boolean" notnull="false"/>
<field name="debug_result" type="text" notnull="false"/>
<field name="error_result" type="text" notnull="false"/>
<key name="start_time" type="index">
<column name="timestamp_start"/>
</key>
<key name="superfecta_mf_id" type="index">
<column name="superfecta_mf_id"/>
</key>
</table>
<table name="superfecta_mf">
<field name="superfecta_mf_id" type="bigint" primarykey="true" autoincrement="true"/>
<field name="timestamp_start" type="float" notnull="false"/>
<field name="timestamp_end" type="float" notnull="false"/>
<field name="scheme" type="string" length="64" notnull="false"/>
<field name="cidnum" type="string" length="50" notnull="false"/>
<field name="extension" type="string" length="50" notnull="false"/>
<field name="prefix" type="string" length="50" notnull="false"/>
<field name="debug" type="boolean" notnull="false"/>
<field name="winning_child_id" type="bigint" notnull="false"/>
<field name="spam_child_id" type="bigint" notnull="false"/>
<key name="start_time" type="index">
<column name="timestamp_start"/>
</key>
</table>
</database>
<info>https://github.com/POSSA/Caller-ID-Superfecta/wiki</info>
<depends>
<module>core ge 17.0.1</module>
<module>framework ge 17.0.15.26</module>
</depends>
<hooks>
<framework class="Chown" namespace="FreePBX\Console\Command">
<method callingMethod="fwcChownFiles" class="Superfecta" namespace="FreePBX\modules">chownFreepbx</method>
</framework>
</hooks>
<supported>
<version>17.0</version>
</supported>
</module>