Yealink Support Searching Remote Phonebook on Dial pad (#5953)

By default, the dial pad only searches the Local phonebook and recent call history for suggestions while dialing. This adds support for searching the Remote Phonebook if configured and enabled. There is also commented out the definition to search an LDAP phonebook if one has been configured elsewhere.
This commit is contained in:
demonspork 2021-05-24 16:19:39 -05:00 committed by GitHub
parent e5895923f8
commit 0acb7c4ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
109 changed files with 380 additions and 64 deletions

View File

@ -247,6 +247,14 @@
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false"; $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
$apps[$x]['default_settings'][$y]['default_setting_description'] = "5060 default"; $apps[$x]['default_settings'][$y]['default_setting_description'] = "5060 default";
$y++; $y++;
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "089119ac-c2f2-46a2-8d0e-6f78ac3fb740";
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "yealink_super_search_url";
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
$apps[$x]['default_settings'][$y]['default_setting_value'] = "https://server.yourdomain.com/app/provision/?file=super_search.xml";
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
$apps[$x]['default_settings'][$y]['default_setting_description'] = "URL for Yealink Super Search XML configuration file";
$y++;
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "3f903069-c0fc-4bf1-9c33-907bf238475e"; $apps[$x]['default_settings'][$y]['default_setting_uuid'] = "3f903069-c0fc-4bf1-9c33-907bf238475e";
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision"; $apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "yealink_firmware_url"; $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "yealink_firmware_url";

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1617,7 +1617,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1614,7 +1614,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1616,7 +1616,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1286,7 +1286,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1286,7 +1286,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1612,7 +1612,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1286,7 +1286,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1652,7 +1652,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1651,7 +1651,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1286,7 +1286,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1652,7 +1652,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1653,7 +1653,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1268,7 +1268,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1654,7 +1654,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1652,7 +1652,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1612,7 +1612,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1291,7 +1291,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1652,7 +1652,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1290,7 +1290,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1283,7 +1283,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -774,7 +774,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
## Contact ## ## Contact ##
####################################################################################### #######################################################################################
static.directory_setting.url= static.directory_setting.url=
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1286,7 +1286,7 @@ openvpn.url = {$yealink_openvpn_url}
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1654,7 +1654,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1635,7 +1635,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1653,7 +1653,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -684,7 +684,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1634,7 +1634,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -685,7 +685,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -777,7 +777,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1660,7 +1660,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -685,7 +685,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -777,7 +777,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1633,7 +1633,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -725,7 +725,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1593,7 +1593,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -1651,7 +1651,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1634,7 +1634,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1633,7 +1633,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1653,7 +1653,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -1635,7 +1635,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -724,7 +724,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -683,7 +683,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -683,7 +683,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -683,7 +683,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -1653,7 +1653,7 @@ web_item_level.url =
####################################################################################### #######################################################################################
## Super Search URL ## ## Super Search URL ##
####################################################################################### #######################################################################################
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################
## Directory Setting ## ## Directory Setting ##

View File

@ -724,7 +724,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -683,7 +683,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -724,7 +724,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -683,7 +683,7 @@ phone_setting.vq_rtcpxr.session_report.enable=
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -684,7 +684,7 @@ phone_setting.vq_rtcpxr.session_report.enable= {$yealink_rtcpxr_report_enable}
####################################################################################### #######################################################################################
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -764,7 +764,7 @@ phone_setting.vq_rtcpxr.session_report.enable= {$yealink_rtcpxr_report_enable}
####################################################################################### #######################################################################################
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -764,7 +764,7 @@ phone_setting.vq_rtcpxr.session_report.enable= {$yealink_rtcpxr_report_enable}
####################################################################################### #######################################################################################
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -683,7 +683,7 @@ phone_setting.vq_rtcpxr.session_report.enable= {$yealink_rtcpxr_report_enable}
####################################################################################### #######################################################################################
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -764,7 +764,7 @@ phone_setting.vq_rtcpxr.session_report.enable= {$yealink_rtcpxr_report_enable}
####################################################################################### #######################################################################################
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -973,7 +973,7 @@ multicast.paging_address.1.label =
## Super Search ## ## Super Search ##
####################################################################################### #######################################################################################
super_search.recent_call = super_search.recent_call =
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -765,7 +765,7 @@ phone_setting.vq_rtcpxr.session_report.enable= {$yealink_rtcpxr_report_enable}
####################################################################################### #######################################################################################
static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml static.directory_setting.url= https://{if isset($http_auth_username)}{$http_auth_username}:{$http_auth_password}@{/if}{$domain_name}/app/provision/?file=favorite_setting.xml
super_search.url= super_search.url = {$yealink_super_search_url}
local_contact.data.url= local_contact.data.url=
local_contact.data.delete= local_contact.data.delete=

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -972,7 +972,7 @@ multicast.paging_address.1.label =
## Super Search ## ## Super Search ##
####################################################################################### #######################################################################################
super_search.recent_call = super_search.recent_call =
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################

View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<root_super_search>
<item id_name="local_directory_search" display_name="Local Directory" priority="1" enable="1" />
<item id_name="calllog_search" display_name="History" priority="2" enable="1" />
<item id_name="remote_directory_search" display_name="Remote Phone Book" priority="3" enable="1" />
<!-- <item id_name="ldap_search" display_name="LDAP" priority="4" enable="0" dev="T19 T21 T23 T40 T40G T27 T27G T29 T41 T42 T42S T41S T46 T46S T54S T52 T48 T48S T49 T61 T66 T69 T69S CP860 DECT CP920 T54W T53W T53 T57W"/> -->
</root_super_search>

View File

@ -973,7 +973,7 @@ multicast.paging_address.1.label =
## Super Search ## ## Super Search ##
####################################################################################### #######################################################################################
super_search.recent_call = super_search.recent_call =
super_search.url = super_search.url = {$yealink_super_search_url}
####################################################################################### #######################################################################################

Some files were not shown because too many files have changed in this diff Show More