2011-11-10 08:19:33 +04:00
/*
Unix SMB / CIFS implementation .
Parameter loading functions
Copyright ( C ) Karl Auer 1993 - 1998
Largely re - written by Andrew Tridgell , September 1994
Copyright ( C ) Simo Sorce 2001
Copyright ( C ) Alexander Bokovoy 2002
Copyright ( C ) Stefan ( metze ) Metzmacher 2002
Copyright ( C ) Jim McDonough < jmcd @ us . ibm . com > 2003
Copyright ( C ) Michael Adam 2008
Copyright ( C ) Jelmer Vernooij < jelmer @ samba . org > 2007
Copyright ( C ) Andrew Bartlett 2011
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
static const struct enum_list enum_protocol [ ] = {
2012-06-04 01:02:56 +04:00
{ PROTOCOL_SMB2_10 , " SMB2 " } , /* for now keep PROTOCOL_SMB2_10 */
2012-06-04 01:03:54 +04:00
{ PROTOCOL_SMB3_00 , " SMB3 " } , /* for now keep PROTOCOL_SMB3_00 */
2013-09-13 13:27:39 +04:00
{ PROTOCOL_SMB3_02 , " SMB3_02 " } ,
2012-05-05 11:31:39 +04:00
{ PROTOCOL_SMB3_00 , " SMB3_00 " } ,
2011-12-22 16:12:24 +04:00
{ PROTOCOL_SMB2_24 , " SMB2_24 " } ,
2011-11-19 17:01:25 +04:00
{ PROTOCOL_SMB2_22 , " SMB2_22 " } ,
2011-11-10 08:19:33 +04:00
{ PROTOCOL_SMB2_10 , " SMB2_10 " } ,
{ PROTOCOL_SMB2_02 , " SMB2_02 " } ,
{ PROTOCOL_NT1 , " NT1 " } ,
{ PROTOCOL_LANMAN2 , " LANMAN2 " } ,
{ PROTOCOL_LANMAN1 , " LANMAN1 " } ,
{ PROTOCOL_CORE , " CORE " } ,
{ PROTOCOL_COREPLUS , " COREPLUS " } ,
{ PROTOCOL_COREPLUS , " CORE+ " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_security [ ] = {
{ SEC_AUTO , " AUTO " } ,
{ SEC_USER , " USER " } ,
{ SEC_DOMAIN , " DOMAIN " } ,
{ SEC_ADS , " ADS " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_bool_auto [ ] = {
{ false , " No " } ,
{ false , " False " } ,
{ false , " 0 " } ,
{ true , " Yes " } ,
{ true , " True " } ,
{ true , " 1 " } ,
{ Auto , " Auto " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_csc_policy [ ] = {
{ CSC_POLICY_MANUAL , " manual " } ,
{ CSC_POLICY_DOCUMENTS , " documents " } ,
{ CSC_POLICY_PROGRAMS , " programs " } ,
{ CSC_POLICY_DISABLE , " disable " } ,
{ - 1 , NULL }
} ;
/* Server role options */
static const struct enum_list enum_server_role [ ] = {
{ ROLE_AUTO , " auto " } ,
2012-06-11 04:50:08 +04:00
{ ROLE_STANDALONE , " standalone server " } ,
2011-11-10 08:19:33 +04:00
{ ROLE_STANDALONE , " standalone " } ,
{ ROLE_DOMAIN_MEMBER , " member server " } ,
{ ROLE_DOMAIN_MEMBER , " member " } ,
2012-06-10 16:08:20 +04:00
{ ROLE_DOMAIN_PDC , " classic primary domain controller " } ,
{ ROLE_DOMAIN_BDC , " classic backup domain controller " } ,
{ ROLE_ACTIVE_DIRECTORY_DC , " active directory domain controller " } ,
{ ROLE_ACTIVE_DIRECTORY_DC , " domain controller " } ,
{ ROLE_ACTIVE_DIRECTORY_DC , " dc " } ,
2011-11-10 08:19:33 +04:00
{ - 1 , NULL }
} ;
/* SMB signing types. */
static const struct enum_list enum_smb_signing_vals [ ] = {
{ SMB_SIGNING_DEFAULT , " default " } ,
{ SMB_SIGNING_OFF , " No " } ,
{ SMB_SIGNING_OFF , " False " } ,
{ SMB_SIGNING_OFF , " 0 " } ,
{ SMB_SIGNING_OFF , " Off " } ,
{ SMB_SIGNING_OFF , " disabled " } ,
{ SMB_SIGNING_IF_REQUIRED , " if_required " } ,
{ SMB_SIGNING_IF_REQUIRED , " Yes " } ,
{ SMB_SIGNING_IF_REQUIRED , " True " } ,
{ SMB_SIGNING_IF_REQUIRED , " 1 " } ,
{ SMB_SIGNING_IF_REQUIRED , " On " } ,
{ SMB_SIGNING_IF_REQUIRED , " enabled " } ,
{ SMB_SIGNING_IF_REQUIRED , " auto " } ,
{ SMB_SIGNING_REQUIRED , " required " } ,
{ SMB_SIGNING_REQUIRED , " mandatory " } ,
{ SMB_SIGNING_REQUIRED , " force " } ,
{ SMB_SIGNING_REQUIRED , " forced " } ,
{ SMB_SIGNING_REQUIRED , " enforced " } ,
{ - 1 , NULL }
} ;
2011-12-16 17:25:57 +04:00
/* DNS update options. */
static const struct enum_list enum_dns_update_settings [ ] = {
2012-09-12 11:39:06 +04:00
{ DNS_UPDATE_OFF , " disabled " } ,
{ DNS_UPDATE_OFF , " No " } ,
2011-12-16 17:25:57 +04:00
{ DNS_UPDATE_OFF , " False " } ,
2012-09-12 11:39:06 +04:00
{ DNS_UPDATE_OFF , " 0 " } ,
{ DNS_UPDATE_OFF , " Off " } ,
{ DNS_UPDATE_ON , " nonsecure and secure " } ,
{ DNS_UPDATE_ON , " nonsecure " } ,
{ DNS_UPDATE_SIGNED , " secure only " } ,
{ DNS_UPDATE_SIGNED , " secure " } ,
2011-12-16 17:25:57 +04:00
{ DNS_UPDATE_SIGNED , " signed " } ,
{ - 1 , NULL }
} ;
2012-07-23 06:47:01 +04:00
/*
Do you want session setups at user level security with a invalid
password to be rejected or allowed in as guest ? WinNT rejects them
but it can be a pain as it means " net view " needs to use a password
You have 3 choices in the setting of map_to_guest :
" Never " means session setups with an invalid password
are rejected . This is the default .
" Bad User " means session setups with an invalid password
are rejected , unless the username does not exist , in which case it
is treated as a guest login
" Bad Password " means session setups with an invalid password
are treated as a guest login
Note that map_to_guest only has an effect in user or server
level security .
*/
static const struct enum_list enum_map_to_guest [ ] = {
{ NEVER_MAP_TO_GUEST , " Never " } ,
{ MAP_TO_GUEST_ON_BAD_USER , " Bad User " } ,
{ MAP_TO_GUEST_ON_BAD_PASSWORD , " Bad Password " } ,
{ MAP_TO_GUEST_ON_BAD_UID , " Bad Uid " } ,
{ - 1 , NULL }
} ;
/* Config backend options */
static const struct enum_list enum_config_backend [ ] = {
{ CONFIG_BACKEND_FILE , " file " } ,
{ CONFIG_BACKEND_REGISTRY , " registry " } ,
{ - 1 , NULL }
} ;
/* ADS kerberos ticket verification options */
static const struct enum_list enum_kerberos_method [ ] = {
{ KERBEROS_VERIFY_SECRETS , " default " } ,
{ KERBEROS_VERIFY_SECRETS , " secrets only " } ,
{ KERBEROS_VERIFY_SYSTEM_KEYTAB , " system keytab " } ,
{ KERBEROS_VERIFY_DEDICATED_KEYTAB , " dedicated keytab " } ,
{ KERBEROS_VERIFY_SECRETS_AND_KEYTAB , " secrets and keytab " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_printing [ ] = {
{ PRINT_SYSV , " sysv " } ,
{ PRINT_AIX , " aix " } ,
{ PRINT_HPUX , " hpux " } ,
{ PRINT_BSD , " bsd " } ,
{ PRINT_QNX , " qnx " } ,
{ PRINT_PLP , " plp " } ,
{ PRINT_LPRNG , " lprng " } ,
2012-09-05 09:03:31 +04:00
# ifdef HAVE_CUPS
2012-07-23 06:47:01 +04:00
{ PRINT_CUPS , " cups " } ,
2012-09-05 09:03:31 +04:00
# endif
# ifdef HAVE_IPRINT
2012-07-23 06:47:01 +04:00
{ PRINT_IPRINT , " iprint " } ,
2012-09-05 09:03:31 +04:00
# endif
2012-07-23 06:47:01 +04:00
{ PRINT_LPRNT , " nt " } ,
{ PRINT_LPROS2 , " os2 " } ,
2012-08-21 02:16:24 +04:00
# if defined(DEVELOPER) || defined(ENABLE_SELFTEST)
2012-07-23 06:47:01 +04:00
{ PRINT_TEST , " test " } ,
{ PRINT_VLP , " vlp " } ,
# endif /* DEVELOPER */
{ - 1 , NULL }
} ;
static const struct enum_list enum_ldap_sasl_wrapping [ ] = {
{ 0 , " plain " } ,
{ ADS_AUTH_SASL_SIGN , " sign " } ,
{ ADS_AUTH_SASL_SEAL , " seal " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_ldap_ssl [ ] = {
{ LDAP_SSL_OFF , " no " } ,
{ LDAP_SSL_OFF , " off " } ,
{ LDAP_SSL_START_TLS , " start tls " } ,
{ LDAP_SSL_START_TLS , " start_tls " } ,
{ - 1 , NULL }
} ;
/* LDAP Dereferencing Alias types */
# define SAMBA_LDAP_DEREF_NEVER 0
# define SAMBA_LDAP_DEREF_SEARCHING 1
# define SAMBA_LDAP_DEREF_FINDING 2
# define SAMBA_LDAP_DEREF_ALWAYS 3
static const struct enum_list enum_ldap_deref [ ] = {
{ SAMBA_LDAP_DEREF_NEVER , " never " } ,
{ SAMBA_LDAP_DEREF_SEARCHING , " searching " } ,
{ SAMBA_LDAP_DEREF_FINDING , " finding " } ,
{ SAMBA_LDAP_DEREF_ALWAYS , " always " } ,
{ - 1 , " auto " }
} ;
static const struct enum_list enum_ldap_passwd_sync [ ] = {
{ LDAP_PASSWD_SYNC_OFF , " no " } ,
{ LDAP_PASSWD_SYNC_OFF , " off " } ,
{ LDAP_PASSWD_SYNC_ON , " yes " } ,
{ LDAP_PASSWD_SYNC_ON , " on " } ,
{ LDAP_PASSWD_SYNC_ONLY , " only " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_map_readonly [ ] = {
{ MAP_READONLY_NO , " no " } ,
{ MAP_READONLY_NO , " false " } ,
{ MAP_READONLY_NO , " 0 " } ,
{ MAP_READONLY_YES , " yes " } ,
{ MAP_READONLY_YES , " true " } ,
{ MAP_READONLY_YES , " 1 " } ,
{ MAP_READONLY_PERMISSIONS , " permissions " } ,
{ MAP_READONLY_PERMISSIONS , " perms " } ,
{ - 1 , NULL }
} ;
static const struct enum_list enum_case [ ] = {
{ CASE_LOWER , " lower " } ,
{ CASE_UPPER , " upper " } ,
{ - 1 , NULL }
} ;
2012-07-23 07:53:16 +04:00
/* Note: We do not initialise the defaults union - it is not allowed in ANSI C
*
* The FLAG_HIDE is explicit . Parameters set this way do NOT appear in any edit
* screen in SWAT . This is used to exclude parameters as well as to squash all
* parameters that have been duplicated by pseudonyms .
*
* NOTE : To display a parameter in BASIC view set FLAG_BASIC
* Any parameter that does NOT have FLAG_ADVANCED will not disply at all
* Set FLAG_SHARE and FLAG_PRINT to specifically display parameters in
* respective views .
*
* NOTE2 : Handling of duplicated ( synonym ) parameters :
* Only the first occurance of a parameter should be enabled by FLAG_BASIC
* and / or FLAG_ADVANCED . All duplicates following the first mention should be
* set to FLAG_HIDE . ie : Make you must place the parameter that has the preferred
* name first , and all synonyms must follow it with the FLAG_HIDE attribute .
*/
# define GLOBAL_VAR(name) offsetof(struct loadparm_global, name)
# define LOCAL_VAR(name) offsetof(struct loadparm_service, name)
static struct parm_struct parm_table [ ] = {
{ N_ ( " Base Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " dos charset " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( dos_charset ) ,
. special = handle_dos_charset ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED
} ,
{
. label = " unix charset " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( unix_charset ) ,
. special = handle_charset ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED
} ,
{
. label = " comment " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( comment ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT
} ,
{
. label = " path " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-02-02 17:05:39 +04:00
. offset = LOCAL_VAR ( path ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " directory " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-02-02 17:05:39 +04:00
. offset = LOCAL_VAR ( path ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " workgroup " ,
. type = P_USTRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:06 +04:00
. offset = GLOBAL_VAR ( workgroup ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " realm " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:04 +04:00
. offset = GLOBAL_VAR ( realm_original ) ,
2012-07-23 07:53:16 +04:00
. special = handle_realm ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " netbios name " ,
. type = P_USTRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:02 +04:00
. offset = GLOBAL_VAR ( netbios_name ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " netbios aliases " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:23 +04:00
. offset = GLOBAL_VAR ( netbios_aliases ) ,
2012-07-23 07:53:16 +04:00
. special = handle_netbios_aliases ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " netbios scope " ,
. type = P_USTRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:02 +04:00
. offset = GLOBAL_VAR ( netbios_scope ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " server string " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:08:58 +04:00
. offset = GLOBAL_VAR ( server_string ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " interfaces " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:23 +04:00
. offset = GLOBAL_VAR ( interfaces ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " bind interfaces only " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:43 +04:00
. offset = GLOBAL_VAR ( bind_interfaces_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " config backend " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:08 +04:00
. offset = GLOBAL_VAR ( config_backend ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_config_backend ,
. flags = FLAG_HIDE | FLAG_ADVANCED | FLAG_META ,
} ,
{
. label = " server role " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2014-01-10 02:28:45 +04:00
. offset = GLOBAL_VAR ( _server_role ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_server_role ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{ N_ ( " Security Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " security " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2014-01-10 02:26:15 +04:00
. offset = GLOBAL_VAR ( _security ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_security ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " auth methods " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:21 +04:00
. offset = GLOBAL_VAR ( auth_methods ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " encrypt passwords " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:47 +04:00
. offset = GLOBAL_VAR ( encrypted_passwords ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " client schannel " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:07 +04:00
. offset = GLOBAL_VAR ( client_schannel ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " server schannel " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:18 +04:00
. offset = GLOBAL_VAR ( server_schannel ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " allow trusted domains " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:42 +04:00
. offset = GLOBAL_VAR ( allow_trusted_domains ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " map to guest " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( map_to_guest ) ,
. special = NULL ,
. enum_list = enum_map_to_guest ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " null passwords " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:51 +04:00
. offset = GLOBAL_VAR ( null_passwords ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
{
. label = " obey pam restrictions " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:52 +04:00
. offset = GLOBAL_VAR ( obey_pam_restrictions ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " password server " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 06:52:14 +04:00
. offset = GLOBAL_VAR ( password_server ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " smb passwd file " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:04 +04:00
. offset = GLOBAL_VAR ( smb_passwd_file ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " private dir " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:03 +04:00
. offset = GLOBAL_VAR ( private_dir ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " private directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:03 +04:00
. offset = GLOBAL_VAR ( private_dir ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " passdb backend " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( passdb_backend ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " algorithmic rid base " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:06 +04:00
. offset = GLOBAL_VAR ( algorithmic_rid_base ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " root directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:33 +04:00
. offset = GLOBAL_VAR ( rootdir ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " root dir " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:33 +04:00
. offset = GLOBAL_VAR ( rootdir ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " root " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:33 +04:00
. offset = GLOBAL_VAR ( rootdir ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " guest account " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 06:22:13 +04:00
. offset = GLOBAL_VAR ( guest_account ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " enable privileges " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:47 +04:00
. offset = GLOBAL_VAR ( enable_privileges ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
{
. label = " pam password change " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:52 +04:00
. offset = GLOBAL_VAR ( pam_password_change ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " passwd program " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:32 +04:00
. offset = GLOBAL_VAR ( passwd_program ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " passwd chat " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:32 +04:00
. offset = GLOBAL_VAR ( passwd_chat ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " passwd chat debug " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:52 +04:00
. offset = GLOBAL_VAR ( passwd_chat_debug ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " passwd chat timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:17 +04:00
. offset = GLOBAL_VAR ( passwd_chat_timeout ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " check password script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:28 +04:00
. offset = GLOBAL_VAR ( check_password_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " username map " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-01-10 02:38:54 +04:00
. offset = GLOBAL_VAR ( username_map ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " username level " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:20 +04:00
. offset = GLOBAL_VAR ( usernamelevel ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " unix password sync " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:55 +04:00
. offset = GLOBAL_VAR ( unix_password_sync ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " restrict anonymous " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( restrict_anonymous ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " lanman auth " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:48 +04:00
. offset = GLOBAL_VAR ( lanman_auth ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ntlm auth " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:51 +04:00
. offset = GLOBAL_VAR ( ntlm_auth ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client NTLMv2 auth " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:43 +04:00
. offset = GLOBAL_VAR ( client_ntlmv2_auth ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client lanman auth " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:43 +04:00
. offset = GLOBAL_VAR ( client_lanman_auth ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client plaintext auth " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:44 +04:00
. offset = GLOBAL_VAR ( client_plaintext_auth ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client use spnego principal " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( client_use_spnego_principal ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " username " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:21 +04:00
. offset = LOCAL_VAR ( username ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE | FLAG_DEPRECATED ,
} ,
{
. label = " user " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:21 +04:00
. offset = LOCAL_VAR ( username ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " users " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:21 +04:00
. offset = LOCAL_VAR ( username ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " invalid users " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2013-12-24 07:03:21 +04:00
. offset = LOCAL_VAR ( invalid_users ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " valid users " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2013-12-24 07:03:22 +04:00
. offset = LOCAL_VAR ( valid_users ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " admin users " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2013-12-24 07:03:22 +04:00
. offset = LOCAL_VAR ( admin_users ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " read list " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( readlist ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " write list " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( writelist ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " force user " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( force_user ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " force group " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( force_group ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " group " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( force_group ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " read only " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-02 17:44:05 +04:00
. offset = LOCAL_VAR ( read_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " write ok " ,
. type = P_BOOLREV ,
. p_class = P_LOCAL ,
2014-02-02 17:44:05 +04:00
. offset = LOCAL_VAR ( read_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " writeable " ,
. type = P_BOOLREV ,
. p_class = P_LOCAL ,
2014-02-02 17:44:05 +04:00
. offset = LOCAL_VAR ( read_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " writable " ,
. type = P_BOOLREV ,
. p_class = P_LOCAL ,
2014-02-02 17:44:05 +04:00
. offset = LOCAL_VAR ( read_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " acl check permissions " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:37 +04:00
. offset = LOCAL_VAR ( acl_check_permissions ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE | FLAG_DEPRECATED ,
} ,
{
. label = " acl group control " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:37 +04:00
. offset = LOCAL_VAR ( acl_group_control ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " acl map full control " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:37 +04:00
. offset = LOCAL_VAR ( acl_map_full_control ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
2013-09-02 19:36:59 +04:00
{
. label = " acl allow execute always " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:38 +04:00
. offset = LOCAL_VAR ( acl_allow_execute_always ) ,
2013-09-02 19:36:59 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
2012-07-23 07:53:16 +04:00
{
. label = " create mask " ,
. type = P_OCTAL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:19 +04:00
. offset = LOCAL_VAR ( create_mask ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " create mode " ,
. type = P_OCTAL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:19 +04:00
. offset = LOCAL_VAR ( create_mask ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " force create mode " ,
. type = P_OCTAL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:19 +04:00
. offset = LOCAL_VAR ( force_create_mode ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " directory mask " ,
. type = P_OCTAL ,
. p_class = P_LOCAL ,
2014-02-02 18:04:13 +04:00
. offset = LOCAL_VAR ( directory_mask ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " directory mode " ,
. type = P_OCTAL ,
. p_class = P_LOCAL ,
2014-02-02 18:04:13 +04:00
. offset = LOCAL_VAR ( directory_mask ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " force directory mode " ,
. type = P_OCTAL ,
. p_class = P_LOCAL ,
2014-02-03 05:48:28 +04:00
. offset = LOCAL_VAR ( force_directory_mode ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " force unknown acl user " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:36 +04:00
. offset = LOCAL_VAR ( force_unknown_acl_user ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " inherit permissions " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:34 +04:00
. offset = LOCAL_VAR ( inherit_perms ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " inherit acls " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:35 +04:00
. offset = LOCAL_VAR ( inherit_acls ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " inherit owner " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:35 +04:00
. offset = LOCAL_VAR ( inherit_owner ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " guest only " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:29 +04:00
. offset = LOCAL_VAR ( guest_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " only guest " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:29 +04:00
. offset = LOCAL_VAR ( guest_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " administrative share " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:30 +04:00
. offset = LOCAL_VAR ( administrative_share ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " guest ok " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:29 +04:00
. offset = LOCAL_VAR ( guest_ok ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " public " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:29 +04:00
. offset = LOCAL_VAR ( guest_ok ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " only user " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:32 +04:00
. offset = LOCAL_VAR ( onlyuser ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_DEPRECATED ,
} ,
{
. label = " hosts allow " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2014-02-02 17:15:57 +04:00
. offset = LOCAL_VAR ( hosts_allow ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " allow hosts " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2014-02-02 17:15:57 +04:00
. offset = LOCAL_VAR ( hosts_allow ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " hosts deny " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2014-02-02 17:24:10 +04:00
. offset = LOCAL_VAR ( hosts_deny ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " deny hosts " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2014-02-02 17:24:10 +04:00
. offset = LOCAL_VAR ( hosts_deny ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " preload modules " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:23 +04:00
. offset = GLOBAL_VAR ( preload_modules ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " dedicated keytab file " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:00 +04:00
. offset = GLOBAL_VAR ( dedicated_keytab_file ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " kerberos method " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:10 +04:00
. offset = GLOBAL_VAR ( kerberos_method ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_kerberos_method ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " map untrusted to domain " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:50 +04:00
. offset = GLOBAL_VAR ( map_untrusted_to_domain ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{ N_ ( " Logging Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " log level " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( loglevel ) ,
. special = handle_debug_list ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debuglevel " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( loglevel ) ,
. special = handle_debug_list ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " syslog " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( syslog ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " syslog only " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:54 +04:00
. offset = GLOBAL_VAR ( syslog_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " log file " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( logfile ) ,
. special = handle_logfile ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max log size " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( max_log_size ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debug timestamp " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:54 +04:00
. offset = GLOBAL_VAR ( timestamp_logs ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " timestamp logs " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:54 +04:00
. offset = GLOBAL_VAR ( timestamp_logs ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debug prefix timestamp " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:45 +04:00
. offset = GLOBAL_VAR ( debug_prefix_timestamp ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debug hires timestamp " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:45 +04:00
. offset = GLOBAL_VAR ( debug_hires_timestamp ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debug pid " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:45 +04:00
. offset = GLOBAL_VAR ( debug_pid ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debug uid " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:45 +04:00
. offset = GLOBAL_VAR ( debug_uid ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " debug class " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:45 +04:00
. offset = GLOBAL_VAR ( debug_class ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " enable core files " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:47 +04:00
. offset = GLOBAL_VAR ( enable_core_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " Protocol Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " allocation roundup size " ,
. type = P_BYTES ,
. p_class = P_LOCAL ,
2013-12-24 07:03:40 +04:00
. offset = LOCAL_VAR ( allocation_roundup_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " aio read size " ,
. type = P_BYTES ,
. p_class = P_LOCAL ,
2013-12-24 07:03:40 +04:00
. offset = LOCAL_VAR ( aio_read_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " aio write size " ,
. type = P_BYTES ,
. p_class = P_LOCAL ,
2013-12-24 07:03:40 +04:00
. offset = LOCAL_VAR ( aio_write_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " aio write behind " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:26 +04:00
. offset = LOCAL_VAR ( aio_write_behind ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " smb ports " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( smb_ports ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " large readwrite " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:48 +04:00
. offset = GLOBAL_VAR ( large_readwrite ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " server max protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( srv_maxprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( srv_maxprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( srv_maxprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " server min protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( srv_minprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " min protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( srv_minprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client max protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( cli_maxprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client min protocol " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( cli_minprotocol ) ,
. special = NULL ,
. enum_list = enum_protocol ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " unicode " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:55 +04:00
. offset = GLOBAL_VAR ( unicode ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " min receivefile size " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( iminreceivefile ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " read raw " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( bReadRaw ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " write raw " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( bWriteRaw ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " disable netbios " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:46 +04:00
. offset = GLOBAL_VAR ( disable_netbios ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " reset on zero vc " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:53 +04:00
. offset = GLOBAL_VAR ( reset_on_zero_vc ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " log writeable files on exit " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:49 +04:00
. offset = GLOBAL_VAR ( log_writeable_files_on_exit ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " defer sharing violations " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:46 +04:00
. offset = GLOBAL_VAR ( defer_sharing_violations ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " ea support " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:36 +04:00
. offset = LOCAL_VAR ( ea_support ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " nt acl support " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:36 +04:00
. offset = LOCAL_VAR ( nt_acl_support ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " nt pipe support " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:51 +04:00
. offset = GLOBAL_VAR ( nt_pipe_support ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " nt status support " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:51 +04:00
. offset = GLOBAL_VAR ( nt_status_support ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " profile acls " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:36 +04:00
. offset = LOCAL_VAR ( profile_acls ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{
. label = " map acl inherit " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:37 +04:00
. offset = LOCAL_VAR ( map_acl_inherit ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " afs share " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:37 +04:00
. offset = LOCAL_VAR ( afs_share ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " max mux " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:15 +04:00
. offset = GLOBAL_VAR ( maxmux ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max xmit " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( max_xmit ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " name resolve order " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:23 +04:00
. offset = GLOBAL_VAR ( name_resolve_order ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " max ttl " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( max_ttl ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max wins ttl " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( max_wins_ttl ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " min wins ttl " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( min_wins_ttl ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " time server " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:54 +04:00
. offset = GLOBAL_VAR ( time_server ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " unix extensions " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:55 +04:00
. offset = GLOBAL_VAR ( unix_extensions ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " use spnego " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:56 +04:00
. offset = GLOBAL_VAR ( use_spnego ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
{
. label = " client signing " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( client_signing ) ,
. special = NULL ,
. enum_list = enum_smb_signing_vals ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " server signing " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( server_signing ) ,
. special = NULL ,
. enum_list = enum_smb_signing_vals ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " smb encrypt " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2013-12-24 07:03:41 +04:00
. offset = LOCAL_VAR ( smb_encrypt ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_smb_signing_vals ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client use spnego " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:44 +04:00
. offset = GLOBAL_VAR ( client_use_spnego ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " client ldap sasl wrapping " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( client_ldap_sasl_wrapping ) ,
. special = NULL ,
. enum_list = enum_ldap_sasl_wrapping ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " enable asu support " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:46 +04:00
. offset = GLOBAL_VAR ( enable_asu_support ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " svcctl list " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:25 +04:00
. offset = GLOBAL_VAR ( svcctl_list ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " cldap port " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( cldap_port ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " dgram port " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( dgram_port ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " nbt port " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( nbt_port ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " krb5 port " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( krb5_port ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " kpasswd port " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( kpasswd_port ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " web port " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( web_port ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " rpc big endian " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:54 +04:00
. offset = GLOBAL_VAR ( rpc_big_endian ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL
} ,
2012-09-06 16:23:26 +04:00
{
. label = " durable handles " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:42 +04:00
. offset = LOCAL_VAR ( durable_handles ) ,
2012-09-06 16:23:26 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2012-07-23 07:53:16 +04:00
{ N_ ( " Tuning Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " block size " ,
. type = P_BYTES ,
. p_class = P_LOCAL ,
2013-12-24 07:03:39 +04:00
. offset = LOCAL_VAR ( block_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " deadtime " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( deadtime ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " getwd cache " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( getwd_cache ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " keepalive " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:10 +04:00
. offset = GLOBAL_VAR ( keepalive ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " change notify " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:41 +04:00
. offset = LOCAL_VAR ( change_notify ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " directory name cache size " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
2013-12-24 07:03:40 +04:00
. offset = LOCAL_VAR ( directory_name_cache_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " kernel change notify " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:41 +04:00
. offset = LOCAL_VAR ( kernel_change_notify ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " lpq cache time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( lpqcachetime ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max smbd processes " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:15 +04:00
. offset = GLOBAL_VAR ( max_smbd_processes ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max connections " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
2013-12-24 07:03:19 +04:00
. offset = LOCAL_VAR ( max_connections ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " max disk size " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( maxdisksize ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " max open files " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( max_open_files ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " min print space " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
2013-12-24 07:03:38 +04:00
. offset = LOCAL_VAR ( minprintspace ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " socket options " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( socket_options ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " strict allocate " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:32 +04:00
. offset = LOCAL_VAR ( strict_allocate ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " strict sync " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:18 +04:00
. offset = LOCAL_VAR ( strict_sync ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " sync always " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:32 +04:00
. offset = LOCAL_VAR ( syncalways ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " use mmap " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:55 +04:00
. offset = GLOBAL_VAR ( use_mmap ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2013-02-20 08:29:42 +04:00
{
. label = " use ntdb " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:56 +04:00
. offset = GLOBAL_VAR ( use_ntdb ) ,
2013-02-20 08:29:42 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2012-07-23 07:53:16 +04:00
{
. label = " use sendfile " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:36 +04:00
. offset = LOCAL_VAR ( _use_sendfile ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " hostname lookups " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:48 +04:00
. offset = GLOBAL_VAR ( hostname_lookups ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " write cache size " ,
. type = P_BYTES ,
. p_class = P_LOCAL ,
2013-12-24 07:03:39 +04:00
. offset = LOCAL_VAR ( write_cache_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " name cache timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( name_cache_timeout ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ctdbd socket " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:59 +04:00
. offset = GLOBAL_VAR ( ctdbd_socket ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " cluster addresses " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:22 +04:00
. offset = GLOBAL_VAR ( cluster_addresses ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " clustering " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( clustering ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " ctdb timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ctdb_timeout ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " ctdb locktime warn threshold " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ctdb_locktime_warn_threshold ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " smb2 max read " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:18 +04:00
. offset = GLOBAL_VAR ( smb2_max_read ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " smb2 max write " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:19 +04:00
. offset = GLOBAL_VAR ( smb2_max_write ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " smb2 max trans " ,
. type = P_BYTES ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:19 +04:00
. offset = GLOBAL_VAR ( smb2_max_trans ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " smb2 max credits " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ismb2_max_credits ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " Printing Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " max reported print jobs " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
2013-12-24 07:03:39 +04:00
. offset = LOCAL_VAR ( max_reported_jobs ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " max print jobs " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( iMaxPrintJobs ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " load printers " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:49 +04:00
. offset = GLOBAL_VAR ( load_printers ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " printcap cache time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:18 +04:00
. offset = GLOBAL_VAR ( printcap_cache_time ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " printcap name " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szPrintcapname ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " printcap " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szPrintcapname ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " printable " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-02 17:53:44 +04:00
. offset = LOCAL_VAR ( printable ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " print notify backchannel " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:30 +04:00
. offset = LOCAL_VAR ( print_notify_backchannel ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " print ok " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-02 17:53:44 +04:00
. offset = LOCAL_VAR ( printable ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " printing " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2013-12-24 07:03:38 +04:00
. offset = LOCAL_VAR ( printing ) ,
2012-07-23 07:53:16 +04:00
. special = handle_printing ,
. enum_list = enum_printing ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " cups options " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:41 +04:00
. offset = LOCAL_VAR ( cups_options ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " cups server " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:28 +04:00
. offset = GLOBAL_VAR ( cups_server ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " cups encrypt " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( CupsEncrypt ) ,
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " cups connection timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( cups_connection_timeout ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " iprint server " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:30 +04:00
. offset = GLOBAL_VAR ( iprint_server ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " print command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:22 +04:00
. offset = LOCAL_VAR ( printcommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " disable spoolss " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:46 +04:00
. offset = GLOBAL_VAR ( _disable_spoolss ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " enable spoolss " ,
. type = P_BOOLREV ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:46 +04:00
. offset = GLOBAL_VAR ( _disable_spoolss ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " lpq command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:22 +04:00
. offset = LOCAL_VAR ( lpqcommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " lprm command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:22 +04:00
. offset = LOCAL_VAR ( lprmcommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " lppause command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:23 +04:00
. offset = LOCAL_VAR ( lppausecommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " lpresume command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:23 +04:00
. offset = LOCAL_VAR ( lpresumecommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " queuepause command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:23 +04:00
. offset = LOCAL_VAR ( queuepausecommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " queueresume command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:23 +04:00
. offset = LOCAL_VAR ( queueresumecommand ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL ,
} ,
{
. label = " addport command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:26 +04:00
. offset = GLOBAL_VAR ( addport_cmd ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " enumports command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:29 +04:00
. offset = GLOBAL_VAR ( enumports_cmd ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " addprinter command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:27 +04:00
. offset = GLOBAL_VAR ( addprinter_cmd ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " deleteprinter command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:28 +04:00
. offset = GLOBAL_VAR ( deleteprinter_cmd ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " show add printer wizard " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:50 +04:00
. offset = GLOBAL_VAR ( ms_add_printer_wizard ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " os2 driver map " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:32 +04:00
. offset = GLOBAL_VAR ( os2_driver_map ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " printer name " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-01-30 07:54:39 +04:00
. offset = LOCAL_VAR ( _printername ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " printer " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-01-30 07:54:39 +04:00
. offset = LOCAL_VAR ( _printername ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " use client driver " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:35 +04:00
. offset = LOCAL_VAR ( use_client_driver ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " default devmode " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:35 +04:00
. offset = LOCAL_VAR ( default_devmode ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " force printername " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:35 +04:00
. offset = LOCAL_VAR ( force_printername ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{
. label = " printjob username " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:24 +04:00
. offset = LOCAL_VAR ( printjob_username ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_PRINT ,
} ,
{ N_ ( " Filename Handling " ) , P_SEP , P_SEPARATOR } ,
{
. label = " mangling method " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:31 +04:00
. offset = GLOBAL_VAR ( mangling_method ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " mangle prefix " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( mangle_prefix ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " default case " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2014-02-03 06:12:09 +04:00
. offset = LOCAL_VAR ( default_case ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_case ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " case sensitive " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2014-02-03 06:01:01 +04:00
. offset = LOCAL_VAR ( case_sensitive ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " casesignames " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2014-02-03 06:01:01 +04:00
. offset = LOCAL_VAR ( case_sensitive ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_HIDE ,
} ,
{
. label = " preserve case " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:08:59 +04:00
. offset = LOCAL_VAR ( preserve_case ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " short preserve case " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:08:59 +04:00
. offset = LOCAL_VAR ( short_preserve_case ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " mangling char " ,
. type = P_CHAR ,
. p_class = P_LOCAL ,
2014-02-03 06:16:06 +04:00
. offset = LOCAL_VAR ( mangling_char ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " hide dot files " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:28 +04:00
. offset = LOCAL_VAR ( hide_dot_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " hide special files " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:28 +04:00
. offset = LOCAL_VAR ( hide_special_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " hide unreadable " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:08:58 +04:00
. offset = LOCAL_VAR ( hide_unreadable ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " hide unwriteable files " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:08:59 +04:00
. offset = LOCAL_VAR ( hide_unwriteable_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " delete veto files " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:08:58 +04:00
. offset = LOCAL_VAR ( delete_veto_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " veto files " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:26 +04:00
. offset = LOCAL_VAR ( veto_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " hide files " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:26 +04:00
. offset = LOCAL_VAR ( hide_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " veto oplock files " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-02-04 06:08:59 +04:00
. offset = LOCAL_VAR ( veto_oplock_files ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " map archive " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:18 +04:00
. offset = LOCAL_VAR ( map_archive ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " map hidden " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:18 +04:00
. offset = LOCAL_VAR ( map_hidden ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " map system " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:19 +04:00
. offset = LOCAL_VAR ( map_system ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " map readonly " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2013-12-24 07:03:40 +04:00
. offset = LOCAL_VAR ( map_readonly ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_map_readonly ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " mangled names " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-03 06:06:25 +04:00
. offset = LOCAL_VAR ( mangled_names ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " max stat cache size " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:15 +04:00
. offset = GLOBAL_VAR ( max_stat_cache_size ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " stat cache " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:54 +04:00
. offset = GLOBAL_VAR ( stat_cache ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " store dos attributes " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:30 +04:00
. offset = LOCAL_VAR ( store_dos_attributes ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " dmapi support " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:30 +04:00
. offset = LOCAL_VAR ( dmapi_support ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{ N_ ( " Domain Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " machine password timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( machine_password_timeout ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{ N_ ( " Logon Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " add user script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:00 +04:00
. offset = GLOBAL_VAR ( add_user_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " rename user script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:33 +04:00
. offset = GLOBAL_VAR ( renameuser_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " delete user script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:01 +04:00
. offset = GLOBAL_VAR ( delete_user_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " add group script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:00 +04:00
. offset = GLOBAL_VAR ( add_group_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " delete group script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:01 +04:00
. offset = GLOBAL_VAR ( delete_group_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " add user to group script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:00 +04:00
. offset = GLOBAL_VAR ( add_user_to_group_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " delete user from group script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:01 +04:00
. offset = GLOBAL_VAR ( delete_user_from_group_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " set primary group script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:01 +04:00
. offset = GLOBAL_VAR ( set_primary_group_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " add machine script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:00 +04:00
. offset = GLOBAL_VAR ( add_machine_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " shutdown script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:34 +04:00
. offset = GLOBAL_VAR ( shutdown_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " abort shutdown script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:26 +04:00
. offset = GLOBAL_VAR ( abort_shutdown_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " username map script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-01-10 02:34:54 +04:00
. offset = GLOBAL_VAR ( username_map_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " username map cache time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:20 +04:00
. offset = GLOBAL_VAR ( username_map_cache_time ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " logon script " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:02 +04:00
. offset = GLOBAL_VAR ( logon_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " logon path " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:01 +04:00
. offset = GLOBAL_VAR ( logon_path ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " logon drive " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:01 +04:00
. offset = GLOBAL_VAR ( logon_drive ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " logon home " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:01 +04:00
. offset = GLOBAL_VAR ( logon_home ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " domain logons " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:46 +04:00
. offset = GLOBAL_VAR ( _domain_logons ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " init logon delayed hosts " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2014-01-10 02:32:42 +04:00
. offset = GLOBAL_VAR ( init_logon_delayed_hosts ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " init logon delay " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:10 +04:00
. offset = GLOBAL_VAR ( init_logon_delay ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " Browse Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " os level " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( os_level ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " lm announce " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( lm_announce ) ,
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " lm interval " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( lm_interval ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " preferred master " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( iPreferredMaster ) ,
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " prefered master " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( iPreferredMaster ) ,
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_HIDE ,
} ,
{
. label = " local master " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:49 +04:00
. offset = GLOBAL_VAR ( local_master ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " domain master " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
2014-01-10 02:21:46 +04:00
. offset = GLOBAL_VAR ( _domain_master ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_BASIC | FLAG_ADVANCED ,
} ,
{
. label = " browse list " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:43 +04:00
. offset = GLOBAL_VAR ( browse_list ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " browseable " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:17 +04:00
. offset = LOCAL_VAR ( browseable ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " browsable " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:17 +04:00
. offset = LOCAL_VAR ( browseable ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " access based share enum " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:29 +04:00
. offset = LOCAL_VAR ( access_based_share_enum ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE
} ,
{
. label = " enhanced browsing " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( enhanced_browsing ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " WINS Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " dns proxy " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:59 +04:00
. offset = GLOBAL_VAR ( wins_dns_proxy ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " wins proxy " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:59 +04:00
. offset = GLOBAL_VAR ( wins_proxy ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " wins server " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:26 +04:00
. offset = GLOBAL_VAR ( wins_server_list ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " wins support " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:57 +04:00
. offset = GLOBAL_VAR ( we_are_a_wins_server ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD ,
} ,
{
. label = " wins hook " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:35 +04:00
. offset = GLOBAL_VAR ( wins_hook ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " Locking Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " blocking locks " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:34 +04:00
. offset = LOCAL_VAR ( blocking_locks ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " csc policy " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2013-12-24 07:03:19 +04:00
. offset = LOCAL_VAR ( csc_policy ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_csc_policy ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " fake oplocks " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:33 +04:00
. offset = LOCAL_VAR ( fake_oplocks ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " kernel oplocks " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:31 +04:00
. offset = LOCAL_VAR ( kernel_oplocks ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
2012-09-08 12:47:51 +04:00
{
. label = " kernel share modes " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:31 +04:00
. offset = LOCAL_VAR ( kernel_share_modes ) ,
2012-09-08 12:47:51 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
2012-07-23 07:53:16 +04:00
{
. label = " locking " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:30 +04:00
. offset = LOCAL_VAR ( locking ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " lock spin time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:13 +04:00
. offset = GLOBAL_VAR ( lock_spin_time ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " oplocks " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:18 +04:00
. offset = LOCAL_VAR ( oplocks ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " level2 oplocks " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:31 +04:00
. offset = LOCAL_VAR ( level2_oplocks ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " oplock break wait time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( oplock_break_wait_time ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " oplock contention limit " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
2013-12-24 07:03:39 +04:00
. offset = LOCAL_VAR ( oplock_contention_limit ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " posix locking " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:31 +04:00
. offset = LOCAL_VAR ( posix_locking ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " strict locking " ,
. type = P_ENUM ,
. p_class = P_LOCAL ,
2013-12-24 07:03:31 +04:00
. offset = LOCAL_VAR ( strict_locking ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{ N_ ( " Ldap Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " ldap admin dn " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:30 +04:00
. offset = GLOBAL_VAR ( ldap_admin_dn ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap delete dn " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_delete_dn ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap group suffix " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szLdapGroupSuffix ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap idmap suffix " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szLdapIdmapSuffix ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap machine suffix " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szLdapMachineSuffix ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap passwd sync " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_passwd_sync ) ,
. special = NULL ,
. enum_list = enum_ldap_passwd_sync ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap password sync " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_passwd_sync ) ,
. special = NULL ,
. enum_list = enum_ldap_passwd_sync ,
. flags = FLAG_HIDE ,
} ,
{
. label = " ldap replication sleep " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_replication_sleep ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap suffix " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:30 +04:00
. offset = GLOBAL_VAR ( ldap_suffix ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap ssl " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_ssl ) ,
. special = NULL ,
. enum_list = enum_ldap_ssl ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap ssl ads " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_ssl_ads ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap deref " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_deref ) ,
. special = NULL ,
. enum_list = enum_ldap_deref ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap follow referral " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_follow_referral ) ,
. special = NULL ,
. enum_list = enum_bool_auto ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_timeout ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap connection timeout " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_connection_timeout ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap page size " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_page_size ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap user suffix " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szLdapUserSuffix ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap debug level " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_debug_level ) ,
. special = handle_ldap_debug_level ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ldap debug threshold " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ldap_debug_threshold ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " EventLog Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " eventlog list " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:22 +04:00
. offset = GLOBAL_VAR ( eventlog_list ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE ,
} ,
{ N_ ( " Miscellaneous Options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " add share command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:02 +04:00
. offset = GLOBAL_VAR ( add_share_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " change share command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:02 +04:00
. offset = GLOBAL_VAR ( change_share_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " delete share command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:02 +04:00
. offset = GLOBAL_VAR ( delete_share_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " config file " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szConfigFile ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE | FLAG_META ,
} ,
{
. label = " preload " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:27 +04:00
. offset = GLOBAL_VAR ( auto_services ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " auto services " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:27 +04:00
. offset = GLOBAL_VAR ( auto_services ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " lock directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 06:46:08 +04:00
. offset = GLOBAL_VAR ( lock_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " lock dir " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 06:46:08 +04:00
. offset = GLOBAL_VAR ( lock_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " state directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szStateDir ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " cache directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szCacheDir ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " pid directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 06:57:21 +04:00
. offset = GLOBAL_VAR ( pid_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ntp signd socket directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:03 +04:00
. offset = GLOBAL_VAR ( ntp_signd_socket_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
# ifdef WITH_UTMP
{
. label = " utmp directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 07:00:28 +04:00
. offset = GLOBAL_VAR ( utmp_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " wtmp directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-03 07:03:35 +04:00
. offset = GLOBAL_VAR ( wtmp_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " utmp " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:56 +04:00
. offset = GLOBAL_VAR ( utmp ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
# endif
{
. label = " default service " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:28 +04:00
. offset = GLOBAL_VAR ( defaultservice ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " default " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:28 +04:00
. offset = GLOBAL_VAR ( defaultservice ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " message command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:31 +04:00
. offset = GLOBAL_VAR ( msg_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " dfree cache time " ,
. type = P_INTEGER ,
. p_class = P_LOCAL ,
2013-12-24 07:03:39 +04:00
. offset = LOCAL_VAR ( dfree_cache_time ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " dfree command " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:27 +04:00
. offset = LOCAL_VAR ( dfree_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " get quota command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:30 +04:00
. offset = GLOBAL_VAR ( get_quota_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " set quota command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:34 +04:00
. offset = GLOBAL_VAR ( set_quota_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " remote announce " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:33 +04:00
. offset = GLOBAL_VAR ( remote_announce ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " remote browse sync " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:33 +04:00
. offset = GLOBAL_VAR ( remote_browse_sync ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2012-07-27 06:56:22 +04:00
{
. label = " nbt client socket address " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( nbt_client_socket_address ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
2012-07-23 07:53:16 +04:00
{
. label = " socket address " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2012-07-27 06:56:22 +04:00
. offset = GLOBAL_VAR ( nbt_client_socket_address ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
2012-07-23 07:15:23 +04:00
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
2012-07-23 07:53:16 +04:00
} ,
{
. label = " nmbd bind explicit broadcast " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:51 +04:00
. offset = GLOBAL_VAR ( nmbd_bind_explicit_broadcast ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " homedir map " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:03 +04:00
. offset = GLOBAL_VAR ( homedir_map ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " afs username map " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:59 +04:00
. offset = GLOBAL_VAR ( afs_username_map ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " afs token lifetime " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:06 +04:00
. offset = GLOBAL_VAR ( afs_token_lifetime ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " log nt token command " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:31 +04:00
. offset = GLOBAL_VAR ( log_nt_token_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " NIS homedir " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:50 +04:00
. offset = GLOBAL_VAR ( nis_home_map ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " -valid " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( valid ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " copy " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( szCopy ) ,
. special = handle_copy ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " include " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( szInclude ) ,
. special = handle_include ,
. enum_list = NULL ,
. flags = FLAG_HIDE | FLAG_META ,
} ,
{
. label = " preexec " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:20 +04:00
. offset = LOCAL_VAR ( preexec ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " exec " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:20 +04:00
. offset = LOCAL_VAR ( preexec ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " preexec close " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:27 +04:00
. offset = LOCAL_VAR ( preexec_close ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " postexec " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:20 +04:00
. offset = LOCAL_VAR ( postexec ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " root preexec " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:20 +04:00
. offset = LOCAL_VAR ( rootpreexec ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " root preexec close " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:27 +04:00
. offset = LOCAL_VAR ( rootpreexec_close ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " root postexec " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:21 +04:00
. offset = LOCAL_VAR ( rootpostexec ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " available " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( bAvailable ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT ,
} ,
{
. label = " registry shares " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:52 +04:00
. offset = GLOBAL_VAR ( registry_shares ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare allow guests " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:56 +04:00
. offset = GLOBAL_VAR ( usershare_allow_guests ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare max shares " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:20 +04:00
. offset = GLOBAL_VAR ( usershare_max_shares ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare owner only " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:56 +04:00
. offset = GLOBAL_VAR ( usershare_owner_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare path " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:35 +04:00
. offset = GLOBAL_VAR ( usershare_path ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare prefix allow list " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:25 +04:00
. offset = GLOBAL_VAR ( usershare_prefix_allow_list ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare prefix deny list " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:25 +04:00
. offset = GLOBAL_VAR ( usershare_prefix_deny_list ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " usershare template share " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szUsershareTemplateShare ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " volume " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( volume ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " fstype " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( fstype ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " allow insecure wide links " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2014-02-04 06:09:02 +04:00
. offset = GLOBAL_VAR ( allow_insecure_wide_links ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " wide links " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( bWidelinks ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " follow symlinks " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:09:03 +04:00
. offset = LOCAL_VAR ( follow_symlinks ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " dont descend " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-02-03 05:56:12 +04:00
. offset = LOCAL_VAR ( dont_descend ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " magic script " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-02-04 06:09:03 +04:00
. offset = LOCAL_VAR ( magic_script ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " magic output " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2014-02-04 06:09:03 +04:00
. offset = LOCAL_VAR ( magic_output ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " delete readonly " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:33 +04:00
. offset = LOCAL_VAR ( delete_readonly ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " dos filemode " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:33 +04:00
. offset = LOCAL_VAR ( dos_filemode ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " dos filetimes " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:33 +04:00
. offset = LOCAL_VAR ( dos_filetimes ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " dos filetime resolution " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:34 +04:00
. offset = LOCAL_VAR ( dos_filetime_resolution ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL ,
} ,
{
. label = " fake directory create times " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2014-02-04 06:09:02 +04:00
. offset = LOCAL_VAR ( fake_directory_create_times ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " async smb echo handler " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:43 +04:00
. offset = GLOBAL_VAR ( async_smb_echo_handler ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{
. label = " panic action " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:32 +04:00
. offset = GLOBAL_VAR ( panic_action ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " perfcount module " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:32 +04:00
. offset = GLOBAL_VAR ( perfcount_module ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " VFS module options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " vfs objects " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2013-12-24 07:03:25 +04:00
. offset = LOCAL_VAR ( vfs_objects ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " vfs object " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
2013-12-24 07:03:25 +04:00
. offset = LOCAL_VAR ( vfs_objects ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{ N_ ( " MSDFS options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " msdfs root " ,
. type = P_BOOL ,
. p_class = P_LOCAL ,
2013-12-24 07:03:17 +04:00
. offset = LOCAL_VAR ( msdfs_root ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " msdfs proxy " ,
. type = P_STRING ,
. p_class = P_LOCAL ,
2013-12-24 07:03:25 +04:00
. offset = LOCAL_VAR ( msdfs_proxy ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_SHARE ,
} ,
{
. label = " host msdfs " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:48 +04:00
. offset = GLOBAL_VAR ( host_msdfs ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{ N_ ( " Winbind options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " passdb expand explicit " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:52 +04:00
. offset = GLOBAL_VAR ( passdb_expand_explicit ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " idmap backend " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szIdmapBackend ) ,
. special = handle_idmap_backend ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
{
. label = " idmap cache time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:09 +04:00
. offset = GLOBAL_VAR ( idmap_cache_time ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " idmap negative cache time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:10 +04:00
. offset = GLOBAL_VAR ( idmap_negative_cache_time ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " idmap uid " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szIdmapUID ) ,
. special = handle_idmap_uid ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
{
. label = " winbind uid " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szIdmapUID ) ,
. special = handle_idmap_uid ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " idmap gid " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szIdmapGID ) ,
. special = handle_idmap_gid ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_DEPRECATED ,
} ,
{
. label = " winbind gid " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( szIdmapGID ) ,
. special = handle_idmap_gid ,
. enum_list = NULL ,
. flags = FLAG_HIDE ,
} ,
{
. label = " template homedir " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:04 +04:00
. offset = GLOBAL_VAR ( template_homedir ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " template shell " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:04 +04:00
. offset = GLOBAL_VAR ( template_shell ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind separator " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:05 +04:00
. offset = GLOBAL_VAR ( winbind_separator ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind cache time " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( winbind_cache_time ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind reconnect delay " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( winbind_reconnect_delay ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind max clients " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( winbind_max_clients ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind enum users " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:57 +04:00
. offset = GLOBAL_VAR ( winbind_enum_users ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind enum groups " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:57 +04:00
. offset = GLOBAL_VAR ( winbind_enum_groups ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind use default domain " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:59 +04:00
. offset = GLOBAL_VAR ( winbind_use_default_domain ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind trusted domains only " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:58 +04:00
. offset = GLOBAL_VAR ( winbind_trusted_domains_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind nested groups " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:57 +04:00
. offset = GLOBAL_VAR ( winbind_nested_groups ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind expand groups " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( winbind_expand_groups ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind nss info " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:25 +04:00
. offset = GLOBAL_VAR ( winbind_nss_info ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind refresh tickets " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:58 +04:00
. offset = GLOBAL_VAR ( winbind_refresh_tickets ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind offline logon " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:58 +04:00
. offset = GLOBAL_VAR ( winbind_offline_logon ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind normalize names " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:57 +04:00
. offset = GLOBAL_VAR ( winbind_normalize_names ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind rpc only " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:58 +04:00
. offset = GLOBAL_VAR ( winbind_rpc_only ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " create krb5 conf " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:44 +04:00
. offset = GLOBAL_VAR ( create_krb5_conf ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " ncalrpc dir " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( ncalrpc_dir ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind max domain connections " ,
. type = P_INTEGER ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( winbindMaxDomainConnections ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbindd socket directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:05 +04:00
. offset = GLOBAL_VAR ( winbindd_socket_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbindd privileged socket directory " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:05 +04:00
. offset = GLOBAL_VAR ( winbindd_privileged_socket_directory ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " winbind sealed pipes " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:58 +04:00
. offset = GLOBAL_VAR ( winbind_sealed_pipes ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2013-10-17 20:39:56 +04:00
{
. label = " neutralize nt4 emulation " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:50 +04:00
. offset = GLOBAL_VAR ( neutralize_nt4_emulation ) ,
2013-10-17 20:39:56 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2013-10-17 20:39:56 +04:00
{
. label = " reject md5 servers " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:53 +04:00
. offset = GLOBAL_VAR ( reject_md5_servers ) ,
2013-10-17 20:39:56 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2013-10-17 20:39:56 +04:00
{
. label = " require strong key " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:53 +04:00
. offset = GLOBAL_VAR ( require_strong_key ) ,
2013-10-17 20:39:56 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2012-07-23 07:53:16 +04:00
{ N_ ( " DNS options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " allow dns updates " ,
. type = P_ENUM ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( allow_dns_updates ) ,
. special = NULL ,
. enum_list = enum_dns_update_settings ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " dns forwarder " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( dns_forwarder ) ,
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " dns update command " ,
. type = P_CMDLIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:22 +04:00
. offset = GLOBAL_VAR ( dns_update_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " nsupdate command " ,
. type = P_CMDLIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:23 +04:00
. offset = GLOBAL_VAR ( nsupdate_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " rndc command " ,
. type = P_CMDLIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:24 +04:00
. offset = GLOBAL_VAR ( rndc_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " multicast dns register " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:50 +04:00
. offset = GLOBAL_VAR ( multicast_dns_register ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED | FLAG_GLOBAL ,
} ,
{ N_ ( " AD DC options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " samba kcc command " ,
. type = P_CMDLIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:24 +04:00
. offset = GLOBAL_VAR ( samba_kcc_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " server services " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( server_services ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " dcerpc endpoint servers " ,
. type = P_LIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:22 +04:00
. offset = GLOBAL_VAR ( dcerpc_endpoint_servers ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " spn update command " ,
. type = P_CMDLIST ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:25 +04:00
. offset = GLOBAL_VAR ( spn_update_command ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
{
. label = " share backend " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
2013-12-24 07:04:34 +04:00
. offset = GLOBAL_VAR ( share_backend ) ,
2012-07-23 07:53:16 +04:00
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " ntvfs handler " ,
. type = P_LIST ,
. p_class = P_LOCAL ,
. offset = LOCAL_VAR ( ntvfs_handler ) ,
. special = NULL ,
. enum_list = NULL
} ,
2013-12-06 14:38:21 +04:00
{
. label = " allow nt4 crypto " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:42 +04:00
. offset = GLOBAL_VAR ( allow_nt4_crypto ) ,
2013-12-06 14:38:21 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2013-12-06 14:39:15 +04:00
{
. label = " reject md5 clients " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
2013-12-24 07:03:53 +04:00
. offset = GLOBAL_VAR ( reject_md5_clients ) ,
2013-12-06 14:39:15 +04:00
. special = NULL ,
. enum_list = NULL ,
. flags = FLAG_ADVANCED ,
} ,
2012-07-23 07:53:16 +04:00
{ N_ ( " TLS options " ) , P_SEP , P_SEPARATOR } ,
{
. label = " tls enabled " ,
. type = P_BOOL ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( tls_enabled ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " tls keyfile " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( tls_keyfile ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " tls certfile " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( tls_certfile ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " tls cafile " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( tls_cafile ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " tls crlfile " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( tls_crlfile ) ,
. special = NULL ,
. enum_list = NULL
} ,
{
. label = " tls dh params file " ,
. type = P_STRING ,
. p_class = P_GLOBAL ,
. offset = GLOBAL_VAR ( tls_dhpfile ) ,
. special = NULL ,
. enum_list = NULL
} ,
{ NULL , P_BOOL , P_NONE , 0 , NULL , NULL , 0 }
} ;