This commit is contained in:
markjcrane 2016-01-06 11:10:37 -07:00
commit 7ea8a14384
15 changed files with 337 additions and 222 deletions

View File

@ -559,20 +559,24 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
#Configure the search criteria for name and number lookups.
ldap.enable = {$ldap_enable} ldap.enable = {$ldap_enable}
ldap.name_filter = {$ldap_namefilter}
ldap.number_filter = {$ldap_numberfilter} #Configure the search criteria for name and number lookups.
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host} ldap.host = {$ldap_host}
ldap.port = {$ldap_port} ldap.port = {$ldap_port}
ldap.base = {$ldap_base} ldap.base = {$ldap_base}
ldap.user = {$ldap_user} ldap.user = {$ldap_user}
ldap.password = {$ldap_password} ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = {$ldap_max_hits} ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_attr} ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = {$ldap_numb_attr} ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name} ldap.display_name = {$ldap_display_name}
@ -580,11 +584,17 @@ ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = {$ldap_version} ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = {$ldap_call_in_lookup} ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = {$ldap_sort} ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##
@ -1564,7 +1574,7 @@ super_search.url =
## Directory Setting ## ## Directory Setting ##
####################################################################################### #######################################################################################
#Configure the access URL of the directory setting file. #Configure the access URL of the directory setting file.
directory_setting.url = {$yealink_directory_settingurl} directory_setting.url = {$yealink_directory_setting_url}
####################################################################################### #######################################################################################
## Configure the access URL of firmware ## ## Configure the access URL of firmware ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
####################################################################################### #######################################################################################
## LDAP Settings ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.name_filter = ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base = ldap.base = {$ldap_base}
ldap.user = ldap.user = {$ldap_user}
ldap.password = ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default). #Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay = ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Phone Features ## ## Phone Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
####################################################################################### #######################################################################################
## LDAP Settings ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.name_filter = ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base = ldap.base = {$ldap_base}
ldap.user = ldap.user = {$ldap_user}
ldap.password = ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default). #Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay = ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Phone Features ## ## Phone Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
####################################################################################### #######################################################################################
## LDAP Settings ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.name_filter = ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base = ldap.base = {$ldap_base}
ldap.user = ldap.user = {$ldap_user}
ldap.password = ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default). #Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay = ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Phone Features ## ## Phone Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
####################################################################################### #######################################################################################
## LDAP Settings ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.name_filter = ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base = ldap.base = {$ldap_base}
ldap.user = ldap.user = {$ldap_user}
ldap.password = ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default). #Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay = ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Phone Features ## ## Phone Features ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
####################################################################################### #######################################################################################
## LDAP Settings ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.name_filter = ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base = ldap.base = {$ldap_base}
ldap.user = ldap.user = {$ldap_user}
ldap.password = ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default). #Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay = ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Phone Features ## ## Phone Features ##

View File

@ -559,32 +559,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##
@ -1565,7 +1575,7 @@ super_search.url =
## Directory Setting ## ## Directory Setting ##
####################################################################################### #######################################################################################
#Configure the access URL of the directory setting file. #Configure the access URL of the directory setting file.
directory_setting.url = directory_setting.url = {$yealink_directory_setting_url}
####################################################################################### #######################################################################################
## Configure the access URL of firmware ## ## Configure the access URL of firmware ##

View File

@ -559,32 +559,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##
@ -1565,7 +1575,7 @@ super_search.url =
## Directory Setting ## ## Directory Setting ##
####################################################################################### #######################################################################################
#Configure the access URL of the directory setting file. #Configure the access URL of the directory setting file.
directory_setting.url = {$yealink_directory_settingurl} directory_setting.url = {$yealink_directory_setting_url}
####################################################################################### #######################################################################################
## Configure the access URL of firmware ## ## Configure the access URL of firmware ##

View File

@ -558,27 +558,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
#Configure the backlight time (in seconds). The valid values are: 1-Always on, 60 (default), 120, 300, 600, 1800. ldap.enable = {$ldap_enable}
security.trust_certificates = 0
phone_setting.backlight_time = 0 #Configure the search criteria for name and number lookups.
ldap.name_filter = {$ldap_name_filter} ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter} ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host} ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base} ldap.base = {$ldap_base}
ldap.user = {$ldap_user} ldap.user = {$ldap_user}
ldap.password = {$ldap_password} ldap.password = {$ldap_password}
ldap.display_name = {$ldap_display_name}
ldap.version = {$ldap_version} #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.call_in_lookup = {$ldap_call_in_lookup}
ldap.dial_lookup = {$ldap_dial_lookup}
ldap.enable = {$ldap_enable}
ldap.ldap_sort = {$ldap_sort}
ldap.port = {$ldap_port}
ldap.max_hits = {$ldap_max_hits} ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_attr} ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = {$ldap_numb_attr} ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##

View File

@ -559,32 +559,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0 bw.directory_enable = 0
####################################################################################### #######################################################################################
## LDAP ## ## LDAP Settings ##
####################################################################################### #######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups. #Configure the search criteria for name and number lookups.
ldap.enable = ldap.name_filter = {$ldap_name_filter}
ldap.name_filter = ldap.number_filter = {$ldap_number_filter}
ldap.number_filter =
ldap.host = 0.0.0.0 ldap.host = {$ldap_host}
ldap.port = 389 ldap.port = {$ldap_port}
ldap.base =
ldap.user = ldap.base = {$ldap_base}
ldap.password = ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50. #Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits = ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr = ldap.name_attr = {$ldap_name_attr}
ldap.display_name = ldap.numb_attr = {$ldap_numb_attr}
ldap.display_name = {$ldap_display_name}
#Configure the LDAP version. The valid value is 2 or 3 (default). #Configure the LDAP version. The valid value is 2 or 3 (default).
ldap.version = ldap.version = {$ldap_version}
#Conifugre the search delay time. It ranges from 0 to 2000 (default).
ldap.search_delay =
#Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to query the contact name from the LDAP server when receiving an incoming call; 0-Disabled (default), 1-Enabled;
ldap.call_in_lookup = ldap.call_in_lookup = {$ldap_call_in_lookup}
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled; #Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.ldap_sort = ldap.ldap_sort = {$ldap_sort}
#Enable or disable the phone to query the LDAP server when in the pre-dialing or the dialing state; 0-Disabled (default), 1-Enabled;
ldap.dial_lookup = {$ldap_dial_lookup}
####################################################################################### #######################################################################################
## Features ## ## Features ##