change ldap settings to be consistent across all yealink files

This commit is contained in:
blackc2004 2016-01-05 12:14:03 -08:00
parent 84a420d8df
commit 868affab3a
15 changed files with 340 additions and 255 deletions

View File

@ -559,20 +559,24 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
#Configure the search criteria for name and number lookups.
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.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_attr}
ldap.numb_attr = {$ldap_numb_attr}
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).
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}
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 ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
#######################################################################################
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.name_filter =
ldap.number_filter =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0
ldap.port = 389
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base =
ldap.user =
ldap.password =
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 = {$ldap_dial_lookup}
#######################################################################################
## Phone Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -917,40 +917,27 @@ remote_phonebook.data.1.url =
remote_phonebook.data.1.name =
#######################################################################################
## LDAP Settings ##
## LDAP ##
#######################################################################################
#Configure the search criteria for name and number lookups.
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
#Configure the LDAP version. The valid value is 2 or 3 (default).
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 =
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.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 =
#Configure the backlight time (in seconds). The valid values are: 1-Always on, 60 (default), 120, 300, 600, 1800.
security.trust_certificates = 0
phone_setting.backlight_time = 0
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.base = {$ldap_base}
ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
ldap.display_name = {$ldap_display_name}
ldap.version = {$ldap_version}
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.name_attr = {$ldap_name_attr}
ldap.numb_attr = {$ldap_numb_attr}
#######################################################################################
## Phone Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -917,40 +917,27 @@ remote_phonebook.data.1.url =
remote_phonebook.data.1.name =
#######################################################################################
## LDAP Settings ##
## LDAP ##
#######################################################################################
#Configure the search criteria for name and number lookups.
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
#Specify the maximum of the displayed search results. It ranges from 1 to 32000, the default value is 50.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
#Configure the LDAP version. The valid value is 2 or 3 (default).
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 =
#Enable or disable the phone to sort the search results in alphabetical order; 0-Disabled (default), 1-Enabled;
ldap.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 =
#Configure the backlight time (in seconds). The valid values are: 1-Always on, 60 (default), 120, 300, 600, 1800.
security.trust_certificates = 0
phone_setting.backlight_time = 0
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.base = {$ldap_base}
ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
ldap.display_name = {$ldap_display_name}
ldap.version = {$ldap_version}
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.name_attr = {$ldap_name_attr}
ldap.numb_attr = {$ldap_numb_attr}
#######################################################################################
## Phone Features ##

View File

@ -519,32 +519,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
#######################################################################################
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.name_filter =
ldap.number_filter =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0
ldap.port = 389
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base =
ldap.user =
ldap.password =
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 = {$ldap_dial_lookup}
#######################################################################################
## Phone Features ##

View File

@ -919,38 +919,40 @@ remote_phonebook.data.1.name =
#######################################################################################
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.name_filter =
ldap.number_filter =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = 0.0.0.0
ldap.port = 389
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base =
ldap.user =
ldap.password =
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 = {$ldap_dial_lookup}
#######################################################################################
## Phone Features ##

View File

@ -559,32 +559,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -559,32 +559,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##

View File

@ -558,27 +558,42 @@ directory.incoming_call_match_enable = 1
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.
security.trust_certificates = 0
phone_setting.backlight_time = 0
ldap.enable = {$ldap_enable}
#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.port = {$ldap_port}
ldap.base = {$ldap_base}
ldap.user = {$ldap_user}
ldap.password = {$ldap_password}
ldap.display_name = {$ldap_display_name}
ldap.version = {$ldap_version}
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}
#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.name_attr = {$ldap_name_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 ##

View File

@ -559,32 +559,42 @@ directory.incoming_call_match_enable = 1
bw.directory_enable = 0
#######################################################################################
## LDAP ##
## LDAP Settings ##
#######################################################################################
ldap.enable = {$ldap_enable}
#Configure the search criteria for name and number lookups.
ldap.enable =
ldap.name_filter =
ldap.number_filter =
ldap.host = 0.0.0.0
ldap.port = 389
ldap.base =
ldap.user =
ldap.password =
ldap.name_filter = {$ldap_name_filter}
ldap.number_filter = {$ldap_number_filter}
ldap.host = {$ldap_host}
ldap.port = {$ldap_port}
ldap.base = {$ldap_base}
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.
ldap.max_hits =
ldap.name_attr =
ldap.numb_attr =
ldap.display_name =
ldap.max_hits = {$ldap_max_hits}
ldap.name_attr = {$ldap_name_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 = {$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 = {$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.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 ##