System information
SU1=unknown
SS1=trying (scan success 1: the last status was: trying) -2
SS2=progress (scan success 2: the last status was: progress) -3
SS3=ringing (scan success 3: the last status was: ringing) -4
SS4=connect (scan success 4: the last status was: connect) -5
SF1=disc code (scan failed 1: the last status was: disc code received) -6
SF2=bye (scan failed 2: the last status was: bye received) -7
For example the following query will list all live numbers when the scan_stop_at is set to 1:
select callednumber from tb_cdrs with(nolock) where datum > X and callerid = Y and marker in ('SS2', 'SS3','SS4')
You might also consider a number to be live on special disconnect reason codes (like user busy)
Disconnect codes are stored in tb_reasoncodes (there are mappings to SIP codes)
For example the following statement will list all numbers found as valid in the last 7 days including calls with “Busy here” disc reason.
select callednumber from tb_cdrs with(nolock) where datum > GETDATE() - 7 and (marker in ('SS2', 'SS3','SS4') or
(marker = 'SF1' and discreason in (4486)))
5.76. Routing calls from virtual servers
The actual virtsever must be configured as a traffic-sender in the mainserver.
In the virtserver, the mainserver must be configured as a sip-proxy.
Setup the routing in the virtual server and in the mainserver too.
5.77. Routing calls to virtual servers
From the mainserver there are two possibilities:
-set some phone numbers “location” to virtserver id and /or
-setup the routing (for a range of numbers defined by a prefix)
The actual virtsever must be configured as a sip-proxy in the mainserver.
In the virtserver:
-setup the callbacknumber ant it’s routing correctly in global configuration and /or
-assign real phonenumbers for operators (or endusers)
In the virtserver, the mainserver must be configured as a traffic-sender..
5.78. How to add plugins in MManage
Create your custom exe.
In the MizuManage.ini under the “plugins” section add your plugin entry:










