Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Maxime Besson
lemonldap-ng
Commits
23455138
Commit
23455138
authored
Jan 24, 2017
by
Yadd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Captcha and token in progress (#1140)
parent
81b47b79
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
140 additions
and
104 deletions
+140
-104
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm
...nldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm
+2
-2
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
...p-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
+17
-19
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm
...dap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm
+1
-1
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
+8
-10
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
...p-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
+10
-13
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm
+3
-3
lemonldap-ng-manager/site/static/languages/en.json
lemonldap-ng-manager/site/static/languages/en.json
+2
-2
lemonldap-ng-manager/site/static/languages/fr.json
lemonldap-ng-manager/site/static/languages/fr.json
+2
-2
lemonldap-ng-manager/site/static/reverseTree.json
lemonldap-ng-manager/site/static/reverseTree.json
+1
-1
lemonldap-ng-manager/site/static/struct.json
lemonldap-ng-manager/site/static/struct.json
+1
-1
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm
+81
-49
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Constants.pm
...nldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Constants.pm
+3
-1
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Request.pm
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Request.pm
+8
-0
lemonldap-ng-portal/t/lmConf-1.js
lemonldap-ng-portal/t/lmConf-1.js
+1
-0
No files found.
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm
View file @
23455138
...
...
@@ -23,9 +23,9 @@ use constant HANDLERSECTION => "handler";
use
constant
MANAGERSECTION
=>
"
manager
";
use
constant
SESSIONSEXPLORERSECTION
=>
"
sessionsExplorer
";
use
constant
APPLYSECTION
=>
"
apply
";
our
$hashParameters
=
qr/^(?:(?:l(?:o(?:ca(?:lSessionStorageOption|tionRule)|goutService)|dapExportedVar|wpSslOpt)|(?:(?:d(?:emo|bi)|facebook|webID)ExportedVa|exported(?:Heade|Va))r|
ca(?:s(?:StorageOption|Attribute)|ptchaStorageOption)|
g(?:r(?:antSessionRule|oup)|lobalStorageOption)|n(?:otificationStorageOption|ginxCustomHandler)|re(?:moteGlobalStorageOption|loadUrl)|CAS_proxiedService|macro)s|o(?:idc(?:RPMetaData(?:(?:Option(?:sExtraClaim)?|ExportedVar)s|Node)|OPMetaData(?:(?:ExportedVar|Option)s|J(?:SON|WKS)|Node)|S(?:erviceMetaDataAuthnContext|torageOptions))|penIdExportedVars)|s(?:aml(?:S(?:PMetaData(?:(?:ExportedAttribute|Option)s|Node|XML)|torageOptions)|IDPMetaData(?:(?:ExportedAttribute|Option)s|Node|XML))|essionDataToRemember|laveExportedVars)|p(?:ersistentStorageOptions|o(?:rtalSkinRules|st))|a(?:uthChoiceModules|pplicationList)|v(?:hostOptions|irtualHost))$/
;
our
$hashParameters
=
qr/^(?:(?:l(?:o(?:ca(?:lSessionStorageOption|tionRule)|goutService)|dapExportedVar|wpSslOpt)|(?:(?:d(?:emo|bi)|facebook|webID)ExportedVa|exported(?:Heade|Va))r|g(?:r(?:antSessionRule|oup)|lobalStorageOption)|n(?:otificationStorageOption|ginxCustomHandler)|re(?:moteGlobalStorageOption|loadUrl)|
cas(?:StorageOption|Attribute)|
CAS_proxiedService|macro)s|o(?:idc(?:RPMetaData(?:(?:Option(?:sExtraClaim)?|ExportedVar)s|Node)|OPMetaData(?:(?:ExportedVar|Option)s|J(?:SON|WKS)|Node)|S(?:erviceMetaDataAuthnContext|torageOptions))|penIdExportedVars)|s(?:aml(?:S(?:PMetaData(?:(?:ExportedAttribute|Option)s|Node|XML)|torageOptions)|IDPMetaData(?:(?:ExportedAttribute|Option)s|Node|XML))|essionDataToRemember|laveExportedVars)|p(?:ersistentStorageOptions|o(?:rtalSkinRules|st))|a(?:uthChoiceModules|pplicationList)|v(?:hostOptions|irtualHost))$/
;
our
@sessionTypes
=
(
'
captcha
',
'
remoteGlobal
',
'
cas
',
'
global
',
'
localSession
',
'
persistent
',
'
saml
',
'
oidc
'
);
our
@sessionTypes
=
(
'
remoteGlobal
',
'
cas
',
'
global
',
'
localSession
',
'
persistent
',
'
saml
',
'
oidc
'
);
sub
NO
{
qr/^(?:off|no|0)?$/
i
}
...
...
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
View file @
23455138
...
...
@@ -20,25 +20,21 @@ sub defaultValues {
'
browserIdAuthnLevel
'
=>
1
,
'
captcha_register_enabled
'
=>
1
,
'
captcha_size
'
=>
6
,
'
captchaStorage
'
=>
'
Apache::Session::File
',
'
captchaStorageOptions
'
=>
{
'
Directory
'
=>
'
/var/lib/lemonldap-ng/captcha/
'
},
'
CAS_authnLevel
'
=>
1
,
'
CAS_pgtFile
'
=>
'
/tmp/pgt.txt
',
'
casAccessControlPolicy
'
=>
'
none
',
'
checkXSS
'
=>
1
,
'
confirmFormMethod
'
=>
'
post
',
'
cookieName
'
=>
'
lemonldap
',
'
cspConnect
'
=>
'
\'
self
\'
',
'
cspDefault
'
=>
'
\'
self
\'
',
'
cspFont
'
=>
'
\'
self
\'
',
'
cspImg
'
=>
'
\'
self
\'
',
'
cspScript
'
=>
'
\'
self
\'
',
'
cspStyle
'
=>
'
\'
self
\'
',
'
dbiAuthnLevel
'
=>
2
,
'
dbiExportedVars
'
=>
{},
'
demoExportedVars
'
=>
{
'
CAS_authnLevel
'
=>
1
,
'
CAS_pgtFile
'
=>
'
/tmp/pgt.txt
',
'
casAccessControlPolicy
'
=>
'
none
',
'
checkXSS
'
=>
1
,
'
confirmFormMethod
'
=>
'
post
',
'
cookieName
'
=>
'
lemonldap
',
'
cspConnect
'
=>
'
\'
self
\'
',
'
cspDefault
'
=>
'
\'
self
\'
',
'
cspFont
'
=>
'
\'
self
\'
',
'
cspImg
'
=>
'
\'
self
\'
',
'
cspScript
'
=>
'
\'
self
\'
',
'
cspStyle
'
=>
'
\'
self
\'
',
'
dbiAuthnLevel
'
=>
2
,
'
dbiExportedVars
'
=>
{},
'
demoExportedVars
'
=>
{
'
cn
'
=>
'
cn
',
'
mail
'
=>
'
mail
',
'
uid
'
=>
'
uid
'
...
...
@@ -50,6 +46,7 @@ sub defaultValues {
'
facebookAuthnLevel
'
=>
1
,
'
facebookExportedVars
'
=>
{},
'
failedLoginNumber
'
=>
5
,
'
formTimeout
'
=>
120
,
'
globalStorage
'
=>
'
Apache::Session::File
',
'
globalStorageOptions
'
=>
{
'
Directory
'
=>
'
/var/lib/lemonldap-ng/sessions/
',
...
...
@@ -182,6 +179,7 @@ sub defaultValues {
'
http://auth.example.com/Lemonldap/NG/Common/CGI/SOAPService
',
'
proxy
'
=>
'
http://auth.example.com/index.pl/sessions
'
},
'
requireToken
'
=>
1
,
'
samlAttributeAuthorityDescriptorAttributeServiceSOAP
'
=>
'
urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/AA/SOAP;
',
'
samlAuthnContextMapKerberos
'
=>
4
,
...
...
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm
View file @
23455138
...
...
@@ -20,7 +20,7 @@ our $specialNodeHash = {
};
our
$doubleHashKeys
=
'
issuerDBGetParameters
';
our
$simpleHashKeys
=
'
(?:(?:l(?:o(?:calSessionStorageOption|goutService)|dapExportedVar|wpSslOpt)|
ca(?:s(?:StorageOption|Attribute)|ptchaStorageOption)|
(?:(?:d(?:emo|bi)|facebook|webID)E|e)xportedVar|g(?:r(?:antSessionRule|oup)|lobalStorageOption)|n(?:otificationStorageOption|ginxCustomHandler)|p(?:ersistentStorageOption|ortalSkinRule)|re(?:moteGlobalStorageOption|loadUrl)|CAS_proxiedService|macro)s|o(?:idcS(?:erviceMetaDataAuthnContext|torageOptions)|penIdExportedVars)|s(?:(?:amlStorageOption|laveExportedVar)s|essionDataToRemember)|a(?:uthChoiceModules|pplicationList))
';
our
$simpleHashKeys
=
'
(?:(?:l(?:o(?:calSessionStorageOption|goutService)|dapExportedVar|wpSslOpt)|(?:(?:d(?:emo|bi)|facebook|webID)E|e)xportedVar|g(?:r(?:antSessionRule|oup)|lobalStorageOption)|n(?:otificationStorageOption|ginxCustomHandler)|p(?:ersistentStorageOption|ortalSkinRule)|re(?:moteGlobalStorageOption|loadUrl)|
cas(?:StorageOption|Attribute)|
CAS_proxiedService|macro)s|o(?:idcS(?:erviceMetaDataAuthnContext|torageOptions)|penIdExportedVars)|s(?:(?:amlStorageOption|laveExportedVar)s|essionDataToRemember)|a(?:uthChoiceModules|pplicationList))
';
our
$specialNodeKeys
=
'
(?:(?:saml(?:ID|S)|oidc[OR])PMetaDataNode|virtualHost)s
';
our
$oidcOPMetaDataNodeKeys
=
'
oidcOPMetaData(?:Options(?:C(?:lient(?:Secret|ID)|heckJWTSignature|onfigurationURI)|TokenEndpointAuthMethod|(?:JWKSTimeou|Promp)t|I(?:DTokenMaxAge|con)|S(?:toreIDToken|cope)|U(?:iLocales|seNonce)|Display(?:Name)?|AcrValues|MaxAge)|ExportedVars|J(?:SON|WKS))
';
our
$oidcRPMetaDataNodeKeys
=
'
oidcRPMetaData(?:Options(?:I(?:DToken(?:Expiration|SignAlg)|con)|(?:RedirectUri|ExtraClaim)s|AccessTokenExpiration|Client(?:Secret|ID)|BypassConsent|DisplayName|UserIDAttr)|ExportedVars)
';
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
View file @
23455138
...
...
@@ -599,16 +599,6 @@ sub attributes {
'
default
'
=>
6
,
'
type
'
=>
'
int
'
},
'
captchaStorage
'
=>
{
'
default
'
=>
'
Apache::Session::File
',
'
type
'
=>
'
PerlModule
'
},
'
captchaStorageOptions
'
=>
{
'
default
'
=>
{
'
Directory
'
=>
'
/var/lib/lemonldap-ng/captcha/
'
},
'
type
'
=>
'
keyTextContainer
'
},
'
CAS_authnLevel
'
=>
{
'
default
'
=>
1
,
'
type
'
=>
'
int
'
...
...
@@ -883,6 +873,10 @@ qr/^(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.])*(?:[a-zA-Z][-a-zA-Z0-
'
default
'
=>
5
,
'
type
'
=>
'
int
'
},
'
formTimeout
'
=>
{
'
default
'
=>
120
,
'
type
'
=>
'
int
'
},
'
globalStorage
'
=>
{
'
default
'
=>
'
Apache::Session::File
',
'
type
'
=>
'
PerlModule
'
...
...
@@ -2097,6 +2091,10 @@ qr/(?:(?:https?):\/\/(?:(?:(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.]
'
remotePortal
'
=>
{
'
type
'
=>
'
text
'
},
'
requireToken
'
=>
{
'
default
'
=>
1
,
'
type
'
=>
'
bool
'
},
'
restConfigServer
'
=>
{
'
default
'
=>
0
,
'
type
'
=>
'
bool
'
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
View file @
23455138
...
...
@@ -425,6 +425,16 @@ sub attributes {
},
# Security
formTimeout
=>
{
default
=>
120
,
type
=>
'
int
',
documentation
=>
'
Token timeout for forms
',
},
requireToken
=>
{
default
=>
1
,
type
=>
'
bool
',
documentation
=>
'
Enable token for forms
',
},
cda
=>
{
default
=>
0
,
type
=>
'
bool
',
...
...
@@ -694,19 +704,6 @@ sub attributes {
documentation
=>
'
Captcha size
',
},
#captcha_data
#captcha_output
captchaStorage
=>
{
type
=>
'
PerlModule
',
default
=>
'
Apache::Session::File
',
documentation
=>
'
Captcha backend module
',
},
captchaStorageOptions
=>
{
type
=>
'
keyTextContainer
',
default
=>
{
'
Directory
'
=>
'
/var/lib/lemonldap-ng/captcha/
',
},
documentation
=>
'
Captcha backend module options
',
},
# Variables
exportedVars
=>
{
type
=>
'
keyTextContainer
',
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm
View file @
23455138
...
...
@@ -91,8 +91,6 @@ sub tree {
'
captcha_mail_enabled
',
'
captcha_register_enabled
',
'
captcha_size
',
'
captchaStorage
',
'
captchaStorageOptions
'
]
}
]
...
...
@@ -615,7 +613,9 @@ sub tree {
'
cspScript
',
'
cspStyle
',
'
cspConnect
',
'
cspFont
',
]
}
},
'
requireToken
',
'
formTimeout
',
]
},
{
...
...
lemonldap-ng-manager/site/static/languages/en.json
View file @
23455138
...
...
@@ -93,8 +93,6 @@
"captcha_mail_enabled"
:
"Activation in password reset by mail form"
,
"captcha_register_enabled"
:
"Activation in register form"
,
"captcha_size"
:
"Size"
,
"captchaStorage"
:
"Captcha module name"
,
"captchaStorageOptions"
:
"Captcha module options"
,
"CAS_authnLevel"
:
"Authentication level"
,
"CAS_CAFile"
:
"CA file"
,
"CAS_gateway"
:
"Gateway authentication"
,
...
...
@@ -202,6 +200,7 @@
"forceSave"
:
"Force save"
,
"format"
:
"Format"
,
"formReplay"
:
"Form replay"
,
"formTimeout"
:
"Form timeout"
,
"forms"
:
"Forms"
,
"friendlyName"
:
"Friendly name"
,
"generalParameters"
:
"General Parameters"
,
...
...
@@ -556,6 +555,7 @@
"remoteParams"
:
"Remote parameters"
,
"remotePortal"
:
"Portal URL"
,
"replaceByFile"
:
"Replace by file"
,
"requireToken"
:
"Require token for forms"
,
"restConfigServer"
:
"REST configuration server"
,
"restSessionServer"
:
"REST session server"
,
"restore"
:
"Restore"
,
...
...
lemonldap-ng-manager/site/static/languages/fr.json
View file @
23455138
...
...
@@ -93,8 +93,6 @@
"captcha_mail_enabled"
:
"Activation dans le formulaire de réinitialisation par mail"
,
"captcha_register_enabled"
:
"Activation dans le formulaire de création de compte"
,
"captcha_size"
:
"Taille"
,
"captchaStorage"
:
"Nom du module de stockage"
,
"captchaStorageOptions"
:
"Options du module de stockage"
,
"CAS_authnLevel"
:
"Niveau d'authentification"
,
"CAS_CAFile"
:
"Fichier d'AC"
,
"CAS_gateway"
:
"Authentification transparente"
,
...
...
@@ -202,6 +200,7 @@
"forceSave"
:
"Forcer la sauvegarde"
,
"format"
:
"Format"
,
"formReplay"
:
"Rejeu de formulaires"
,
"formTimeout"
:
"Délai de validation pour les formulaires"
,
"forms"
:
"Formulaires"
,
"friendlyName"
:
"Nom alternatif"
,
"generalParameters"
:
"Paramètres généraux"
,
...
...
@@ -556,6 +555,7 @@
"remoteParams"
:
"Paramètres Remote"
,
"remotePortal"
:
"URL du portail"
,
"replaceByFile"
:
"Remplacer par le fichier"
,
"requireToken"
:
"Exige un jeton pour les formulaires"
,
"restConfigServer"
:
"Serveur de configurations REST"
,
"restSessionServer"
:
"Serveur de sessions REST"
,
"restore"
:
"Restaurer"
,
...
...
lemonldap-ng-manager/site/static/reverseTree.json
View file @
23455138
{
"ADPwdExpireWarning"
:
"generalParameters/authParams/adParams"
,
"ADPwdMaxAge"
:
"generalParameters/authParams/adParams"
,
"AuthLDAPFilter"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"CAS_CAFile"
:
"generalParameters/authParams/casParams"
,
"CAS_authnLevel"
:
"generalParameters/authParams/casParams"
,
"CAS_gateway"
:
"generalParameters/authParams/casParams"
,
"CAS_pgtFile"
:
"generalParameters/authParams/casParams"
,
"CAS_proxiedServices"
:
"generalParameters/authParams/casParams"
,
"CAS_renew"
:
"generalParameters/authParams/casParams"
,
"CAS_url"
:
"generalParameters/authParams/casParams"
,
"LDAPFilter"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"SMTPAuthPass"
:
"generalParameters/advancedParams/passwordManagement/SMTP"
,
"SMTPAuthUser"
:
"generalParameters/advancedParams/passwordManagement/SMTP"
,
"SMTPServer"
:
"generalParameters/advancedParams/passwordManagement/SMTP"
,
"SSLAuthnLevel"
:
"generalParameters/authParams/sslParams"
,
"SSLVar"
:
"generalParameters/authParams/sslParams"
,
"activeTimer"
:
"generalParameters/advancedParams/forms"
,
"apacheAuthnLevel"
:
"generalParameters/authParams/apacheParams"
,
"applicationList"
:
"generalParameters/portalParams/portalMenu"
,
"authChoiceModules"
:
"generalParameters/authParams/choiceParams"
,
"authChoiceParam"
:
"generalParameters/authParams/choiceParams"
,
"authentication"
:
"generalParameters/authParams"
,
"browserIdAuthnLevel"
:
"generalParameters/authParams/browseridParams"
,
"browserIdAutoLogin"
:
"generalParameters/authParams/browseridParams"
,
"browserIdBackgroundColor"
:
"generalParameters/authParams/browseridParams"
,
"browserIdSiteLogo"
:
"generalParameters/authParams/browseridParams"
,
"browserIdSiteName"
:
"generalParameters/authParams/browseridParams"
,
"browserIdVerificationURL"
:
"generalParameters/authParams/browseridParams"
,
"captchaStorage"
:
"generalParameters/portalParams/portalCaptcha"
,
"captchaStorageOptions"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_login_enabled"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_mail_enabled"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_register_enabled"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_size"
:
"generalParameters/portalParams/portalCaptcha"
,
"casAccessControlPolicy"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casAttr"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casAttributes"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casStorage"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casStorageOptions"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"cda"
:
"generalParameters/cookieParams"
,
"checkXSS"
:
"generalParameters/advancedParams/security"
,
"confirmFormMethod"
:
"generalParameters/advancedParams/forms"
,
"cookieExpiration"
:
"generalParameters/cookieParams"
,
"cookieName"
:
"generalParameters/cookieParams"
,
"cspConnect"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspDefault"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspFont"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspImg"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspScript"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspStyle"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"customFunctions"
:
"generalParameters/advancedParams"
,
"dbiAuthChain"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionAuth"
,
"dbiAuthLoginCol"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiAuthPassword"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionAuth"
,
"dbiAuthPasswordCol"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiAuthPasswordHash"
:
"generalParameters/authParams/dbiParams/dbiPassword"
,
"dbiAuthTable"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiAuthUser"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionAuth"
,
"dbiAuthnLevel"
:
"generalParameters/authParams/dbiParams"
,
"dbiExportedVars"
:
"generalParameters/authParams/dbiParams"
,
"dbiPasswordMailCol"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiUserChain"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionUser"
,
"dbiUserPassword"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionUser"
,
"dbiUserTable"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiUserUser"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionUser"
,
"demoExportedVars"
:
"generalParameters/authParams/demoParams"
,
"domain"
:
"generalParameters/cookieParams"
,
"exportedAttr"
:
"generalParameters/advancedParams/portalServers"
,
"exportedVars"
:
"variables"
,
"facebookAppId"
:
"generalParameters/authParams/facebookParams"
,
"facebookAppSecret"
:
"generalParameters/authParams/facebookParams"
,
"facebookAuthnLevel"
:
"generalParameters/authParams/facebookParams"
,
"facebookExportedVars"
:
"generalParameters/authParams/facebookParams"
,
"failedLoginNumber"
:
"generalParameters/advancedParams/loginHistory"
,
"globalStorage"
:
"generalParameters/sessionParams/sessionStorage"
,
"globalStorageOptions"
:
"generalParameters/sessionParams/sessionStorage"
,
"grantSessionRules"
:
"generalParameters/sessionParams"
,
"groups"
:
"variables"
,
"hiddenAttributes"
:
"generalParameters/logParams"
,
"hideOldPassword"
:
"generalParameters/portalParams/portalCustomization/passwordManagement"
,
"httpOnly"
:
"generalParameters/cookieParams"
,
"https"
:
"generalParameters/advancedParams/redirection"
,
"infoFormMethod"
:
"generalParameters/advancedParams/forms"
,
"issuerDBCASActivation"
:
"generalParameters/issuerParams/issuerDBCAS"
,
"issuerDBCASPath"
:
"generalParameters/issuerParams/issuerDBCAS"
,
"issuerDBCASRule"
:
"generalParameters/issuerParams/issuerDBCAS"
,
"issuerDBGetActivation"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBGetParameters"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBGetPath"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBGetRule"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBOpenIDActivation"
:
"generalParameters/issuerParams/issuerDBOpenID"
,
"issuerDBOpenIDConnectActivation"
:
"generalParameters/issuerParams/issuerDBOpenIDConnect"
,
"issuerDBOpenIDConnectPath"
:
"generalParameters/issuerParams/issuerDBOpenIDConnect"
,
"issuerDBOpenIDConnectRule"
:
"generalParameters/issuerParams/issuerDBOpenIDConnect"
,
"issuerDBOpenIDPath"
:
"generalParameters/issuerParams/issuerDBOpenID"
,
"issuerDBOpenIDRule"
:
"generalParameters/issuerParams/issuerDBOpenID"
,
"issuerDBSAMLActivation"
:
"generalParameters/issuerParams/issuerDBSAML"
,
"issuerDBSAMLPath"
:
"generalParameters/issuerParams/issuerDBSAML"
,
"issuerDBSAMLRule"
:
"generalParameters/issuerParams/issuerDBSAML"
,
"jsRedirect"
:
"generalParameters/advancedParams/portalRedirection"
,
"key"
:
"generalParameters/advancedParams/security"
,
"ldapAllowResetExpiredPassword"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapAuthnLevel"
:
"generalParameters/authParams/ldapParams"
,
"ldapBase"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapChangePasswordAsUser"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapExportedVars"
:
"generalParameters/authParams/ldapParams"
,
"ldapGroupAttributeName"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupAttributeNameGroup"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupAttributeNameSearch"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupAttributeNameUser"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupBase"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupObjectClass"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupRecursive"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapPasswordResetAttribute"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapPasswordResetAttributeValue"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapPort"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapPpolicyControl"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapPwdEnc"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapRaw"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapSearchDeref"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"ldapServer"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapSetPassword"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapTimeout"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapUsePasswordResetAttribute"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapVersion"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"localSessionStorage"
:
"generalParameters/sessionParams/sessionStorage"
,
"localSessionStorageOptions"
:
"generalParameters/sessionParams/sessionStorage"
,
"loginHistoryEnabled"
:
"generalParameters/advancedParams/loginHistory"
,
"logoutServices"
:
"generalParameters/advancedParams"
,
"lwpSslOpts"
:
"generalParameters/advancedParams/security"
,
"macros"
:
"variables"
,
"mailBody"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailCharset"
:
"generalParameters/advancedParams/passwordManagement/mailHeaders"
,
"mailConfirmBody"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailConfirmSubject"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailFrom"
:
"generalParameters/advancedParams/passwordManagement/mailHeaders"
,
"mailLDAPFilter"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"mailOnPasswordChange"
:
"generalParameters/portalParams/portalCustomization/passwordManagement"
,
"mailReplyTo"
:
"generalParameters/advancedParams/passwordManagement/mailHeaders"
,
"mailSessionKey"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"mailSubject"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailTimeout"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"mailUrl"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"maintenance"
:
"generalParameters/advancedParams/redirection"
,
"managerDn"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"managerPassword"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"multiAuthStack"
:
"generalParameters/authParams/multiParams"
,
"multiUserDBStack"
:
"generalParameters/authParams/multiParams"
,
"multiValuesSeparator"
:
"generalParameters/advancedParams"
,
"nginxCustomHandlers"
:
"generalParameters/advancedParams"
,
"noAjaxHook"
:
"generalParameters/advancedParams/portalRedirection"
,
"notification"
:
"generalParameters/advancedParams/notifications"
,
"notificationStorage"
:
"generalParameters/advancedParams/notifications"
,
"notificationStorageOptions"
:
"generalParameters/advancedParams/notifications"
,
"notificationWildcard"
:
"generalParameters/advancedParams/notifications"
,
"notificationXSLTfile"
:
"generalParameters/advancedParams/notifications"
,
"notifyDeleted"
:
"generalParameters/sessionParams/multipleSessions"
,
"notifyOther"
:
"generalParameters/sessionParams/multipleSessions"
,
"nullAuthnLevel"
:
"generalParameters/authParams/nullParams"
,
"oidcAuthnLevel"
:
"generalParameters/authParams/oidcParams"
,
"oidcOPMetaDataNodes"
:
""
,
"oidcRPCallbackGetParam"
:
"generalParameters/authParams/oidcParams"
,
"oidcRPMetaDataNodes"
:
""
,
"oidcRPStateTimeout"
:
"generalParameters/authParams/oidcParams"
,
"oidcServiceAllowAuthorizationCodeFlow"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceAllowDynamicRegistration"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceAllowHybridFlow"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceAllowImplicitFlow"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceKeyIdSig"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceMetaDataAuthnContext"
:
"oidcServiceMetaData"
,
"oidcServiceMetaDataAuthorizeURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataCheckSessionURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataEndSessionURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataIssuer"
:
"oidcServiceMetaData"
,
"oidcServiceMetaDataJWKSURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataRegistrationURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataTokenURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataUserInfoURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServicePrivateKeySig"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity/oidcServiceMetaDataKeys"
,
"oidcServicePublicKeySig"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity/oidcServiceMetaDataKeys"
,
"oidcStorage"
:
"oidcServiceMetaData/oidcServiceMetaDataSessions"
,
"oidcStorageOptions"
:
"oidcServiceMetaData/oidcServiceMetaDataSessions"
,
"openIdAttr"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions"
,
"openIdAuthnLevel"
:
"generalParameters/authParams/openidParams"
,
"openIdExportedVars"
:
"generalParameters/authParams/openidParams"
,
"openIdIDPList"
:
"generalParameters/authParams/openidParams"
,
"openIdIssuerSecret"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions"
,
"openIdSPList"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions"
,
"openIdSecret"
:
"generalParameters/authParams/openidParams"
,
"openIdSreg_country"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_dob"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_email"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_fullname"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_gender"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_language"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_nickname"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_postcode"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_timezone"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"passwordDB"
:
"generalParameters/authParams"
,
"persistentStorage"
:
"generalParameters/sessionParams/persistentSessions"
,
"persistentStorageOptions"
:
"generalParameters/sessionParams/persistentSessions"
,
"port"
:
"generalParameters/advancedParams/redirection"
,
"portal"
:
"generalParameters/portalParams"
,
"portalAntiFrame"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"portalCheckLogins"
:
"generalParameters/portalParams/portalCustomization/portalButtons"
,
"portalDisplayAppslist"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayChangePassword"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayLoginHistory"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayLogout"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayRegister"
:
"generalParameters/portalParams/portalCustomization/portalButtons"
,
"portalDisplayResetPassword"
:
"generalParameters/portalParams/portalCustomization/portalButtons"
,
"portalForceAuthn"
:
"generalParameters/advancedParams/security"
,
"portalForceAuthnInterval"
:
"generalParameters/advancedParams/security"
,
"portalOpenLinkInNewWindow"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"portalPingInterval"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"portalRequireOldPassword"
:
"generalParameters/portalParams/portalCustomization/passwordManagement"
,
"portalSkin"
:
"generalParameters/portalParams/portalCustomization"
,
"portalSkinBackground"
:
"generalParameters/portalParams/portalCustomization"
,
"portalSkinRules"
:
"generalParameters/portalParams/portalCustomization"
,
"portalStatus"
:
"generalParameters/advancedParams"
,
"portalUserAttr"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"proxyAuthService"
:
"generalParameters/authParams/proxyParams"
,
"proxyAuthnLevel"
:
"generalParameters/authParams/proxyParams"
,
"proxySessionService"
:
"generalParameters/authParams/proxyParams"
,
"proxyUseSoap"
:
"generalParameters/authParams/proxyParams"
,
"radiusAuthnLevel"
:
"generalParameters/authParams/radiusParams"
,
"radiusSecret"
:
"generalParameters/authParams/radiusParams"
,
"radiusServer"
:
"generalParameters/authParams/radiusParams"
,
"randomPasswordRegexp"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"redirectFormMethod"
:
"generalParameters/advancedParams/forms"
,
"registerConfirmSubject"
:
"generalParameters/advancedParams/register"
,
"registerDB"
:
"generalParameters/advancedParams/register"
,
"registerDoneSubject"
:
"generalParameters/advancedParams/register"
,
"registerTimeout"
:
"generalParameters/advancedParams/register"
,
"reloadUrls"
:
"generalParameters"
,
"remoteCookieName"
:
"generalParameters/authParams/remoteParams"
,
"remoteGlobalStorage"
:
"generalParameters/authParams/remoteParams"
,
"remoteGlobalStorageOptions"
:
"generalParameters/authParams/remoteParams"
,
"remotePortal"
:
"generalParameters/authParams/remoteParams"
,
"restConfigServer"
:
"generalParameters/advancedParams/portalServers"
,
"restSessionServer"
:
"generalParameters/advancedParams/portalServers"
,
"samlAttributeAuthorityDescriptorAttributeServiceSOAP"
:
"samlServiceMetaData/samlAttributeAuthorityDescriptor/samlAttributeAuthorityDescriptorAttributeService"
,
"samlAuthnContextMapKerberos"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlAuthnContextMapPassword"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlAuthnContextMapPasswordProtectedTransport"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlAuthnContextMapTLSClient"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlCommonDomainCookieActivation"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlCommonDomainCookieDomain"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlCommonDomainCookieReader"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlCommonDomainCookieWriter"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlEntityID"
:
"samlServiceMetaData"
,
"samlIDPMetaDataNodes"
:
""
,
"samlIDPSSODescriptorArtifactResolutionServiceArtifact"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorArtifactResolutionService"
,
"samlIDPSSODescriptorSingleLogoutServiceHTTPPost"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleLogoutService"
,
"samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleLogoutService"
,
"samlIDPSSODescriptorSingleLogoutServiceSOAP"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleLogoutService"
,
"samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleSignOnService"
,
"samlIDPSSODescriptorSingleSignOnServiceHTTPPost"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleSignOnService"
,
"samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleSignOnService"
,
"samlIDPSSODescriptorWantAuthnRequestsSigned"
:
"samlServiceMetaData/samlIDPSSODescriptor"
,
"samlIdPResolveCookie"
:
"samlServiceMetaData/samlAdvanced"
,
"samlMetadataForceUTF8"
:
"samlServiceMetaData/samlAdvanced"
,
"samlNameIDFormatMapEmail"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlNameIDFormatMapKerberos"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlNameIDFormatMapWindows"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlNameIDFormatMapX509"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlOrganizationDisplayName"
:
"samlServiceMetaData/samlOrganization"
,
"samlOrganizationName"
:
"samlServiceMetaData/samlOrganization"
,
"samlOrganizationURL"
:
"samlServiceMetaData/samlOrganization"
,
"samlRelayStateTimeout"
:
"samlServiceMetaData/samlAdvanced"
,
"samlSPMetaDataNodes"
:
""
,
"samlSPSSODescriptorArtifactResolutionServiceArtifact"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorArtifactResolutionService"
,
"samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorAssertionConsumerService"
,
"samlSPSSODescriptorAssertionConsumerServiceHTTPPost"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorAssertionConsumerService"
,
"samlSPSSODescriptorAuthnRequestsSigned"
:
"samlServiceMetaData/samlSPSSODescriptor"
,
"samlSPSSODescriptorSingleLogoutServiceHTTPPost"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorSingleLogoutService"
,
"samlSPSSODescriptorSingleLogoutServiceHTTPRedirect"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorSingleLogoutService"
,
"samlSPSSODescriptorSingleLogoutServiceSOAP"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorSingleLogoutService"
,
"samlSPSSODescriptorWantAssertionsSigned"
:
"samlServiceMetaData/samlSPSSODescriptor"
,
"samlServicePrivateKeyEnc"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecurityEnc"
,
"samlServicePrivateKeyEncPwd"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecurityEnc"
,
"samlServicePrivateKeySig"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecuritySig"
,
"samlServicePrivateKeySigPwd"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecuritySig"
,
"samlServicePublicKeyEnc"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecurityEnc"
,
"samlServicePublicKeySig"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecuritySig"
,
"samlServiceUseCertificateInResponse"
:
"samlServiceMetaData/samlServiceSecurity"
,
"samlStorage"
:
"samlServiceMetaData/samlAdvanced"
,
"samlStorageOptions"
:
"samlServiceMetaData/samlAdvanced"
,
"samlUseQueryStringSpecific"
:
"samlServiceMetaData/samlAdvanced"
,
"secureTokenAllowOnError"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenAttribute"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenExpiration"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenHeader"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenMemcachedServers"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenUrls"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"securedCookie"
:
"generalParameters/cookieParams"
,
"sessionDataToRemember"
:
"generalParameters/advancedParams/loginHistory"
,
"singleIP"
:
"generalParameters/sessionParams/multipleSessions"
,
"singleSession"
:
"generalParameters/sessionParams/multipleSessions"
,
"singleSessionUserByIP"
:
"generalParameters/sessionParams/multipleSessions"
,
"singleUserByIP"
:
"generalParameters/sessionParams/multipleSessions"
,
"slaveAuthnLevel"
:
"generalParameters/authParams/slaveParams"
,
"slaveExportedVars"
:
"generalParameters/authParams/slaveParams"
,
"slaveHeaderContent"
:
"generalParameters/authParams/slaveParams"
,
"slaveHeaderName"
:
"generalParameters/authParams/slaveParams"
,
"slaveMasterIP"
:
"generalParameters/authParams/slaveParams"
,
"slaveUserHeader"
:
"generalParameters/authParams/slaveParams"
,
"soapConfigServer"
:
"generalParameters/advancedParams/portalServers"
,
"soapSessionServer"
:
"generalParameters/advancedParams/portalServers"
,
"storePassword"
:
"generalParameters/sessionParams"
,
"successLoginNumber"
:
"generalParameters/advancedParams/loginHistory"
,
"sympaMailKey"
:
"generalParameters/advancedParams/specialHandlers/sympaHandler"
,
"sympaSecret"
:
"generalParameters/advancedParams/specialHandlers/sympaHandler"
,
"syslog"
:
"generalParameters/logParams"
,
"timeout"
:
"generalParameters/sessionParams"
,
"timeoutActivity"
:
"generalParameters/sessionParams"
,
"timeoutActivityInterval"
:
"generalParameters/sessionParams"
,
"trustedDomains"
:
"generalParameters/advancedParams/security"
,
"trustedProxies"
:
"generalParameters/logParams"
,
"twitterAppName"
:
"generalParameters/authParams/twitterParams"
,
"twitterAuthnLevel"
:
"generalParameters/authParams/twitterParams"
,
"twitterKey"
:
"generalParameters/authParams/twitterParams"
,
"twitterSecret"
:
"generalParameters/authParams/twitterParams"
,
"useRedirectOnError"
:
"generalParameters/advancedParams/redirection"
,
"useRedirectOnForbidden"
:
"generalParameters/advancedParams/redirection"
,
"useSafeJail"
:
"generalParameters/advancedParams/security"
,
"userControl"
:
"generalParameters/advancedParams/security"
,
"userDB"
:
"generalParameters/authParams"
,
"userPivot"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"virtualHosts"
:
""
,
"webIDAuthnLevel"
:
"generalParameters/authParams/webidParams"
,
"webIDExportedVars"
:
"generalParameters/authParams/webidParams"
,
"webIDWhitelist"
:
"generalParameters/authParams/webidParams"
,
"whatToTrace"
:
"generalParameters/logParams"
,
"yubikeyAuthnLevel"
:
"generalParameters/authParams/yubikeyParams"
,
"yubikeyClientID"
:
"generalParameters/authParams/yubikeyParams"
,
"yubikeyPublicIDSize"
:
"generalParameters/authParams/yubikeyParams"
,
"yubikeySecretKey"
:
"generalParameters/authParams/yubikeyParams"
,
"zimbraAccountKey"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraBy"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraPreAuthKey"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraSsoUrl"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraUrl"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
}
\ No newline at end of file
{
"ADPwdExpireWarning"
:
"generalParameters/authParams/adParams"
,
"ADPwdMaxAge"
:
"generalParameters/authParams/adParams"
,
"AuthLDAPFilter"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"CAS_CAFile"
:
"generalParameters/authParams/casParams"
,
"CAS_authnLevel"
:
"generalParameters/authParams/casParams"
,
"CAS_gateway"
:
"generalParameters/authParams/casParams"
,
"CAS_pgtFile"
:
"generalParameters/authParams/casParams"
,
"CAS_proxiedServices"
:
"generalParameters/authParams/casParams"
,
"CAS_renew"
:
"generalParameters/authParams/casParams"
,
"CAS_url"
:
"generalParameters/authParams/casParams"
,
"LDAPFilter"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"SMTPAuthPass"
:
"generalParameters/advancedParams/passwordManagement/SMTP"
,
"SMTPAuthUser"
:
"generalParameters/advancedParams/passwordManagement/SMTP"
,
"SMTPServer"
:
"generalParameters/advancedParams/passwordManagement/SMTP"
,
"SSLAuthnLevel"
:
"generalParameters/authParams/sslParams"
,
"SSLVar"
:
"generalParameters/authParams/sslParams"
,
"activeTimer"
:
"generalParameters/advancedParams/forms"
,
"apacheAuthnLevel"
:
"generalParameters/authParams/apacheParams"
,
"applicationList"
:
"generalParameters/portalParams/portalMenu"
,
"authChoiceModules"
:
"generalParameters/authParams/choiceParams"
,
"authChoiceParam"
:
"generalParameters/authParams/choiceParams"
,
"authentication"
:
"generalParameters/authParams"
,
"browserIdAuthnLevel"
:
"generalParameters/authParams/browseridParams"
,
"browserIdAutoLogin"
:
"generalParameters/authParams/browseridParams"
,
"browserIdBackgroundColor"
:
"generalParameters/authParams/browseridParams"
,
"browserIdSiteLogo"
:
"generalParameters/authParams/browseridParams"
,
"browserIdSiteName"
:
"generalParameters/authParams/browseridParams"
,
"browserIdVerificationURL"
:
"generalParameters/authParams/browseridParams"
,
"captcha_login_enabled"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_mail_enabled"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_register_enabled"
:
"generalParameters/portalParams/portalCaptcha"
,
"captcha_size"
:
"generalParameters/portalParams/portalCaptcha"
,
"casAccessControlPolicy"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casAttr"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casAttributes"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casStorage"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"casStorageOptions"
:
"generalParameters/issuerParams/issuerDBCAS/issuerDBCASOptions"
,
"cda"
:
"generalParameters/cookieParams"
,
"checkXSS"
:
"generalParameters/advancedParams/security"
,
"confirmFormMethod"
:
"generalParameters/advancedParams/forms"
,
"cookieExpiration"
:
"generalParameters/cookieParams"
,
"cookieName"
:
"generalParameters/cookieParams"
,
"cspConnect"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspDefault"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspFont"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspImg"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspScript"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"cspStyle"
:
"generalParameters/advancedParams/security/contentSecurityPolicy"
,
"customFunctions"
:
"generalParameters/advancedParams"
,
"dbiAuthChain"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionAuth"
,
"dbiAuthLoginCol"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiAuthPassword"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionAuth"
,
"dbiAuthPasswordCol"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiAuthPasswordHash"
:
"generalParameters/authParams/dbiParams/dbiPassword"
,
"dbiAuthTable"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiAuthUser"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionAuth"
,
"dbiAuthnLevel"
:
"generalParameters/authParams/dbiParams"
,
"dbiExportedVars"
:
"generalParameters/authParams/dbiParams"
,
"dbiPasswordMailCol"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiUserChain"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionUser"
,
"dbiUserPassword"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionUser"
,
"dbiUserTable"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"dbiUserUser"
:
"generalParameters/authParams/dbiParams/dbiConnection/dbiConnectionUser"
,
"demoExportedVars"
:
"generalParameters/authParams/demoParams"
,
"domain"
:
"generalParameters/cookieParams"
,
"exportedAttr"
:
"generalParameters/advancedParams/portalServers"
,
"exportedVars"
:
"variables"
,
"facebookAppId"
:
"generalParameters/authParams/facebookParams"
,
"facebookAppSecret"
:
"generalParameters/authParams/facebookParams"
,
"facebookAuthnLevel"
:
"generalParameters/authParams/facebookParams"
,
"facebookExportedVars"
:
"generalParameters/authParams/facebookParams"
,
"failedLoginNumber"
:
"generalParameters/advancedParams/loginHistory"
,
"formTimeout"
:
"generalParameters/advancedParams/security"
,
"globalStorage"
:
"generalParameters/sessionParams/sessionStorage"
,
"globalStorageOptions"
:
"generalParameters/sessionParams/sessionStorage"
,
"grantSessionRules"
:
"generalParameters/sessionParams"
,
"groups"
:
"variables"
,
"hiddenAttributes"
:
"generalParameters/logParams"
,
"hideOldPassword"
:
"generalParameters/portalParams/portalCustomization/passwordManagement"
,
"httpOnly"
:
"generalParameters/cookieParams"
,
"https"
:
"generalParameters/advancedParams/redirection"
,
"infoFormMethod"
:
"generalParameters/advancedParams/forms"
,
"issuerDBCASActivation"
:
"generalParameters/issuerParams/issuerDBCAS"
,
"issuerDBCASPath"
:
"generalParameters/issuerParams/issuerDBCAS"
,
"issuerDBCASRule"
:
"generalParameters/issuerParams/issuerDBCAS"
,
"issuerDBGetActivation"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBGetParameters"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBGetPath"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBGetRule"
:
"generalParameters/issuerParams/issuerDBGet"
,
"issuerDBOpenIDActivation"
:
"generalParameters/issuerParams/issuerDBOpenID"
,
"issuerDBOpenIDConnectActivation"
:
"generalParameters/issuerParams/issuerDBOpenIDConnect"
,
"issuerDBOpenIDConnectPath"
:
"generalParameters/issuerParams/issuerDBOpenIDConnect"
,
"issuerDBOpenIDConnectRule"
:
"generalParameters/issuerParams/issuerDBOpenIDConnect"
,
"issuerDBOpenIDPath"
:
"generalParameters/issuerParams/issuerDBOpenID"
,
"issuerDBOpenIDRule"
:
"generalParameters/issuerParams/issuerDBOpenID"
,
"issuerDBSAMLActivation"
:
"generalParameters/issuerParams/issuerDBSAML"
,
"issuerDBSAMLPath"
:
"generalParameters/issuerParams/issuerDBSAML"
,
"issuerDBSAMLRule"
:
"generalParameters/issuerParams/issuerDBSAML"
,
"jsRedirect"
:
"generalParameters/advancedParams/portalRedirection"
,
"key"
:
"generalParameters/advancedParams/security"
,
"ldapAllowResetExpiredPassword"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapAuthnLevel"
:
"generalParameters/authParams/ldapParams"
,
"ldapBase"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapChangePasswordAsUser"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapExportedVars"
:
"generalParameters/authParams/ldapParams"
,
"ldapGroupAttributeName"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupAttributeNameGroup"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupAttributeNameSearch"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupAttributeNameUser"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupBase"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupObjectClass"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapGroupRecursive"
:
"generalParameters/authParams/ldapParams/ldapGroups"
,
"ldapPasswordResetAttribute"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapPasswordResetAttributeValue"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapPort"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapPpolicyControl"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapPwdEnc"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapRaw"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapSearchDeref"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"ldapServer"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapSetPassword"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapTimeout"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"ldapUsePasswordResetAttribute"
:
"generalParameters/authParams/ldapParams/ldapPassword"
,
"ldapVersion"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"localSessionStorage"
:
"generalParameters/sessionParams/sessionStorage"
,
"localSessionStorageOptions"
:
"generalParameters/sessionParams/sessionStorage"
,
"loginHistoryEnabled"
:
"generalParameters/advancedParams/loginHistory"
,
"logoutServices"
:
"generalParameters/advancedParams"
,
"lwpSslOpts"
:
"generalParameters/advancedParams/security"
,
"macros"
:
"variables"
,
"mailBody"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailCharset"
:
"generalParameters/advancedParams/passwordManagement/mailHeaders"
,
"mailConfirmBody"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailConfirmSubject"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailFrom"
:
"generalParameters/advancedParams/passwordManagement/mailHeaders"
,
"mailLDAPFilter"
:
"generalParameters/authParams/ldapParams/ldapFilters"
,
"mailOnPasswordChange"
:
"generalParameters/portalParams/portalCustomization/passwordManagement"
,
"mailReplyTo"
:
"generalParameters/advancedParams/passwordManagement/mailHeaders"
,
"mailSessionKey"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"mailSubject"
:
"generalParameters/advancedParams/passwordManagement/mailContent"
,
"mailTimeout"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"mailUrl"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"maintenance"
:
"generalParameters/advancedParams/redirection"
,
"managerDn"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"managerPassword"
:
"generalParameters/authParams/ldapParams/ldapConnection"
,
"multiAuthStack"
:
"generalParameters/authParams/multiParams"
,
"multiUserDBStack"
:
"generalParameters/authParams/multiParams"
,
"multiValuesSeparator"
:
"generalParameters/advancedParams"
,
"nginxCustomHandlers"
:
"generalParameters/advancedParams"
,
"noAjaxHook"
:
"generalParameters/advancedParams/portalRedirection"
,
"notification"
:
"generalParameters/advancedParams/notifications"
,
"notificationStorage"
:
"generalParameters/advancedParams/notifications"
,
"notificationStorageOptions"
:
"generalParameters/advancedParams/notifications"
,
"notificationWildcard"
:
"generalParameters/advancedParams/notifications"
,
"notificationXSLTfile"
:
"generalParameters/advancedParams/notifications"
,
"notifyDeleted"
:
"generalParameters/sessionParams/multipleSessions"
,
"notifyOther"
:
"generalParameters/sessionParams/multipleSessions"
,
"nullAuthnLevel"
:
"generalParameters/authParams/nullParams"
,
"oidcAuthnLevel"
:
"generalParameters/authParams/oidcParams"
,
"oidcOPMetaDataNodes"
:
""
,
"oidcRPCallbackGetParam"
:
"generalParameters/authParams/oidcParams"
,
"oidcRPMetaDataNodes"
:
""
,
"oidcRPStateTimeout"
:
"generalParameters/authParams/oidcParams"
,
"oidcServiceAllowAuthorizationCodeFlow"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceAllowDynamicRegistration"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceAllowHybridFlow"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceAllowImplicitFlow"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceKeyIdSig"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity"
,
"oidcServiceMetaDataAuthnContext"
:
"oidcServiceMetaData"
,
"oidcServiceMetaDataAuthorizeURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataCheckSessionURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataEndSessionURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataIssuer"
:
"oidcServiceMetaData"
,
"oidcServiceMetaDataJWKSURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataRegistrationURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataTokenURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServiceMetaDataUserInfoURI"
:
"oidcServiceMetaData/oidcServiceMetaDataEndPoints"
,
"oidcServicePrivateKeySig"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity/oidcServiceMetaDataKeys"
,
"oidcServicePublicKeySig"
:
"oidcServiceMetaData/oidcServiceMetaDataSecurity/oidcServiceMetaDataKeys"
,
"oidcStorage"
:
"oidcServiceMetaData/oidcServiceMetaDataSessions"
,
"oidcStorageOptions"
:
"oidcServiceMetaData/oidcServiceMetaDataSessions"
,
"openIdAttr"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions"
,
"openIdAuthnLevel"
:
"generalParameters/authParams/openidParams"
,
"openIdExportedVars"
:
"generalParameters/authParams/openidParams"
,
"openIdIDPList"
:
"generalParameters/authParams/openidParams"
,
"openIdIssuerSecret"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions"
,
"openIdSPList"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions"
,
"openIdSecret"
:
"generalParameters/authParams/openidParams"
,
"openIdSreg_country"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_dob"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_email"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_fullname"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_gender"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_language"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_nickname"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_postcode"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"openIdSreg_timezone"
:
"generalParameters/issuerParams/issuerDBOpenID/issuerDBOpenIDOptions/openIdSreg"
,
"passwordDB"
:
"generalParameters/authParams"
,
"persistentStorage"
:
"generalParameters/sessionParams/persistentSessions"
,
"persistentStorageOptions"
:
"generalParameters/sessionParams/persistentSessions"
,
"port"
:
"generalParameters/advancedParams/redirection"
,
"portal"
:
"generalParameters/portalParams"
,
"portalAntiFrame"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"portalCheckLogins"
:
"generalParameters/portalParams/portalCustomization/portalButtons"
,
"portalDisplayAppslist"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayChangePassword"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayLoginHistory"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayLogout"
:
"generalParameters/portalParams/portalMenu/portalModules"
,
"portalDisplayRegister"
:
"generalParameters/portalParams/portalCustomization/portalButtons"
,
"portalDisplayResetPassword"
:
"generalParameters/portalParams/portalCustomization/portalButtons"
,
"portalForceAuthn"
:
"generalParameters/advancedParams/security"
,
"portalForceAuthnInterval"
:
"generalParameters/advancedParams/security"
,
"portalOpenLinkInNewWindow"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"portalPingInterval"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"portalRequireOldPassword"
:
"generalParameters/portalParams/portalCustomization/passwordManagement"
,
"portalSkin"
:
"generalParameters/portalParams/portalCustomization"
,
"portalSkinBackground"
:
"generalParameters/portalParams/portalCustomization"
,
"portalSkinRules"
:
"generalParameters/portalParams/portalCustomization"
,
"portalStatus"
:
"generalParameters/advancedParams"
,
"portalUserAttr"
:
"generalParameters/portalParams/portalCustomization/portalOther"
,
"proxyAuthService"
:
"generalParameters/authParams/proxyParams"
,
"proxyAuthnLevel"
:
"generalParameters/authParams/proxyParams"
,
"proxySessionService"
:
"generalParameters/authParams/proxyParams"
,
"proxyUseSoap"
:
"generalParameters/authParams/proxyParams"
,
"radiusAuthnLevel"
:
"generalParameters/authParams/radiusParams"
,
"radiusSecret"
:
"generalParameters/authParams/radiusParams"
,
"radiusServer"
:
"generalParameters/authParams/radiusParams"
,
"randomPasswordRegexp"
:
"generalParameters/advancedParams/passwordManagement/mailOther"
,
"redirectFormMethod"
:
"generalParameters/advancedParams/forms"
,
"registerConfirmSubject"
:
"generalParameters/advancedParams/register"
,
"registerDB"
:
"generalParameters/advancedParams/register"
,
"registerDoneSubject"
:
"generalParameters/advancedParams/register"
,
"registerTimeout"
:
"generalParameters/advancedParams/register"
,
"reloadUrls"
:
"generalParameters"
,
"remoteCookieName"
:
"generalParameters/authParams/remoteParams"
,
"remoteGlobalStorage"
:
"generalParameters/authParams/remoteParams"
,
"remoteGlobalStorageOptions"
:
"generalParameters/authParams/remoteParams"
,
"remotePortal"
:
"generalParameters/authParams/remoteParams"
,
"requireToken"
:
"generalParameters/advancedParams/security"
,
"restConfigServer"
:
"generalParameters/advancedParams/portalServers"
,
"restSessionServer"
:
"generalParameters/advancedParams/portalServers"
,
"samlAttributeAuthorityDescriptorAttributeServiceSOAP"
:
"samlServiceMetaData/samlAttributeAuthorityDescriptor/samlAttributeAuthorityDescriptorAttributeService"
,
"samlAuthnContextMapKerberos"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlAuthnContextMapPassword"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlAuthnContextMapPasswordProtectedTransport"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlAuthnContextMapTLSClient"
:
"samlServiceMetaData/samlAuthnContextMap"
,
"samlCommonDomainCookieActivation"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlCommonDomainCookieDomain"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlCommonDomainCookieReader"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlCommonDomainCookieWriter"
:
"samlServiceMetaData/samlAdvanced/samlCommonDomainCookie"
,
"samlEntityID"
:
"samlServiceMetaData"
,
"samlIDPMetaDataNodes"
:
""
,
"samlIDPSSODescriptorArtifactResolutionServiceArtifact"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorArtifactResolutionService"
,
"samlIDPSSODescriptorSingleLogoutServiceHTTPPost"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleLogoutService"
,
"samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleLogoutService"
,
"samlIDPSSODescriptorSingleLogoutServiceSOAP"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleLogoutService"
,
"samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleSignOnService"
,
"samlIDPSSODescriptorSingleSignOnServiceHTTPPost"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleSignOnService"
,
"samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect"
:
"samlServiceMetaData/samlIDPSSODescriptor/samlIDPSSODescriptorSingleSignOnService"
,
"samlIDPSSODescriptorWantAuthnRequestsSigned"
:
"samlServiceMetaData/samlIDPSSODescriptor"
,
"samlIdPResolveCookie"
:
"samlServiceMetaData/samlAdvanced"
,
"samlMetadataForceUTF8"
:
"samlServiceMetaData/samlAdvanced"
,
"samlNameIDFormatMapEmail"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlNameIDFormatMapKerberos"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlNameIDFormatMapWindows"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlNameIDFormatMapX509"
:
"samlServiceMetaData/samlNameIDFormatMap"
,
"samlOrganizationDisplayName"
:
"samlServiceMetaData/samlOrganization"
,
"samlOrganizationName"
:
"samlServiceMetaData/samlOrganization"
,
"samlOrganizationURL"
:
"samlServiceMetaData/samlOrganization"
,
"samlRelayStateTimeout"
:
"samlServiceMetaData/samlAdvanced"
,
"samlSPMetaDataNodes"
:
""
,
"samlSPSSODescriptorArtifactResolutionServiceArtifact"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorArtifactResolutionService"
,
"samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorAssertionConsumerService"
,
"samlSPSSODescriptorAssertionConsumerServiceHTTPPost"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorAssertionConsumerService"
,
"samlSPSSODescriptorAuthnRequestsSigned"
:
"samlServiceMetaData/samlSPSSODescriptor"
,
"samlSPSSODescriptorSingleLogoutServiceHTTPPost"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorSingleLogoutService"
,
"samlSPSSODescriptorSingleLogoutServiceHTTPRedirect"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorSingleLogoutService"
,
"samlSPSSODescriptorSingleLogoutServiceSOAP"
:
"samlServiceMetaData/samlSPSSODescriptor/samlSPSSODescriptorSingleLogoutService"
,
"samlSPSSODescriptorWantAssertionsSigned"
:
"samlServiceMetaData/samlSPSSODescriptor"
,
"samlServicePrivateKeyEnc"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecurityEnc"
,
"samlServicePrivateKeyEncPwd"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecurityEnc"
,
"samlServicePrivateKeySig"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecuritySig"
,
"samlServicePrivateKeySigPwd"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecuritySig"
,
"samlServicePublicKeyEnc"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecurityEnc"
,
"samlServicePublicKeySig"
:
"samlServiceMetaData/samlServiceSecurity/samlServiceSecuritySig"
,
"samlServiceUseCertificateInResponse"
:
"samlServiceMetaData/samlServiceSecurity"
,
"samlStorage"
:
"samlServiceMetaData/samlAdvanced"
,
"samlStorageOptions"
:
"samlServiceMetaData/samlAdvanced"
,
"samlUseQueryStringSpecific"
:
"samlServiceMetaData/samlAdvanced"
,
"secureTokenAllowOnError"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenAttribute"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenExpiration"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenHeader"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenMemcachedServers"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"secureTokenUrls"
:
"generalParameters/advancedParams/specialHandlers/secureTokenHandler"
,
"securedCookie"
:
"generalParameters/cookieParams"
,
"sessionDataToRemember"
:
"generalParameters/advancedParams/loginHistory"
,
"singleIP"
:
"generalParameters/sessionParams/multipleSessions"
,
"singleSession"
:
"generalParameters/sessionParams/multipleSessions"
,
"singleSessionUserByIP"
:
"generalParameters/sessionParams/multipleSessions"
,
"singleUserByIP"
:
"generalParameters/sessionParams/multipleSessions"
,
"slaveAuthnLevel"
:
"generalParameters/authParams/slaveParams"
,
"slaveExportedVars"
:
"generalParameters/authParams/slaveParams"
,
"slaveHeaderContent"
:
"generalParameters/authParams/slaveParams"
,
"slaveHeaderName"
:
"generalParameters/authParams/slaveParams"
,
"slaveMasterIP"
:
"generalParameters/authParams/slaveParams"
,
"slaveUserHeader"
:
"generalParameters/authParams/slaveParams"
,
"soapConfigServer"
:
"generalParameters/advancedParams/portalServers"
,
"soapSessionServer"
:
"generalParameters/advancedParams/portalServers"
,
"storePassword"
:
"generalParameters/sessionParams"
,
"successLoginNumber"
:
"generalParameters/advancedParams/loginHistory"
,
"sympaMailKey"
:
"generalParameters/advancedParams/specialHandlers/sympaHandler"
,
"sympaSecret"
:
"generalParameters/advancedParams/specialHandlers/sympaHandler"
,
"syslog"
:
"generalParameters/logParams"
,
"timeout"
:
"generalParameters/sessionParams"
,
"timeoutActivity"
:
"generalParameters/sessionParams"
,
"timeoutActivityInterval"
:
"generalParameters/sessionParams"
,
"trustedDomains"
:
"generalParameters/advancedParams/security"
,
"trustedProxies"
:
"generalParameters/logParams"
,
"twitterAppName"
:
"generalParameters/authParams/twitterParams"
,
"twitterAuthnLevel"
:
"generalParameters/authParams/twitterParams"
,
"twitterKey"
:
"generalParameters/authParams/twitterParams"
,
"twitterSecret"
:
"generalParameters/authParams/twitterParams"
,
"useRedirectOnError"
:
"generalParameters/advancedParams/redirection"
,
"useRedirectOnForbidden"
:
"generalParameters/advancedParams/redirection"
,
"useSafeJail"
:
"generalParameters/advancedParams/security"
,
"userControl"
:
"generalParameters/advancedParams/security"
,
"userDB"
:
"generalParameters/authParams"
,
"userPivot"
:
"generalParameters/authParams/dbiParams/dbiSchema"
,
"virtualHosts"
:
""
,
"webIDAuthnLevel"
:
"generalParameters/authParams/webidParams"
,
"webIDExportedVars"
:
"generalParameters/authParams/webidParams"
,
"webIDWhitelist"
:
"generalParameters/authParams/webidParams"
,
"whatToTrace"
:
"generalParameters/logParams"
,
"yubikeyAuthnLevel"
:
"generalParameters/authParams/yubikeyParams"
,
"yubikeyClientID"
:
"generalParameters/authParams/yubikeyParams"
,
"yubikeyPublicIDSize"
:
"generalParameters/authParams/yubikeyParams"
,
"yubikeySecretKey"
:
"generalParameters/authParams/yubikeyParams"
,
"zimbraAccountKey"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraBy"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraPreAuthKey"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraSsoUrl"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
,
"zimbraUrl"
:
"generalParameters/advancedParams/specialHandlers/zimbraHandler"
}
\ No newline at end of file
lemonldap-ng-manager/site/static/struct.json
View file @
23455138
[{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
"http://auth.example.com/"
,
"id"
:
"portal"
,
"title"
:
"portal"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"portalDisplayLogout"
,
"title"
:
"portalDisplayLogout"
,
"type"
:
"boolOrExpr"
},{
"default"
:
"$_auth =~ /^(LDAP|DBI|Demo)$/"
,
"id"
:
"portalDisplayChangePassword"
,
"title"
:
"portalDisplayChangePassword"
,
"type"
:
"boolOrExpr"
},{
"default"
:
1
,
"id"
:
"portalDisplayAppslist"
,
"title"
:
"portalDisplayAppslist"
,
"type"
:
"boolOrExpr"
},{
"default"
:
1
,
"id"
:
"portalDisplayLoginHistory"
,
"title"
:
"portalDisplayLoginHistory"
,
"type"
:
"boolOrExpr"
}],
"id"
:
"portalModules"
,
"title"
:
"portalModules"
,
"type"
:
"simpleInputContainer"
},{
"cnodes"
:
"applicationList"
,
"default"
:[{
"data"
:{
"catname"
:
"Default category"
,
"type"
:
"category"
},
"id"
:
"applicationList/default"
,
"title"
:
"default"
,
"type"
:
"catAndAppList"
}],
"help"
:
"portalmenu.html#categories_and_applications"
,
"id"
:
"applicationList"
,
"title"
:
"applicationList"
,
"type"
:
"catAndAppList"
}],
"help"
:
"portalmenu.html"
,
"id"
:
"portalMenu"
,
"title"
:
"portalMenu"
},{
"_nodes"
:[{
"default"
:
"bootstrap"
,
"id"
:
"portalSkin"
,
"select"
:[{
"k"
:
"bootstrap"
,
"v"
:
"Bootstrap"
},{
"k"
:
"pastel"
,
"v"
:
"Pastel"
},{
"k"
:
"impact"
,
"v"
:
"Impact"
},{
"k"
:
"dark"
,
"v"
:
"Dark"
}],
"title"
:
"portalSkin"
,
"type"
:
"portalskin"
},{
"id"
:
"portalSkinBackground"
,
"select"
:[{
"k"
:
""
,
"v"
:
"None"
},{
"k"
:
"1280px-Anse_Source_d'Argent_2-La_Digue.jpg"
,
"v"
:
"Anse"
},{
"k"
:
"1280px-Autumn-clear-water-waterfall-landscape_-_Virginia_-_ForestWander.jpg"
,
"v"
:
"Waterfall"
},{
"k"
:
"1280px-BrockenSnowedTrees.jpg"
,
"v"
:
"Snowed Trees"
},{
"k"
:
"1280px-Cedar_Breaks_National_Monument_partially.jpg"
,
"v"
:
"National Monument"
},{
"k"
:
"1280px-Parry_Peak_from_Winter_Park.jpg"
,
"v"
:
"Winter"
},{
"k"
:
"Aletschgletscher_mit_Pinus_cembra1.jpg"
,
"v"
:
"Pinus"
}],
"title"
:
"portalSkinBackground"
,
"type"
:
"portalskinbackground"
},{
"cnodes"
:
"portalSkinRules"
,
"help"
:
"portalcustom.html"
,
"id"
:
"portalSkinRules"
,
"title"
:
"portalSkinRules"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"portalCheckLogins"
,
"title"
:
"portalCheckLogins"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"portalDisplayResetPassword"
,
"title"
:
"portalDisplayResetPassword"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"portalDisplayRegister"
,
"title"
:
"portalDisplayRegister"
,
"type"
:
"bool"
}],
"id"
:
"portalButtons"
,
"title"
:
"portalButtons"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"portalRequireOldPassword"
,
"title"
:
"portalRequireOldPassword"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"hideOldPassword"
,
"title"
:
"hideOldPassword"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"mailOnPasswordChange"
,
"title"
:
"mailOnPasswordChange"
,
"type"
:
"bool"
}],
"id"
:
"passwordManagement"
,
"title"
:
"passwordManagement"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"_user"
,
"help"
:
"monitoring.html"
,
"id"
:
"portalUserAttr"
,
"title"
:
"portalUserAttr"
},{
"default"
:
0
,
"id"
:
"portalOpenLinkInNewWindow"
,
"title"
:
"portalOpenLinkInNewWindow"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"portalAntiFrame"
,
"title"
:
"portalAntiFrame"
,
"type"
:
"bool"
},{
"default"
:
60000
,
"id"
:
"portalPingInterval"
,
"title"
:
"portalPingInterval"
,
"type"
:
"int"
}],
"id"
:
"portalOther"
,
"title"
:
"portalOther"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"portalcustom.html"
,
"id"
:
"portalCustomization"
,
"title"
:
"portalCustomization"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"captcha_login_enabled"
,
"title"
:
"captcha_login_enabled"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"captcha_mail_enabled"
,
"title"
:
"captcha_mail_enabled"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"captcha_register_enabled"
,
"title"
:
"captcha_register_enabled"
,
"type"
:
"bool"
},{
"default"
:
6
,
"id"
:
"captcha_size"
,
"title"
:
"captcha_size"
,
"type"
:
"int"
},{
"default"
:
"Apache::Session::File"
,
"id"
:
"captchaStorage"
,
"title"
:
"captchaStorage"
},{
"cnodes"
:
"captchaStorageOptions"
,
"default"
:[{
"data"
:
"/var/lib/lemonldap-ng/captcha/"
,
"id"
:
"captchaStorageOptions/Directory"
,
"title"
:
"Directory"
,
"type"
:
"keyText"
}],
"id"
:
"captchaStorageOptions"
,
"title"
:
"captchaStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"captcha.html"
,
"id"
:
"portalCaptcha"
,
"title"
:
"portalCaptcha"
}],
"help"
:
"portal.html"
,
"id"
:
"portalParams"
,
"title"
:
"portalParams"
},{
"_nodes"
:[{
"default"
:
"Demo"
,
"id"
:
"authentication"
,
"select"
:[{
"k"
:
"Apache"
,
"v"
:
"Apache"
},{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"BrowserID"
,
"v"
:
"BrowserID (Mozilla Persona)"
},{
"k"
:
"Choice"
,
"v"
:
"authChoice"
},{
"k"
:
"CAS"
,
"v"
:
"Central Authentication Service (CAS)"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Multi"
,
"v"
:
"Multiple"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Radius"
,
"v"
:
"Radius"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"SSL"
,
"v"
:
"SSL"
},{
"k"
:
"Twitter"
,
"v"
:
"Twitter"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
},{
"k"
:
"Yubikey"
,
"v"
:
"Yubikey"
}],
"title"
:
"authentication"
,
"type"
:
"select"
},{
"default"
:
"Demo"
,
"id"
:
"userDB"
,
"select"
:[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Choice"
,
"v"
:
"authChoice"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Multi"
,
"v"
:
"Multiple"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
}],
"title"
:
"userDB"
,
"type"
:
"select"
},{
"default"
:
"Demo"
,
"id"
:
"passwordDB"
,
"select"
:[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"Choice"
,
"v"
:
"authChoice"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
}],
"title"
:
"passwordDB"
,
"type"
:
"select"
}],
"_nodes_cond"
:[{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"ADPwdMaxAge"
,
"title"
:
"ADPwdMaxAge"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"ADPwdExpireWarning"
,
"title"
:
"ADPwdExpireWarning"
,
"type"
:
"int"
}],
"help"
:
"authad.html"
,
"id"
:
"adParams"
,
"show"
:
false
,
"title"
:
"adParams"
},{
"_nodes"
:[{
"default"
:
"lmAuth"
,
"id"
:
"authChoiceParam"
,
"title"
:
"authChoiceParam"
},{
"cnodes"
:
"authChoiceModules"
,
"id"
:
"authChoiceModules"
,
"select"
:[[{
"k"
:
"Apache"
,
"v"
:
"Apache"
},{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"BrowserID"
,
"v"
:
"BrowserID (Mozilla Persona)"
},{
"k"
:
"CAS"
,
"v"
:
"Central Authentication Service (CAS)"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demo"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Radius"
,
"v"
:
"Radius"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"SSL"
,
"v"
:
"SSL"
},{
"k"
:
"Twitter"
,
"v"
:
"Twitter"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
},{
"k"
:
"Yubikey"
,
"v"
:
"Yubikey"
}],[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demo"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
}],[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demo"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
}]],
"title"
:
"authChoiceModules"
,
"type"
:
"authChoiceContainer"
}],
"help"
:
"authchoice.html"
,
"id"
:
"choiceParams"
,
"show"
:
false
,
"title"
:
"choiceParams"
},{
"_nodes"
:[{
"default"
:
4
,
"id"
:
"apacheAuthnLevel"
,
"title"
:
"apacheAuthnLevel"
,
"type"
:
"int"
}],
"help"
:
"authapache.html"
,
"id"
:
"apacheParams"
,
"show"
:
false
,
"title"
:
"apacheParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"browserIdAuthnLevel"
,
"title"
:
"browserIdAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"browserIdAutoLogin"
,
"title"
:
"browserIdAutoLogin"
,
"type"
:
"bool"
},{
"id"
:
"browserIdVerificationURL"
,
"title"
:
"browserIdVerificationURL"
},{
"id"
:
"browserIdSiteName"
,
"title"
:
"browserIdSiteName"
},{
"id"
:
"browserIdSiteLogo"
,
"title"
:
"browserIdSiteLogo"
},{
"id"
:
"browserIdBackgroundColor"
,
"title"
:
"browserIdBackgroundColor"
}],
"help"
:
"authbrowserid.html"
,
"id"
:
"browseridParams"
,
"show"
:
false
,
"title"
:
"browseridParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"CAS_authnLevel"
,
"title"
:
"CAS_authnLevel"
,
"type"
:
"int"
},{
"id"
:
"CAS_url"
,
"title"
:
"CAS_url"
},{
"id"
:
"CAS_CAFile"
,
"title"
:
"CAS_CAFile"
},{
"id"
:
"CAS_renew"
,
"title"
:
"CAS_renew"
,
"type"
:
"bool"
},{
"id"
:
"CAS_gateway"
,
"title"
:
"CAS_gateway"
,
"type"
:
"bool"
},{
"default"
:
"/tmp/pgt.txt"
,
"id"
:
"CAS_pgtFile"
,
"title"
:
"CAS_pgtFile"
},{
"cnodes"
:
"CAS_proxiedServices"
,
"id"
:
"CAS_proxiedServices"
,
"title"
:
"CAS_proxiedServices"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"authcas.html"
,
"id"
:
"casParams"
,
"show"
:
false
,
"title"
:
"casParams"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"dbiAuthnLevel"
,
"title"
:
"dbiAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"dbiExportedVars"
,
"default"
:[],
"id"
:
"dbiExportedVars"
,
"title"
:
"dbiExportedVars"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"_nodes"
:[{
"id"
:
"dbiAuthChain"
,
"title"
:
"dbiAuthChain"
},{
"id"
:
"dbiAuthUser"
,
"title"
:
"dbiAuthUser"
},{
"id"
:
"dbiAuthPassword"
,
"title"
:
"dbiAuthPassword"
,
"type"
:
"password"
}],
"id"
:
"dbiConnectionAuth"
,
"title"
:
"dbiConnectionAuth"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"dbiUserChain"
,
"title"
:
"dbiUserChain"
},{
"id"
:
"dbiUserUser"
,
"title"
:
"dbiUserUser"
},{
"id"
:
"dbiUserPassword"
,
"title"
:
"dbiUserPassword"
,
"type"
:
"password"
}],
"id"
:
"dbiConnectionUser"
,
"title"
:
"dbiConnectionUser"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"authdbi.html#connection"
,
"id"
:
"dbiConnection"
,
"title"
:
"dbiConnection"
},{
"_nodes"
:[{
"id"
:
"dbiAuthTable"
,
"title"
:
"dbiAuthTable"
},{
"id"
:
"dbiUserTable"
,
"title"
:
"dbiUserTable"
},{
"id"
:
"dbiAuthLoginCol"
,
"title"
:
"dbiAuthLoginCol"
},{
"id"
:
"dbiAuthPasswordCol"
,
"title"
:
"dbiAuthPasswordCol"
},{
"id"
:
"dbiPasswordMailCol"
,
"title"
:
"dbiPasswordMailCol"
},{
"id"
:
"userPivot"
,
"title"
:
"userPivot"
}],
"help"
:
"authdbi.html#schema"
,
"id"
:
"dbiSchema"
,
"title"
:
"dbiSchema"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"help"
:
"authdbi.html#password"
,
"id"
:
"dbiAuthPasswordHash"
,
"title"
:
"dbiAuthPasswordHash"
}],
"help"
:
"authdbi.html#password"
,
"id"
:
"dbiPassword"
,
"title"
:
"dbiPassword"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"authdbi.html"
,
"id"
:
"dbiParams"
,
"show"
:
false
,
"title"
:
"dbiParams"
},{
"_nodes"
:[{
"cnodes"
:
"demoExportedVars"
,
"default"
:[{
"data"
:
"cn"
,
"id"
:
"demoExportedVars/cn"
,
"title"
:
"cn"
,
"type"
:
"keyText"
},{
"data"
:
"mail"
,
"id"
:
"demoExportedVars/mail"
,
"title"
:
"mail"
,
"type"
:
"keyText"
},{
"data"
:
"uid"
,
"id"
:
"demoExportedVars/uid"
,
"title"
:
"uid"
,
"type"
:
"keyText"
}],
"id"
:
"demoExportedVars"
,
"title"
:
"demoExportedVars"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"authdemo.html"
,
"id"
:
"demoParams"
,
"show"
:
false
,
"title"
:
"demoParams"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"facebookAuthnLevel"
,
"title"
:
"facebookAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"facebookExportedVars"
,
"default"
:[],
"id"
:
"facebookExportedVars"
,
"title"
:
"facebookExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"facebookAppId"
,
"title"
:
"facebookAppId"
},{
"id"
:
"facebookAppSecret"
,
"title"
:
"facebookAppSecret"
}],
"help"
:
"authfacebook.html"
,
"id"
:
"facebookParams"
,
"show"
:
false
,
"title"
:
"facebookParams"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"ldapAuthnLevel"
,
"title"
:
"ldapAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"ldapExportedVars"
,
"default"
:[{
"data"
:
"cn"
,
"id"
:
"ldapExportedVars/cn"
,
"title"
:
"cn"
,
"type"
:
"keyText"
},{
"data"
:
"mail"
,
"id"
:
"ldapExportedVars/mail"
,
"title"
:
"mail"
,
"type"
:
"keyText"
},{
"data"
:
"uid"
,
"id"
:
"ldapExportedVars/uid"
,
"title"
:
"uid"
,
"type"
:
"keyText"
}],
"id"
:
"ldapExportedVars"
,
"title"
:
"ldapExportedVars"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"default"
:
"ldap://localhost"
,
"id"
:
"ldapServer"
,
"title"
:
"ldapServer"
},{
"default"
:
389
,
"id"
:
"ldapPort"
,
"title"
:
"ldapPort"
,
"type"
:
"int"
},{
"default"
:
"dc=example,dc=com"
,
"id"
:
"ldapBase"
,
"title"
:
"ldapBase"
},{
"default"
:
""
,
"id"
:
"managerDn"
,
"title"
:
"managerDn"
},{
"default"
:
""
,
"id"
:
"managerPassword"
,
"title"
:
"managerPassword"
,
"type"
:
"password"
},{
"default"
:
120
,
"id"
:
"ldapTimeout"
,
"title"
:
"ldapTimeout"
,
"type"
:
"int"
},{
"default"
:
3
,
"id"
:
"ldapVersion"
,
"title"
:
"ldapVersion"
,
"type"
:
"int"
},{
"id"
:
"ldapRaw"
,
"title"
:
"ldapRaw"
}],
"help"
:
"authldap.html#connection"
,
"id"
:
"ldapConnection"
,
"title"
:
"ldapConnection"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"LDAPFilter"
,
"title"
:
"LDAPFilter"
},{
"id"
:
"AuthLDAPFilter"
,
"title"
:
"AuthLDAPFilter"
},{
"id"
:
"mailLDAPFilter"
,
"title"
:
"mailLDAPFilter"
},{
"default"
:
"find"
,
"id"
:
"ldapSearchDeref"
,
"select"
:[{
"k"
:
"never"
,
"v"
:
"never"
},{
"k"
:
"search"
,
"v"
:
"search"
},{
"k"
:
"find"
,
"v"
:
"find"
},{
"k"
:
"always"
,
"v"
:
"always"
}],
"title"
:
"ldapSearchDeref"
,
"type"
:
"select"
}],
"help"
:
"authldap.html#filters"
,
"id"
:
"ldapFilters"
,
"title"
:
"ldapFilters"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"ldapGroupBase"
,
"title"
:
"ldapGroupBase"
},{
"default"
:
"groupOfNames"
,
"id"
:
"ldapGroupObjectClass"
,
"title"
:
"ldapGroupObjectClass"
},{
"default"
:
"member"
,
"id"
:
"ldapGroupAttributeName"
,
"title"
:
"ldapGroupAttributeName"
},{
"default"
:
"dn"
,
"id"
:
"ldapGroupAttributeNameUser"
,
"title"
:
"ldapGroupAttributeNameUser"
},{
"default"
:
"cn"
,
"id"
:
"ldapGroupAttributeNameSearch"
,
"title"
:
"ldapGroupAttributeNameSearch"
},{
"default"
:
0
,
"id"
:
"ldapGroupRecursive"
,
"title"
:
"ldapGroupRecursive"
,
"type"
:
"bool"
},{
"default"
:
"dn"
,
"id"
:
"ldapGroupAttributeNameGroup"
,
"title"
:
"ldapGroupAttributeNameGroup"
}],
"help"
:
"authldap.html#groups"
,
"id"
:
"ldapGroups"
,
"title"
:
"ldapGroups"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"ldapPpolicyControl"
,
"title"
:
"ldapPpolicyControl"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"ldapSetPassword"
,
"title"
:
"ldapSetPassword"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"ldapChangePasswordAsUser"
,
"title"
:
"ldapChangePasswordAsUser"
,
"type"
:
"bool"
},{
"default"
:
"utf-8"
,
"id"
:
"ldapPwdEnc"
,
"title"
:
"ldapPwdEnc"
},{
"default"
:
1
,
"id"
:
"ldapUsePasswordResetAttribute"
,
"title"
:
"ldapUsePasswordResetAttribute"
,
"type"
:
"bool"
},{
"default"
:
"pwdReset"
,
"id"
:
"ldapPasswordResetAttribute"
,
"title"
:
"ldapPasswordResetAttribute"
},{
"default"
:
"TRUE"
,
"id"
:
"ldapPasswordResetAttributeValue"
,
"title"
:
"ldapPasswordResetAttributeValue"
},{
"default"
:
0
,
"id"
:
"ldapAllowResetExpiredPassword"
,
"title"
:
"ldapAllowResetExpiredPassword"
,
"type"
:
"bool"
}],
"help"
:
"authldap.html#password"
,
"id"
:
"ldapPassword"
,
"title"
:
"ldapPassword"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"authldap.html"
,
"id"
:
"ldapParams"
,
"show"
:
false
,
"title"
:
"ldapParams"
},{
"_nodes"
:[{
"id"
:
"multiAuthStack"
,
"title"
:
"multiAuthStack"
,
"type"
:
"authParamsText"
},{
"id"
:
"multiUserDBStack"
,
"title"
:
"multiUserDBStack"
,
"type"
:
"authParamsText"
}],
"help"
:
"authmulti.html"
,
"id"
:
"multiParams"
,
"show"
:
false
,
"title"
:
"multiParams"
,
"type"
:
"authParamsTextContainer"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"nullAuthnLevel"
,
"title"
:
"nullAuthnLevel"
,
"type"
:
"int"
}],
"help"
:
"authnull.html"
,
"id"
:
"nullParams"
,
"show"
:
false
,
"title"
:
"nullParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"openIdAuthnLevel"
,
"title"
:
"openIdAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"openIdExportedVars"
,
"default"
:[],
"id"
:
"openIdExportedVars"
,
"title"
:
"openIdExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"openIdSecret"
,
"title"
:
"openIdSecret"
},{
"default"
:
"0;"
,
"id"
:
"openIdIDPList"
,
"title"
:
"openIdIDPList"
,
"type"
:
"blackWhiteList"
}],
"help"
:
"authopenid.html"
,
"id"
:
"openidParams"
,
"show"
:
false
,
"title"
:
"openidParams"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"oidcAuthnLevel"
,
"title"
:
"oidcAuthnLevel"
,
"type"
:
"int"
},{
"default"
:
"openidconnectcallback"
,
"id"
:
"oidcRPCallbackGetParam"
,
"title"
:
"oidcRPCallbackGetParam"
},{
"default"
:
600
,
"id"
:
"oidcRPStateTimeout"
,
"title"
:
"oidcRPStateTimeout"
,
"type"
:
"int"
}],
"help"
:
"authopenidconnect.html"
,
"id"
:
"oidcParams"
,
"show"
:
false
,
"title"
:
"oidcParams"
},{
"_nodes"
:[{
"id"
:
"proxyAuthService"
,
"title"
:
"proxyAuthService"
},{
"id"
:
"proxySessionService"
,
"title"
:
"proxySessionService"
},{
"id"
:
"remoteCookieName"
,
"title"
:
"remoteCookieName"
},{
"default"
:
2
,
"id"
:
"proxyAuthnLevel"
,
"title"
:
"proxyAuthnLevel"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"proxyUseSoap"
,
"title"
:
"proxyUseSoap"
,
"type"
:
"bool"
}],
"help"
:
"authproxy.html"
,
"id"
:
"proxyParams"
,
"show"
:
false
,
"title"
:
"proxyParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
3
,
"id"
:
"radiusAuthnLevel"
,
"title"
:
"radiusAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"radiusSecret"
,
"title"
:
"radiusSecret"
},{
"id"
:
"radiusServer"
,
"title"
:
"radiusServer"
}],
"help"
:
"authradius.html"
,
"id"
:
"radiusParams"
,
"show"
:
false
,
"title"
:
"radiusParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"remotePortal"
,
"title"
:
"remotePortal"
},{
"id"
:
"remoteCookieName"
,
"title"
:
"remoteCookieName"
},{
"default"
:
"Lemonldap::NG::Common::Apache::Session::SOAP"
,
"id"
:
"remoteGlobalStorage"
,
"title"
:
"remoteGlobalStorage"
},{
"cnodes"
:
"remoteGlobalStorageOptions"
,
"default"
:[{
"data"
:
"http://auth.example.com/Lemonldap/NG/Common/CGI/SOAPService"
,
"id"
:
"remoteGlobalStorageOptions/ns"
,
"title"
:
"ns"
,
"type"
:
"keyText"
},{
"data"
:
"http://auth.example.com/index.pl/sessions"
,
"id"
:
"remoteGlobalStorageOptions/proxy"
,
"title"
:
"proxy"
,
"type"
:
"keyText"
}],
"id"
:
"remoteGlobalStorageOptions"
,
"title"
:
"remoteGlobalStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"authremote.html"
,
"id"
:
"remoteParams"
,
"show"
:
false
,
"title"
:
"remoteParams"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"slaveAuthnLevel"
,
"title"
:
"slaveAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"slaveExportedVars"
,
"default"
:[],
"id"
:
"slaveExportedVars"
,
"title"
:
"slaveExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"slaveUserHeader"
,
"title"
:
"slaveUserHeader"
},{
"id"
:
"slaveMasterIP"
,
"title"
:
"slaveMasterIP"
},{
"id"
:
"slaveHeaderName"
,
"title"
:
"slaveHeaderName"
},{
"id"
:
"slaveHeaderContent"
,
"title"
:
"slaveHeaderContent"
}],
"help"
:
"authslave.html"
,
"id"
:
"slaveParams"
,
"show"
:
false
,
"title"
:
"slaveParams"
},{
"_nodes"
:[{
"default"
:
5
,
"id"
:
"SSLAuthnLevel"
,
"title"
:
"SSLAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"SSLVar"
,
"title"
:
"SSLVar"
}],
"help"
:
"authssl.html"
,
"id"
:
"sslParams"
,
"show"
:
false
,
"title"
:
"sslParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"twitterAuthnLevel"
,
"title"
:
"twitterAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"twitterKey"
,
"title"
:
"twitterKey"
},{
"id"
:
"twitterSecret"
,
"title"
:
"twitterSecret"
},{
"id"
:
"twitterAppName"
,
"title"
:
"twitterAppName"
}],
"help"
:
"authtwitter.html"
,
"id"
:
"twitterParams"
,
"show"
:
false
,
"title"
:
"twitterParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"webIDAuthnLevel"
,
"title"
:
"webIDAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"webIDExportedVars"
,
"default"
:[],
"id"
:
"webIDExportedVars"
,
"title"
:
"webIDExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"webIDWhitelist"
,
"title"
:
"webIDWhitelist"
}],
"help"
:
"authwebid.html"
,
"id"
:
"webidParams"
,
"show"
:
false
,
"title"
:
"webidParams"
},{
"_nodes"
:[{
"default"
:
3
,
"id"
:
"yubikeyAuthnLevel"
,
"title"
:
"yubikeyAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"yubikeyClientID"
,
"title"
:
"yubikeyClientID"
},{
"id"
:
"yubikeySecretKey"
,
"title"
:
"yubikeySecretKey"
},{
"default"
:
12
,
"id"
:
"yubikeyPublicIDSize"
,
"title"
:
"yubikeyPublicIDSize"
,
"type"
:
"int"
}],
"help"
:
"authyubikey.html"
,
"id"
:
"yubikeyParams"
,
"show"
:
false
,
"title"
:
"yubikeyParams"
,
"type"
:
"simpleInputContainer"
}],
"_nodes_filter"
:
"authParams"
,
"help"
:
"start.html#authentication_users_and_password_databases"
,
"id"
:
"authParams"
,
"title"
:
"authParams"
,
"type"
:
"authParams"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"issuerDBSAMLActivation"
,
"title"
:
"issuerDBSAMLActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/saml/"
,
"id"
:
"issuerDBSAMLPath"
,
"title"
:
"issuerDBSAMLPath"
},{
"default"
:
1
,
"id"
:
"issuerDBSAMLRule"
,
"title"
:
"issuerDBSAMLRule"
,
"type"
:
"boolOrExpr"
}],
"help"
:
"idpsaml.html"
,
"id"
:
"issuerDBSAML"
,
"title"
:
"issuerDBSAML"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"issuerDBCASActivation"
,
"title"
:
"issuerDBCASActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/cas/"
,
"id"
:
"issuerDBCASPath"
,
"title"
:
"issuerDBCASPath"
},{
"default"
:
1
,
"id"
:
"issuerDBCASRule"
,
"title"
:
"issuerDBCASRule"
,
"type"
:
"boolOrExpr"
},{
"_nodes"
:[{
"id"
:
"casAttr"
,
"title"
:
"casAttr"
},{
"cnodes"
:
"casAttributes"
,
"id"
:
"casAttributes"
,
"title"
:
"casAttributes"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"none"
,
"id"
:
"casAccessControlPolicy"
,
"select"
:[{
"k"
:
"none"
,
"v"
:
"None"
},{
"k"
:
"error"
,
"v"
:
"Display error on portal"
},{
"k"
:
"faketicket"
,
"v"
:
"Send a fake service ticket"
}],
"title"
:
"casAccessControlPolicy"
,
"type"
:
"select"
},{
"id"
:
"casStorage"
,
"title"
:
"casStorage"
},{
"cnodes"
:
"casStorageOptions"
,
"id"
:
"casStorageOptions"
,
"title"
:
"casStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"issuerDBCASOptions"
,
"title"
:
"issuerDBCASOptions"
}],
"help"
:
"idpcas.html"
,
"id"
:
"issuerDBCAS"
,
"title"
:
"issuerDBCAS"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"issuerDBOpenIDActivation"
,
"title"
:
"issuerDBOpenIDActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/openidserver/"
,
"id"
:
"issuerDBOpenIDPath"
,
"title"
:
"issuerDBOpenIDPath"
},{
"default"
:
1
,
"id"
:
"issuerDBOpenIDRule"
,
"title"
:
"issuerDBOpenIDRule"
,
"type"
:
"boolOrExpr"
},{
"_nodes"
:[{
"id"
:
"openIdIssuerSecret"
,
"title"
:
"openIdIssuerSecret"
},{
"id"
:
"openIdAttr"
,
"title"
:
"openIdAttr"
},{
"default"
:
"0;"
,
"id"
:
"openIdSPList"
,
"title"
:
"openIdSPList"
,
"type"
:
"blackWhiteList"
},{
"_nodes"
:[{
"default"
:
"cn"
,
"id"
:
"openIdSreg_fullname"
,
"title"
:
"openIdSreg_fullname"
},{
"default"
:
"uid"
,
"id"
:
"openIdSreg_nickname"
,
"title"
:
"openIdSreg_nickname"
},{
"id"
:
"openIdSreg_language"
,
"title"
:
"openIdSreg_language"
},{
"id"
:
"openIdSreg_postcode"
,
"title"
:
"openIdSreg_postcode"
},{
"default"
:
"_timezone"
,
"id"
:
"openIdSreg_timezone"
,
"title"
:
"openIdSreg_timezone"
},{
"id"
:
"openIdSreg_country"
,
"title"
:
"openIdSreg_country"
},{
"id"
:
"openIdSreg_gender"
,
"title"
:
"openIdSreg_gender"
},{
"default"
:
"mail"
,
"id"
:
"openIdSreg_email"
,
"title"
:
"openIdSreg_email"
},{
"id"
:
"openIdSreg_dob"
,
"title"
:
"openIdSreg_dob"
}],
"id"
:
"openIdSreg"
,
"title"
:
"openIdSreg"
,
"type"
:
"simpleInputContainer"
}],
"id"
:
"issuerDBOpenIDOptions"
,
"title"
:
"issuerDBOpenIDOptions"
}],
"help"
:
"idpopenid.html"
,
"id"
:
"issuerDBOpenID"
,
"title"
:
"issuerDBOpenID"
},{
"_nodes"
:[{
"default"
:
"0"
,
"id"
:
"issuerDBOpenIDConnectActivation"
,
"title"
:
"issuerDBOpenIDConnectActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/oauth2/"
,
"id"
:
"issuerDBOpenIDConnectPath"
,
"title"
:
"issuerDBOpenIDConnectPath"
},{
"default"
:
1
,
"id"
:
"issuerDBOpenIDConnectRule"
,
"title"
:
"issuerDBOpenIDConnectRule"
,
"type"
:
"boolOrExpr"
}],
"help"
:
"idpopenidconnect.html"
,
"id"
:
"issuerDBOpenIDConnect"
,
"title"
:
"issuerDBOpenIDConnect"
},{
"_nodes"
:[{
"default"
:
"0"
,
"id"
:
"issuerDBGetActivation"
,
"title"
:
"issuerDBGetActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/get/"
,
"id"
:
"issuerDBGetPath"
,
"title"
:
"issuerDBGetPath"
},{
"default"
:
1
,
"id"
:
"issuerDBGetRule"
,
"title"
:
"issuerDBGetRule"
,
"type"
:
"boolOrExpr"
},{
"default"
:[],
"id"
:
"issuerDBGetParameters"
,
"title"
:
"issuerDBGetParameters"
,
"type"
:
"doubleHash"
}],
"id"
:
"issuerDBGet"
,
"title"
:
"issuerDBGet"
}],
"help"
:
"start.html#identity_provider"
,
"id"
:
"issuerParams"
,
"title"
:
"issuerParams"
},{
"_nodes"
:[{
"default"
:
""
,
"id"
:
"syslog"
,
"title"
:
"syslog"
},{
"default"
:
""
,
"id"
:
"trustedProxies"
,
"title"
:
"trustedProxies"
},{
"default"
:
"uid"
,
"id"
:
"whatToTrace"
,
"title"
:
"whatToTrace"
},{
"default"
:
"_password"
,
"id"
:
"hiddenAttributes"
,
"title"
:
"hiddenAttributes"
}],
"help"
:
"logs.html"
,
"id"
:
"logParams"
,
"title"
:
"logParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"lemonldap"
,
"id"
:
"cookieName"
,
"title"
:
"cookieName"
},{
"default"
:
"example.com"
,
"id"
:
"domain"
,
"title"
:
"domain"
},{
"default"
:
0
,
"id"
:
"cda"
,
"title"
:
"cda"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"securedCookie"
,
"select"
:[{
"k"
:
"0"
,
"v"
:
"unsecuredCookie"
},{
"k"
:
"1"
,
"v"
:
"securedCookie"
},{
"k"
:
"2"
,
"v"
:
"doubleCookie"
},{
"k"
:
"3"
,
"v"
:
"doubleCookieForSingleSession"
}],
"title"
:
"securedCookie"
,
"type"
:
"select"
},{
"default"
:
1
,
"id"
:
"httpOnly"
,
"title"
:
"httpOnly"
,
"type"
:
"bool"
},{
"id"
:
"cookieExpiration"
,
"title"
:
"cookieExpiration"
}],
"help"
:
"ssocookie.html"
,
"id"
:
"cookieParams"
,
"title"
:
"cookieParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"storePassword"
,
"title"
:
"storePassword"
,
"type"
:
"bool"
},{
"default"
:
72000
,
"id"
:
"timeout"
,
"title"
:
"timeout"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"timeoutActivity"
,
"title"
:
"timeoutActivity"
,
"type"
:
"int"
},{
"default"
:
60
,
"id"
:
"timeoutActivityInterval"
,
"title"
:
"timeoutActivityInterval"
,
"type"
:
"int"
},{
"cnodes"
:
"grantSessionRules"
,
"id"
:
"grantSessionRules"
,
"title"
:
"grantSessionRules"
,
"type"
:
"grantContainer"
},{
"_nodes"
:[{
"default"
:
"Apache::Session::File"
,
"id"
:
"globalStorage"
,
"title"
:
"globalStorage"
},{
"cnodes"
:
"globalStorageOptions"
,
"default"
:[{
"data"
:
"/var/lib/lemonldap-ng/sessions/"
,
"id"
:
"globalStorageOptions/Directory"
,
"title"
:
"Directory"
,
"type"
:
"keyText"
},{
"data"
:
"/var/lib/lemonldap-ng/sessions/lock/"
,
"id"
:
"globalStorageOptions/LockDirectory"
,
"title"
:
"LockDirectory"
,
"type"
:
"keyText"
},{
"data"
:
"Lemonldap::NG::Common::Apache::Session::Generate::SHA256"
,
"id"
:
"globalStorageOptions/generateModule"
,
"title"
:
"generateModule"
,
"type"
:
"keyText"
}],
"id"
:
"globalStorageOptions"
,
"title"
:
"globalStorageOptions"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"Cache::FileCache"
,
"id"
:
"localSessionStorage"
,
"title"
:
"localSessionStorage"
},{
"cnodes"
:
"localSessionStorageOptions"
,
"default"
:[{
"data"
:
3
,
"id"
:
"localSessionStorageOptions/cache_depth"
,
"title"
:
"cache_depth"
,
"type"
:
"keyText"
},{
"data"
:
"/tmp"
,
"id"
:
"localSessionStorageOptions/cache_root"
,
"title"
:
"cache_root"
,
"type"
:
"keyText"
},{
"data"
:
600
,
"id"
:
"localSessionStorageOptions/default_expires_in"
,
"title"
:
"default_expires_in"
,
"type"
:
"keyText"
},{
"data"
:
"007"
,
"id"
:
"localSessionStorageOptions/directory_umask"
,
"title"
:
"directory_umask"
,
"type"
:
"keyText"
},{
"data"
:
"lemonldap-ng-sessions"
,
"id"
:
"localSessionStorageOptions/namespace"
,
"title"
:
"namespace"
,
"type"
:
"keyText"
}],
"id"
:
"localSessionStorageOptions"
,
"title"
:
"localSessionStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"start.html#sessions_database"
,
"id"
:
"sessionStorage"
,
"title"
:
"sessionStorage"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"singleSession"
,
"title"
:
"singleSession"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"singleIP"
,
"title"
:
"singleIP"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"singleUserByIP"
,
"title"
:
"singleUserByIP"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"singleSessionUserByIP"
,
"title"
:
"singleSessionUserByIP"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"notifyDeleted"
,
"title"
:
"notifyDeleted"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"notifyOther"
,
"title"
:
"notifyOther"
,
"type"
:
"bool"
}],
"id"
:
"multipleSessions"
,
"title"
:
"multipleSessions"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"persistentStorage"
,
"title"
:
"persistentStorage"
},{
"cnodes"
:
"persistentStorageOptions"
,
"id"
:
"persistentStorageOptions"
,
"title"
:
"persistentStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"persistentSessions"
,
"title"
:
"persistentSessions"
}],
"help"
:
"sessions.html"
,
"id"
:
"sessionParams"
,
"title"
:
"sessionParams"
},{
"cnodes"
:
"reloadUrls"
,
"help"
:
"configlocation.html#configuration_reload"
,
"id"
:
"reloadUrls"
,
"title"
:
"reloadUrls"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"id"
:
"customFunctions"
,
"title"
:
"customFunctions"
},{
"default"
:
0
,
"id"
:
"portalStatus"
,
"title"
:
"portalStatus"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"restSessionServer"
,
"title"
:
"restSessionServer"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"restConfigServer"
,
"title"
:
"restConfigServer"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"soapSessionServer"
,
"title"
:
"soapSessionServer"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"soapConfigServer"
,
"title"
:
"soapConfigServer"
,
"type"
:
"bool"
},{
"id"
:
"exportedAttr"
,
"title"
:
"exportedAttr"
}],
"id"
:
"portalServers"
,
"title"
:
"portalServers"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"loginHistoryEnabled"
,
"title"
:
"loginHistoryEnabled"
,
"type"
:
"bool"
},{
"default"
:
5
,
"id"
:
"successLoginNumber"
,
"title"
:
"successLoginNumber"
,
"type"
:
"int"
},{
"default"
:
5
,
"id"
:
"failedLoginNumber"
,
"title"
:
"failedLoginNumber"
,
"type"
:
"int"
},{
"cnodes"
:
"sessionDataToRemember"
,
"id"
:
"sessionDataToRemember"
,
"title"
:
"sessionDataToRemember"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"loginhistory.html"
,
"id"
:
"loginHistory"
,
"title"
:
"loginHistory"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"notification"
,
"title"
:
"notification"
,
"type"
:
"bool"
},{
"default"
:
"File"
,
"id"
:
"notificationStorage"
,
"title"
:
"notificationStorage"
},{
"cnodes"
:
"notificationStorageOptions"
,
"default"
:[{
"data"
:
"/var/lib/lemonldap-ng/notifications"
,
"id"
:
"notificationStorageOptions/dirName"
,
"title"
:
"dirName"
,
"type"
:
"keyText"
}],
"id"
:
"notificationStorageOptions"
,
"title"
:
"notificationStorageOptions"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"allusers"
,
"id"
:
"notificationWildcard"
,
"title"
:
"notificationWildcard"
},{
"id"
:
"notificationXSLTfile"
,
"title"
:
"notificationXSLTfile"
}],
"help"
:
"notifications.html"
,
"id"
:
"notifications"
,
"title"
:
"notifications"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
""
,
"id"
:
"SMTPServer"
,
"title"
:
"SMTPServer"
},{
"id"
:
"SMTPAuthUser"
,
"title"
:
"SMTPAuthUser"
},{
"id"
:
"SMTPAuthPass"
,
"title"
:
"SMTPAuthPass"
,
"type"
:
"password"
}],
"id"
:
"SMTP"
,
"title"
:
"SMTP"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"noreply@example.com"
,
"id"
:
"mailFrom"
,
"title"
:
"mailFrom"
},{
"id"
:
"mailReplyTo"
,
"title"
:
"mailReplyTo"
},{
"default"
:
"utf-8"
,
"id"
:
"mailCharset"
,
"title"
:
"mailCharset"
}],
"id"
:
"mailHeaders"
,
"title"
:
"mailHeaders"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"[LemonLDAP::NG] Your new password"
,
"id"
:
"mailSubject"
,
"title"
:
"mailSubject"
},{
"id"
:
"mailBody"
,
"title"
:
"mailBody"
,
"type"
:
"longtext"
},{
"default"
:
"[LemonLDAP::NG] Password reset confirmation"
,
"id"
:
"mailConfirmSubject"
,
"title"
:
"mailConfirmSubject"
},{
"id"
:
"mailConfirmBody"
,
"title"
:
"mailConfirmBody"
,
"type"
:
"longtext"
}],
"id"
:
"mailContent"
,
"title"
:
"mailContent"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"http://auth.example.com/mail.pl"
,
"id"
:
"mailUrl"
,
"title"
:
"mailUrl"
},{
"default"
:
"[A-Z]{3}[a-z]{5}.
\\
d{2}"
,
"id"
:
"randomPasswordRegexp"
,
"title"
:
"randomPasswordRegexp"
},{
"default"
:
0
,
"id"
:
"mailTimeout"
,
"title"
:
"mailTimeout"
,
"type"
:
"int"
},{
"default"
:
"mail"
,
"id"
:
"mailSessionKey"
,
"title"
:
"mailSessionKey"
}],
"id"
:
"mailOther"
,
"title"
:
"mailOther"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"resetpassword.html"
,
"id"
:
"passwordManagement"
,
"title"
:
"passwordManagement"
},{
"_nodes"
:[{
"default"
:
"Null"
,
"id"
:
"registerDB"
,
"select"
:[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
}],
"title"
:
"registerDB"
,
"type"
:
"select"
},{
"default"
:
0
,
"id"
:
"registerTimeout"
,
"title"
:
"registerTimeout"
,
"type"
:
"int"
},{
"default"
:
"[LemonLDAP::NG] Account register confirmation"
,
"id"
:
"registerConfirmSubject"
,
"title"
:
"registerConfirmSubject"
},{
"default"
:
"[LemonLDAP::NG] Your new account"
,
"id"
:
"registerDoneSubject"
,
"title"
:
"registerDoneSubject"
}],
"help"
:
"register.html"
,
"id"
:
"register"
,
"title"
:
"register"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"^[
\\
w
\\
.
\\
-@]+$"
,
"id"
:
"userControl"
,
"title"
:
"userControl"
},{
"default"
:
0
,
"id"
:
"portalForceAuthn"
,
"title"
:
"portalForceAuthn"
,
"type"
:
"bool"
},{
"default"
:
5
,
"id"
:
"portalForceAuthnInterval"
,
"title"
:
"portalForceAuthnInterval"
,
"type"
:
"int"
},{
"id"
:
"key"
,
"title"
:
"key"
,
"type"
:
"password"
},{
"id"
:
"trustedDomains"
,
"title"
:
"trustedDomains"
},{
"default"
:
1
,
"id"
:
"useSafeJail"
,
"title"
:
"useSafeJail"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"checkXSS"
,
"title"
:
"checkXSS"
,
"type"
:
"bool"
},{
"cnodes"
:
"lwpSslOpts"
,
"id"
:
"lwpSslOpts"
,
"title"
:
"lwpSslOpts"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"default"
:
"'self'"
,
"id"
:
"cspDefault"
,
"title"
:
"cspDefault"
},{
"default"
:
"'self'"
,
"id"
:
"cspImg"
,
"title"
:
"cspImg"
},{
"default"
:
"'self'"
,
"id"
:
"cspScript"
,
"title"
:
"cspScript"
},{
"default"
:
"'self'"
,
"id"
:
"cspStyle"
,
"title"
:
"cspStyle"
},{
"default"
:
"'self'"
,
"id"
:
"cspConnect"
,
"title"
:
"cspConnect"
},{
"default"
:
"'self'"
,
"id"
:
"cspFont"
,
"title"
:
"cspFont"
}],
"help"
:
"csp.html"
,
"id"
:
"contentSecurityPolicy"
,
"title"
:
"contentSecurityPolicy"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"security.html#configure_security_settings"
,
"id"
:
"security"
,
"title"
:
"security"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"https"
,
"title"
:
"https"
,
"type"
:
"bool"
},{
"id"
:
"port"
,
"title"
:
"port"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"useRedirectOnForbidden"
,
"title"
:
"useRedirectOnForbidden"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"useRedirectOnError"
,
"title"
:
"useRedirectOnError"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"maintenance"
,
"title"
:
"maintenance"
,
"type"
:
"bool"
}],
"help"
:
"redirections.html"
,
"id"
:
"redirection"
,
"title"
:
"redirection"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"jsRedirect"
,
"title"
:
"jsRedirect"
,
"type"
:
"boolOrExpr"
},{
"default"
:
0
,
"id"
:
"noAjaxHook"
,
"title"
:
"noAjaxHook"
,
"type"
:
"bool"
}],
"help"
:
"redirections.html#portal_redirections"
,
"id"
:
"portalRedirection"
,
"title"
:
"portalRedirection"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"_nodes"
:[{
"id"
:
"zimbraPreAuthKey"
,
"title"
:
"zimbraPreAuthKey"
},{
"id"
:
"zimbraAccountKey"
,
"title"
:
"zimbraAccountKey"
},{
"default"
:
""
,
"id"
:
"zimbraBy"
,
"select"
:[{
"k"
:
""
,
"v"
:
""
},{
"k"
:
"name"
,
"v"
:
"User name"
},{
"k"
:
"id"
,
"v"
:
"User id"
},{
"k"
:
"foreignPrincipal"
,
"v"
:
"Foreign principal"
}],
"title"
:
"zimbraBy"
,
"type"
:
"select"
},{
"id"
:
"zimbraUrl"
,
"title"
:
"zimbraUrl"
},{
"id"
:
"zimbraSsoUrl"
,
"title"
:
"zimbraSsoUrl"
}],
"help"
:
"applications/zimbra.html"
,
"id"
:
"zimbraHandler"
,
"title"
:
"zimbraHandler"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"sympaSecret"
,
"title"
:
"sympaSecret"
},{
"id"
:
"sympaMailKey"
,
"title"
:
"sympaMailKey"
}],
"help"
:
"applications/sympa.html"
,
"id"
:
"sympaHandler"
,
"title"
:
"sympaHandler"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"127.0.0.1:11211"
,
"id"
:
"secureTokenMemcachedServers"
,
"title"
:
"secureTokenMemcachedServers"
},{
"default"
:
60
,
"id"
:
"secureTokenExpiration"
,
"title"
:
"secureTokenExpiration"
,
"type"
:
"int"
},{
"default"
:
"uid"
,
"id"
:
"secureTokenAttribute"
,
"title"
:
"secureTokenAttribute"
},{
"default"
:
".*"
,
"id"
:
"secureTokenUrls"
,
"title"
:
"secureTokenUrls"
},{
"default"
:
"Auth-Token"
,
"id"
:
"secureTokenHeader"
,
"title"
:
"secureTokenHeader"
},{
"default"
:
1
,
"id"
:
"secureTokenAllowOnError"
,
"title"
:
"secureTokenAllowOnError"
,
"type"
:
"bool"
}],
"help"
:
"securetoken.html"
,
"id"
:
"secureTokenHandler"
,
"title"
:
"secureTokenHandler"
,
"type"
:
"simpleInputContainer"
}],
"id"
:
"specialHandlers"
,
"title"
:
"specialHandlers"
},{
"cnodes"
:
"nginxCustomHandlers"
,
"id"
:
"nginxCustomHandlers"
,
"title"
:
"nginxCustomHandlers"
,
"type"
:
"keyTextContainer"
},{
"cnodes"
:
"logoutServices"
,
"default"
:[],
"help"
:
"logoutforward.html"
,
"id"
:
"logoutServices"
,
"title"
:
"logoutServices"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"; "
,
"id"
:
"multiValuesSeparator"
,
"title"
:
"multiValuesSeparator"
,
"type"
:
"authParamsText"
},{
"_nodes"
:[{
"default"
:
"get"
,
"id"
:
"infoFormMethod"
,
"select"
:[{
"k"
:
"get"
,
"v"
:
"GET"
},{
"k"
:
"post"
,
"v"
:
"POST"
}],
"title"
:
"infoFormMethod"
,
"type"
:
"select"
},{
"default"
:
"post"
,
"id"
:
"confirmFormMethod"
,
"select"
:[{
"k"
:
"get"
,
"v"
:
"GET"
},{
"k"
:
"post"
,
"v"
:
"POST"
}],
"title"
:
"confirmFormMethod"
,
"type"
:
"select"
},{
"default"
:
"get"
,
"id"
:
"redirectFormMethod"
,
"select"
:[{
"k"
:
"get"
,
"v"
:
"GET"
},{
"k"
:
"post"
,
"v"
:
"POST"
}],
"title"
:
"redirectFormMethod"
,
"type"
:
"select"
},{
"default"
:
1
,
"id"
:
"activeTimer"
,
"title"
:
"activeTimer"
,
"type"
:
"bool"
}],
"id"
:
"forms"
,
"title"
:
"forms"
}],
"help"
:
"start.html#advanced_features"
,
"id"
:
"advancedParams"
,
"title"
:
"advancedParams"
}],
"id"
:
"generalParameters"
,
"title"
:
"generalParameters"
},{
"_nodes"
:[{
"cnodes"
:
"exportedVars"
,
"default"
:[{
"data"
:
"HTTP_USER_AGENT"
,
"id"
:
"exportedVars/UA"
,
"title"
:
"UA"
,
"type"
:
"keyText"
}],
"help"
:
"exportedvars.html"
,
"id"
:
"exportedVars"
,
"title"
:
"exportedVars"
,
"type"
:
"keyTextContainer"
},{
"cnodes"
:
"macros"
,
"default"
:[],
"help"
:
"exportedvars.html#extend_variables_using_macros_and_groups"
,
"id"
:
"macros"
,
"title"
:
"macros"
,
"type"
:
"keyTextContainer"
},{
"cnodes"
:
"groups"
,
"default"
:[],
"help"
:
"exportedvars.html#extend_variables_using_macros_and_groups"
,
"id"
:
"groups"
,
"title"
:
"groups"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"variables"
,
"title"
:
"variables"
},{
"cnodes"
:
"virtualHosts"
,
"help"
:
"configvhost.html"
,
"id"
:
"virtualHosts"
,
"template"
:
"virtualHost"
,
"title"
:
"virtualHosts"
,
"type"
:
"virtualHostContainer"
},{
"_nodes"
:[{
"default"
:
"#PORTAL#/saml/metadata"
,
"id"
:
"samlEntityID"
,
"title"
:
"samlEntityID"
},{
"_nodes"
:[{
"get"
:[
"samlServicePrivateKeySig"
,
"samlServicePrivateKeySigPwd"
,
"samlServicePublicKeySig"
],
"id"
:
"samlServiceSecuritySig"
,
"title"
:
"samlServiceSecuritySig"
,
"type"
:
"RSAKey"
},{
"get"
:[
"samlServicePrivateKeyEnc"
,
"samlServicePrivateKeyEncPwd"
,
"samlServicePublicKeyEnc"
],
"id"
:
"samlServiceSecurityEnc"
,
"title"
:
"samlServiceSecurityEnc"
,
"type"
:
"RSAKey"
},{
"default"
:
0
,
"id"
:
"samlServiceUseCertificateInResponse"
,
"title"
:
"samlServiceUseCertificateInResponse"
,
"type"
:
"bool"
}],
"help"
:
"samlservice.html#security_parameters"
,
"id"
:
"samlServiceSecurity"
,
"title"
:
"samlServiceSecurity"
},{
"_nodes"
:[{
"default"
:
"mail"
,
"id"
:
"samlNameIDFormatMapEmail"
,
"title"
:
"samlNameIDFormatMapEmail"
},{
"default"
:
"mail"
,
"id"
:
"samlNameIDFormatMapX509"
,
"title"
:
"samlNameIDFormatMapX509"
},{
"default"
:
"uid"
,
"id"
:
"samlNameIDFormatMapWindows"
,
"title"
:
"samlNameIDFormatMapWindows"
},{
"default"
:
"uid"
,
"id"
:
"samlNameIDFormatMapKerberos"
,
"title"
:
"samlNameIDFormatMapKerberos"
}],
"help"
:
"samlservice.html#nameid_formats"
,
"id"
:
"samlNameIDFormatMap"
,
"title"
:
"samlNameIDFormatMap"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"samlAuthnContextMapPassword"
,
"title"
:
"samlAuthnContextMapPassword"
,
"type"
:
"int"
},{
"default"
:
3
,
"id"
:
"samlAuthnContextMapPasswordProtectedTransport"
,
"title"
:
"samlAuthnContextMapPasswordProtectedTransport"
,
"type"
:
"int"
},{
"default"
:
5
,
"id"
:
"samlAuthnContextMapTLSClient"
,
"title"
:
"samlAuthnContextMapTLSClient"
,
"type"
:
"int"
},{
"default"
:
4
,
"id"
:
"samlAuthnContextMapKerberos"
,
"title"
:
"samlAuthnContextMapKerberos"
,
"type"
:
"int"
}],
"help"
:
"samlservice.html#authentication_contexts"
,
"id"
:
"samlAuthnContextMap"
,
"title"
:
"samlAuthnContextMap"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"Example"
,
"id"
:
"samlOrganizationDisplayName"
,
"title"
:
"samlOrganizationDisplayName"
},{
"default"
:
"Example"
,
"id"
:
"samlOrganizationName"
,
"title"
:
"samlOrganizationName"
},{
"default"
:
"http://www.example.com"
,
"id"
:
"samlOrganizationURL"
,
"title"
:
"samlOrganizationURL"
}],
"help"
:
"samlservice.html#organization"
,
"id"
:
"samlOrganization"
,
"title"
:
"samlOrganization"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"samlSPSSODescriptorAuthnRequestsSigned"
,
"title"
:
"samlSPSSODescriptorAuthnRequestsSigned"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"samlSPSSODescriptorWantAssertionsSigned"
,
"title"
:
"samlSPSSODescriptorWantAssertionsSigned"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect;#PORTAL#/saml/proxySingleLogout;#PORTAL#/saml/proxySingleLogoutReturn"
,
"id"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"title"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/proxySingleLogout;#PORTAL#/saml/proxySingleLogoutReturn"
,
"id"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPPost"
,
"title"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPPost"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/proxySingleLogoutSOAP;"
,
"id"
:
"samlSPSSODescriptorSingleLogoutServiceSOAP"
,
"title"
:
"samlSPSSODescriptorSingleLogoutServiceSOAP"
,
"type"
:
"samlService"
}],
"id"
:
"samlSPSSODescriptorSingleLogoutService"
,
"title"
:
"samlSPSSODescriptorSingleLogoutService"
},{
"_nodes"
:[{
"default"
:
"1;0;urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact;#PORTAL#/saml/proxySingleSignOnArtifact"
,
"id"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact"
,
"title"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact"
,
"type"
:
"samlAssertion"
},{
"default"
:
"0;1;urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/proxySingleSignOnPost"
,
"id"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPPost"
,
"title"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPPost"
,
"type"
:
"samlAssertion"
}],
"id"
:
"samlSPSSODescriptorAssertionConsumerService"
,
"title"
:
"samlSPSSODescriptorAssertionConsumerService"
},{
"_nodes"
:[{
"default"
:
"1;0;urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/artifact"
,
"id"
:
"samlSPSSODescriptorArtifactResolutionServiceArtifact"
,
"title"
:
"samlSPSSODescriptorArtifactResolutionServiceArtifact"
,
"type"
:
"samlAssertion"
}],
"id"
:
"samlSPSSODescriptorArtifactResolutionService"
,
"title"
:
"samlSPSSODescriptorArtifactResolutionService"
}],
"help"
:
"samlservice.html#service_provider"
,
"id"
:
"samlSPSSODescriptor"
,
"title"
:
"samlSPSSODescriptor"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"samlIDPSSODescriptorWantAuthnRequestsSigned"
,
"title"
:
"samlIDPSSODescriptorWantAuthnRequestsSigned"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect;#PORTAL#/saml/singleSignOn;"
,
"id"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/singleSignOn;"
,
"id"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPPost"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPPost"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact;#PORTAL#/saml/singleSignOnArtifact;"
,
"id"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact"
,
"type"
:
"samlService"
}],
"id"
:
"samlIDPSSODescriptorSingleSignOnService"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnService"
},{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect;#PORTAL#/saml/singleLogout;#PORTAL#/saml/singleLogoutReturn"
,
"id"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/singleLogout;#PORTAL#/saml/singleLogoutReturn"
,
"id"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPPost"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPPost"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/singleLogoutSOAP;"
,
"id"
:
"samlIDPSSODescriptorSingleLogoutServiceSOAP"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutServiceSOAP"
,
"type"
:
"samlService"
}],
"id"
:
"samlIDPSSODescriptorSingleLogoutService"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutService"
},{
"_nodes"
:[{
"default"
:
"1;0;urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/artifact"
,
"id"
:
"samlIDPSSODescriptorArtifactResolutionServiceArtifact"
,
"title"
:
"samlIDPSSODescriptorArtifactResolutionServiceArtifact"
,
"type"
:
"samlAssertion"
}],
"id"
:
"samlIDPSSODescriptorArtifactResolutionService"
,
"title"
:
"samlIDPSSODescriptorArtifactResolutionService"
}],
"help"
:
"samlservice.html#identity_provider"
,
"id"
:
"samlIDPSSODescriptor"
,
"title"
:
"samlIDPSSODescriptor"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/AA/SOAP;"
,
"id"
:
"samlAttributeAuthorityDescriptorAttributeServiceSOAP"
,
"title"
:
"samlAttributeAuthorityDescriptorAttributeServiceSOAP"
,
"type"
:
"samlService"
}],
"id"
:
"samlAttributeAuthorityDescriptorAttributeService"
,
"title"
:
"samlAttributeAuthorityDescriptorAttributeService"
}],
"help"
:
"samlservice.html#attribute_authority"
,
"id"
:
"samlAttributeAuthorityDescriptor"
,
"title"
:
"samlAttributeAuthorityDescriptor"
},{
"_nodes"
:[{
"default"
:
"lemonldapidp"
,
"id"
:
"samlIdPResolveCookie"
,
"title"
:
"samlIdPResolveCookie"
},{
"default"
:
1
,
"id"
:
"samlMetadataForceUTF8"
,
"title"
:
"samlMetadataForceUTF8"
,
"type"
:
"bool"
},{
"id"
:
"samlStorage"
,
"title"
:
"samlStorage"
},{
"cnodes"
:
"samlStorageOptions"
,
"id"
:
"samlStorageOptions"
,
"title"
:
"samlStorageOptions"
,
"type"
:
"keyTextContainer"
},{
"default"
:
600
,
"id"
:
"samlRelayStateTimeout"
,
"title"
:
"samlRelayStateTimeout"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"samlUseQueryStringSpecific"
,
"title"
:
"samlUseQueryStringSpecific"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"samlCommonDomainCookieActivation"
,
"title"
:
"samlCommonDomainCookieActivation"
,
"type"
:
"bool"
},{
"id"
:
"samlCommonDomainCookieDomain"
,
"title"
:
"samlCommonDomainCookieDomain"
},{
"id"
:
"samlCommonDomainCookieReader"
,
"title"
:
"samlCommonDomainCookieReader"
},{
"id"
:
"samlCommonDomainCookieWriter"
,
"title"
:
"samlCommonDomainCookieWriter"
}],
"id"
:
"samlCommonDomainCookie"
,
"title"
:
"samlCommonDomainCookie"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"samlservice.html#advanced"
,
"id"
:
"samlAdvanced"
,
"title"
:
"samlAdvanced"
}],
"help"
:
"samlservice.html"
,
"id"
:
"samlServiceMetaData"
,
"title"
:
"samlServiceMetaData"
},{
"cnodes"
:
"samlIDPMetaDataNodes"
,
"id"
:
"samlIDPMetaDataNodes"
,
"template"
:
"samlIDPMetaDataNode"
,
"title"
:
"samlIDPMetaDataNodes"
,
"type"
:
"samlIDPMetaDataNodeContainer"
},{
"cnodes"
:
"samlSPMetaDataNodes"
,
"help"
:
"authsaml.html"
,
"id"
:
"samlSPMetaDataNodes"
,
"template"
:
"samlSPMetaDataNode"
,
"title"
:
"samlSPMetaDataNodes"
,
"type"
:
"samlSPMetaDataNodeContainer"
},{
"_nodes"
:[{
"default"
:
"http://auth.example.com"
,
"id"
:
"oidcServiceMetaDataIssuer"
,
"title"
:
"oidcServiceMetaDataIssuer"
},{
"_nodes"
:[{
"default"
:
"authorize"
,
"id"
:
"oidcServiceMetaDataAuthorizeURI"
,
"title"
:
"oidcServiceMetaDataAuthorizeURI"
},{
"default"
:
"token"
,
"id"
:
"oidcServiceMetaDataTokenURI"
,
"title"
:
"oidcServiceMetaDataTokenURI"
},{
"default"
:
"userinfo"
,
"id"
:
"oidcServiceMetaDataUserInfoURI"
,
"title"
:
"oidcServiceMetaDataUserInfoURI"
},{
"default"
:
"jwks"
,
"id"
:
"oidcServiceMetaDataJWKSURI"
,
"title"
:
"oidcServiceMetaDataJWKSURI"
},{
"default"
:
"register"
,
"id"
:
"oidcServiceMetaDataRegistrationURI"
,
"title"
:
"oidcServiceMetaDataRegistrationURI"
},{
"default"
:
"logout"
,
"id"
:
"oidcServiceMetaDataEndSessionURI"
,
"title"
:
"oidcServiceMetaDataEndSessionURI"
},{
"default"
:
"checksession.html"
,
"id"
:
"oidcServiceMetaDataCheckSessionURI"
,
"title"
:
"oidcServiceMetaDataCheckSessionURI"
}],
"id"
:
"oidcServiceMetaDataEndPoints"
,
"title"
:
"oidcServiceMetaDataEndPoints"
,
"type"
:
"simpleInputContainer"
},{
"cnodes"
:
"oidcServiceMetaDataAuthnContext"
,
"default"
:[{
"data"
:
1
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-1"
,
"title"
:
"loa-1"
,
"type"
:
"keyText"
},{
"data"
:
2
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-2"
,
"title"
:
"loa-2"
,
"type"
:
"keyText"
},{
"data"
:
3
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-3"
,
"title"
:
"loa-3"
,
"type"
:
"keyText"
},{
"data"
:
4
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-4"
,
"title"
:
"loa-4"
,
"type"
:
"keyText"
},{
"data"
:
5
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-5"
,
"title"
:
"loa-5"
,
"type"
:
"keyText"
}],
"id"
:
"oidcServiceMetaDataAuthnContext"
,
"title"
:
"oidcServiceMetaDataAuthnContext"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"get"
:[
"oidcServicePrivateKeySig"
,
"oidcServicePublicKeySig"
],
"id"
:
"oidcServiceMetaDataKeys"
,
"title"
:
"oidcServiceMetaDataKeys"
,
"type"
:
"RSAKeyNoPassword"
},{
"id"
:
"oidcServiceKeyIdSig"
,
"title"
:
"oidcServiceKeyIdSig"
},{
"default"
:
"0"
,
"id"
:
"oidcServiceAllowDynamicRegistration"
,
"title"
:
"oidcServiceAllowDynamicRegistration"
,
"type"
:
"bool"
},{
"default"
:
"1"
,
"id"
:
"oidcServiceAllowAuthorizationCodeFlow"
,
"title"
:
"oidcServiceAllowAuthorizationCodeFlow"
,
"type"
:
"bool"
},{
"default"
:
"0"
,
"id"
:
"oidcServiceAllowImplicitFlow"
,
"title"
:
"oidcServiceAllowImplicitFlow"
,
"type"
:
"bool"
},{
"default"
:
"0"
,
"id"
:
"oidcServiceAllowHybridFlow"
,
"title"
:
"oidcServiceAllowHybridFlow"
,
"type"
:
"bool"
}],
"id"
:
"oidcServiceMetaDataSecurity"
,
"title"
:
"oidcServiceMetaDataSecurity"
},{
"_nodes"
:[{
"id"
:
"oidcStorage"
,
"title"
:
"oidcStorage"
},{
"cnodes"
:
"oidcStorageOptions"
,
"id"
:
"oidcStorageOptions"
,
"title"
:
"oidcStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"oidcServiceMetaDataSessions"
,
"title"
:
"oidcServiceMetaDataSessions"
}],
"help"
:
"openidconnectservice.html#service_configuration"
,
"id"
:
"oidcServiceMetaData"
,
"title"
:
"oidcServiceMetaData"
},{
"cnodes"
:
"oidcOPMetaDataNodes"
,
"help"
:
"authopenidconnect.html#declare_the_openid_connect_provider_in_llng"
,
"id"
:
"oidcOPMetaDataNodes"
,
"title"
:
"oidcOPMetaDataNodes"
,
"type"
:
"oidcOPMetaDataNodeContainer"
},{
"cnodes"
:
"oidcRPMetaDataNodes"
,
"help"
:
"idpopenidconnect.html#configuration_of_relying_party_in_llng"
,
"id"
:
"oidcRPMetaDataNodes"
,
"title"
:
"oidcRPMetaDataNodes"
,
"type"
:
"oidcRPMetaDataNodeContainer"
}]
\ No newline at end of file
[{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
"http://auth.example.com/"
,
"id"
:
"portal"
,
"title"
:
"portal"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"portalDisplayLogout"
,
"title"
:
"portalDisplayLogout"
,
"type"
:
"boolOrExpr"
},{
"default"
:
"$_auth =~ /^(LDAP|DBI|Demo)$/"
,
"id"
:
"portalDisplayChangePassword"
,
"title"
:
"portalDisplayChangePassword"
,
"type"
:
"boolOrExpr"
},{
"default"
:
1
,
"id"
:
"portalDisplayAppslist"
,
"title"
:
"portalDisplayAppslist"
,
"type"
:
"boolOrExpr"
},{
"default"
:
1
,
"id"
:
"portalDisplayLoginHistory"
,
"title"
:
"portalDisplayLoginHistory"
,
"type"
:
"boolOrExpr"
}],
"id"
:
"portalModules"
,
"title"
:
"portalModules"
,
"type"
:
"simpleInputContainer"
},{
"cnodes"
:
"applicationList"
,
"default"
:[{
"data"
:{
"catname"
:
"Default category"
,
"type"
:
"category"
},
"id"
:
"applicationList/default"
,
"title"
:
"default"
,
"type"
:
"catAndAppList"
}],
"help"
:
"portalmenu.html#categories_and_applications"
,
"id"
:
"applicationList"
,
"title"
:
"applicationList"
,
"type"
:
"catAndAppList"
}],
"help"
:
"portalmenu.html"
,
"id"
:
"portalMenu"
,
"title"
:
"portalMenu"
},{
"_nodes"
:[{
"default"
:
"bootstrap"
,
"id"
:
"portalSkin"
,
"select"
:[{
"k"
:
"bootstrap"
,
"v"
:
"Bootstrap"
},{
"k"
:
"pastel"
,
"v"
:
"Pastel"
},{
"k"
:
"impact"
,
"v"
:
"Impact"
},{
"k"
:
"dark"
,
"v"
:
"Dark"
}],
"title"
:
"portalSkin"
,
"type"
:
"portalskin"
},{
"id"
:
"portalSkinBackground"
,
"select"
:[{
"k"
:
""
,
"v"
:
"None"
},{
"k"
:
"1280px-Anse_Source_d'Argent_2-La_Digue.jpg"
,
"v"
:
"Anse"
},{
"k"
:
"1280px-Autumn-clear-water-waterfall-landscape_-_Virginia_-_ForestWander.jpg"
,
"v"
:
"Waterfall"
},{
"k"
:
"1280px-BrockenSnowedTrees.jpg"
,
"v"
:
"Snowed Trees"
},{
"k"
:
"1280px-Cedar_Breaks_National_Monument_partially.jpg"
,
"v"
:
"National Monument"
},{
"k"
:
"1280px-Parry_Peak_from_Winter_Park.jpg"
,
"v"
:
"Winter"
},{
"k"
:
"Aletschgletscher_mit_Pinus_cembra1.jpg"
,
"v"
:
"Pinus"
}],
"title"
:
"portalSkinBackground"
,
"type"
:
"portalskinbackground"
},{
"cnodes"
:
"portalSkinRules"
,
"help"
:
"portalcustom.html"
,
"id"
:
"portalSkinRules"
,
"title"
:
"portalSkinRules"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"portalCheckLogins"
,
"title"
:
"portalCheckLogins"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"portalDisplayResetPassword"
,
"title"
:
"portalDisplayResetPassword"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"portalDisplayRegister"
,
"title"
:
"portalDisplayRegister"
,
"type"
:
"bool"
}],
"id"
:
"portalButtons"
,
"title"
:
"portalButtons"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"portalRequireOldPassword"
,
"title"
:
"portalRequireOldPassword"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"hideOldPassword"
,
"title"
:
"hideOldPassword"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"mailOnPasswordChange"
,
"title"
:
"mailOnPasswordChange"
,
"type"
:
"bool"
}],
"id"
:
"passwordManagement"
,
"title"
:
"passwordManagement"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"_user"
,
"help"
:
"monitoring.html"
,
"id"
:
"portalUserAttr"
,
"title"
:
"portalUserAttr"
},{
"default"
:
0
,
"id"
:
"portalOpenLinkInNewWindow"
,
"title"
:
"portalOpenLinkInNewWindow"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"portalAntiFrame"
,
"title"
:
"portalAntiFrame"
,
"type"
:
"bool"
},{
"default"
:
60000
,
"id"
:
"portalPingInterval"
,
"title"
:
"portalPingInterval"
,
"type"
:
"int"
}],
"id"
:
"portalOther"
,
"title"
:
"portalOther"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"portalcustom.html"
,
"id"
:
"portalCustomization"
,
"title"
:
"portalCustomization"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"captcha_login_enabled"
,
"title"
:
"captcha_login_enabled"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"captcha_mail_enabled"
,
"title"
:
"captcha_mail_enabled"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"captcha_register_enabled"
,
"title"
:
"captcha_register_enabled"
,
"type"
:
"bool"
},{
"default"
:
6
,
"id"
:
"captcha_size"
,
"title"
:
"captcha_size"
,
"type"
:
"int"
}],
"help"
:
"captcha.html"
,
"id"
:
"portalCaptcha"
,
"title"
:
"portalCaptcha"
}],
"help"
:
"portal.html"
,
"id"
:
"portalParams"
,
"title"
:
"portalParams"
},{
"_nodes"
:[{
"default"
:
"Demo"
,
"id"
:
"authentication"
,
"select"
:[{
"k"
:
"Apache"
,
"v"
:
"Apache"
},{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"BrowserID"
,
"v"
:
"BrowserID (Mozilla Persona)"
},{
"k"
:
"Choice"
,
"v"
:
"authChoice"
},{
"k"
:
"CAS"
,
"v"
:
"Central Authentication Service (CAS)"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Multi"
,
"v"
:
"Multiple"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Radius"
,
"v"
:
"Radius"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"SSL"
,
"v"
:
"SSL"
},{
"k"
:
"Twitter"
,
"v"
:
"Twitter"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
},{
"k"
:
"Yubikey"
,
"v"
:
"Yubikey"
}],
"title"
:
"authentication"
,
"type"
:
"select"
},{
"default"
:
"Demo"
,
"id"
:
"userDB"
,
"select"
:[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Choice"
,
"v"
:
"authChoice"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Multi"
,
"v"
:
"Multiple"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
}],
"title"
:
"userDB"
,
"type"
:
"select"
},{
"default"
:
"Demo"
,
"id"
:
"passwordDB"
,
"select"
:[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"Choice"
,
"v"
:
"authChoice"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
}],
"title"
:
"passwordDB"
,
"type"
:
"select"
}],
"_nodes_cond"
:[{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"ADPwdMaxAge"
,
"title"
:
"ADPwdMaxAge"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"ADPwdExpireWarning"
,
"title"
:
"ADPwdExpireWarning"
,
"type"
:
"int"
}],
"help"
:
"authad.html"
,
"id"
:
"adParams"
,
"show"
:
false
,
"title"
:
"adParams"
},{
"_nodes"
:[{
"default"
:
"lmAuth"
,
"id"
:
"authChoiceParam"
,
"title"
:
"authChoiceParam"
},{
"cnodes"
:
"authChoiceModules"
,
"id"
:
"authChoiceModules"
,
"select"
:[[{
"k"
:
"Apache"
,
"v"
:
"Apache"
},{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"BrowserID"
,
"v"
:
"BrowserID (Mozilla Persona)"
},{
"k"
:
"CAS"
,
"v"
:
"Central Authentication Service (CAS)"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demo"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Radius"
,
"v"
:
"Radius"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"SSL"
,
"v"
:
"SSL"
},{
"k"
:
"Twitter"
,
"v"
:
"Twitter"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
},{
"k"
:
"Yubikey"
,
"v"
:
"Yubikey"
}],[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demo"
},{
"k"
:
"Facebook"
,
"v"
:
"Facebook"
},{
"k"
:
"Google"
,
"v"
:
"Google"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
},{
"k"
:
"OpenID"
,
"v"
:
"OpenID"
},{
"k"
:
"OpenIDConnect"
,
"v"
:
"OpenID Connect"
},{
"k"
:
"Proxy"
,
"v"
:
"Proxy"
},{
"k"
:
"Remote"
,
"v"
:
"Remote"
},{
"k"
:
"SAML"
,
"v"
:
"SAML v2"
},{
"k"
:
"Slave"
,
"v"
:
"Slave"
},{
"k"
:
"WebID"
,
"v"
:
"WebID"
}],[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"DBI"
,
"v"
:
"Database (DBI)"
},{
"k"
:
"Demo"
,
"v"
:
"Demo"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
}]],
"title"
:
"authChoiceModules"
,
"type"
:
"authChoiceContainer"
}],
"help"
:
"authchoice.html"
,
"id"
:
"choiceParams"
,
"show"
:
false
,
"title"
:
"choiceParams"
},{
"_nodes"
:[{
"default"
:
4
,
"id"
:
"apacheAuthnLevel"
,
"title"
:
"apacheAuthnLevel"
,
"type"
:
"int"
}],
"help"
:
"authapache.html"
,
"id"
:
"apacheParams"
,
"show"
:
false
,
"title"
:
"apacheParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"browserIdAuthnLevel"
,
"title"
:
"browserIdAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"browserIdAutoLogin"
,
"title"
:
"browserIdAutoLogin"
,
"type"
:
"bool"
},{
"id"
:
"browserIdVerificationURL"
,
"title"
:
"browserIdVerificationURL"
},{
"id"
:
"browserIdSiteName"
,
"title"
:
"browserIdSiteName"
},{
"id"
:
"browserIdSiteLogo"
,
"title"
:
"browserIdSiteLogo"
},{
"id"
:
"browserIdBackgroundColor"
,
"title"
:
"browserIdBackgroundColor"
}],
"help"
:
"authbrowserid.html"
,
"id"
:
"browseridParams"
,
"show"
:
false
,
"title"
:
"browseridParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"CAS_authnLevel"
,
"title"
:
"CAS_authnLevel"
,
"type"
:
"int"
},{
"id"
:
"CAS_url"
,
"title"
:
"CAS_url"
},{
"id"
:
"CAS_CAFile"
,
"title"
:
"CAS_CAFile"
},{
"id"
:
"CAS_renew"
,
"title"
:
"CAS_renew"
,
"type"
:
"bool"
},{
"id"
:
"CAS_gateway"
,
"title"
:
"CAS_gateway"
,
"type"
:
"bool"
},{
"default"
:
"/tmp/pgt.txt"
,
"id"
:
"CAS_pgtFile"
,
"title"
:
"CAS_pgtFile"
},{
"cnodes"
:
"CAS_proxiedServices"
,
"id"
:
"CAS_proxiedServices"
,
"title"
:
"CAS_proxiedServices"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"authcas.html"
,
"id"
:
"casParams"
,
"show"
:
false
,
"title"
:
"casParams"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"dbiAuthnLevel"
,
"title"
:
"dbiAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"dbiExportedVars"
,
"default"
:[],
"id"
:
"dbiExportedVars"
,
"title"
:
"dbiExportedVars"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"_nodes"
:[{
"id"
:
"dbiAuthChain"
,
"title"
:
"dbiAuthChain"
},{
"id"
:
"dbiAuthUser"
,
"title"
:
"dbiAuthUser"
},{
"id"
:
"dbiAuthPassword"
,
"title"
:
"dbiAuthPassword"
,
"type"
:
"password"
}],
"id"
:
"dbiConnectionAuth"
,
"title"
:
"dbiConnectionAuth"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"dbiUserChain"
,
"title"
:
"dbiUserChain"
},{
"id"
:
"dbiUserUser"
,
"title"
:
"dbiUserUser"
},{
"id"
:
"dbiUserPassword"
,
"title"
:
"dbiUserPassword"
,
"type"
:
"password"
}],
"id"
:
"dbiConnectionUser"
,
"title"
:
"dbiConnectionUser"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"authdbi.html#connection"
,
"id"
:
"dbiConnection"
,
"title"
:
"dbiConnection"
},{
"_nodes"
:[{
"id"
:
"dbiAuthTable"
,
"title"
:
"dbiAuthTable"
},{
"id"
:
"dbiUserTable"
,
"title"
:
"dbiUserTable"
},{
"id"
:
"dbiAuthLoginCol"
,
"title"
:
"dbiAuthLoginCol"
},{
"id"
:
"dbiAuthPasswordCol"
,
"title"
:
"dbiAuthPasswordCol"
},{
"id"
:
"dbiPasswordMailCol"
,
"title"
:
"dbiPasswordMailCol"
},{
"id"
:
"userPivot"
,
"title"
:
"userPivot"
}],
"help"
:
"authdbi.html#schema"
,
"id"
:
"dbiSchema"
,
"title"
:
"dbiSchema"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"help"
:
"authdbi.html#password"
,
"id"
:
"dbiAuthPasswordHash"
,
"title"
:
"dbiAuthPasswordHash"
}],
"help"
:
"authdbi.html#password"
,
"id"
:
"dbiPassword"
,
"title"
:
"dbiPassword"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"authdbi.html"
,
"id"
:
"dbiParams"
,
"show"
:
false
,
"title"
:
"dbiParams"
},{
"_nodes"
:[{
"cnodes"
:
"demoExportedVars"
,
"default"
:[{
"data"
:
"cn"
,
"id"
:
"demoExportedVars/cn"
,
"title"
:
"cn"
,
"type"
:
"keyText"
},{
"data"
:
"mail"
,
"id"
:
"demoExportedVars/mail"
,
"title"
:
"mail"
,
"type"
:
"keyText"
},{
"data"
:
"uid"
,
"id"
:
"demoExportedVars/uid"
,
"title"
:
"uid"
,
"type"
:
"keyText"
}],
"id"
:
"demoExportedVars"
,
"title"
:
"demoExportedVars"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"authdemo.html"
,
"id"
:
"demoParams"
,
"show"
:
false
,
"title"
:
"demoParams"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"facebookAuthnLevel"
,
"title"
:
"facebookAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"facebookExportedVars"
,
"default"
:[],
"id"
:
"facebookExportedVars"
,
"title"
:
"facebookExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"facebookAppId"
,
"title"
:
"facebookAppId"
},{
"id"
:
"facebookAppSecret"
,
"title"
:
"facebookAppSecret"
}],
"help"
:
"authfacebook.html"
,
"id"
:
"facebookParams"
,
"show"
:
false
,
"title"
:
"facebookParams"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"ldapAuthnLevel"
,
"title"
:
"ldapAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"ldapExportedVars"
,
"default"
:[{
"data"
:
"cn"
,
"id"
:
"ldapExportedVars/cn"
,
"title"
:
"cn"
,
"type"
:
"keyText"
},{
"data"
:
"mail"
,
"id"
:
"ldapExportedVars/mail"
,
"title"
:
"mail"
,
"type"
:
"keyText"
},{
"data"
:
"uid"
,
"id"
:
"ldapExportedVars/uid"
,
"title"
:
"uid"
,
"type"
:
"keyText"
}],
"id"
:
"ldapExportedVars"
,
"title"
:
"ldapExportedVars"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"default"
:
"ldap://localhost"
,
"id"
:
"ldapServer"
,
"title"
:
"ldapServer"
},{
"default"
:
389
,
"id"
:
"ldapPort"
,
"title"
:
"ldapPort"
,
"type"
:
"int"
},{
"default"
:
"dc=example,dc=com"
,
"id"
:
"ldapBase"
,
"title"
:
"ldapBase"
},{
"default"
:
""
,
"id"
:
"managerDn"
,
"title"
:
"managerDn"
},{
"default"
:
""
,
"id"
:
"managerPassword"
,
"title"
:
"managerPassword"
,
"type"
:
"password"
},{
"default"
:
120
,
"id"
:
"ldapTimeout"
,
"title"
:
"ldapTimeout"
,
"type"
:
"int"
},{
"default"
:
3
,
"id"
:
"ldapVersion"
,
"title"
:
"ldapVersion"
,
"type"
:
"int"
},{
"id"
:
"ldapRaw"
,
"title"
:
"ldapRaw"
}],
"help"
:
"authldap.html#connection"
,
"id"
:
"ldapConnection"
,
"title"
:
"ldapConnection"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"LDAPFilter"
,
"title"
:
"LDAPFilter"
},{
"id"
:
"AuthLDAPFilter"
,
"title"
:
"AuthLDAPFilter"
},{
"id"
:
"mailLDAPFilter"
,
"title"
:
"mailLDAPFilter"
},{
"default"
:
"find"
,
"id"
:
"ldapSearchDeref"
,
"select"
:[{
"k"
:
"never"
,
"v"
:
"never"
},{
"k"
:
"search"
,
"v"
:
"search"
},{
"k"
:
"find"
,
"v"
:
"find"
},{
"k"
:
"always"
,
"v"
:
"always"
}],
"title"
:
"ldapSearchDeref"
,
"type"
:
"select"
}],
"help"
:
"authldap.html#filters"
,
"id"
:
"ldapFilters"
,
"title"
:
"ldapFilters"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"ldapGroupBase"
,
"title"
:
"ldapGroupBase"
},{
"default"
:
"groupOfNames"
,
"id"
:
"ldapGroupObjectClass"
,
"title"
:
"ldapGroupObjectClass"
},{
"default"
:
"member"
,
"id"
:
"ldapGroupAttributeName"
,
"title"
:
"ldapGroupAttributeName"
},{
"default"
:
"dn"
,
"id"
:
"ldapGroupAttributeNameUser"
,
"title"
:
"ldapGroupAttributeNameUser"
},{
"default"
:
"cn"
,
"id"
:
"ldapGroupAttributeNameSearch"
,
"title"
:
"ldapGroupAttributeNameSearch"
},{
"default"
:
0
,
"id"
:
"ldapGroupRecursive"
,
"title"
:
"ldapGroupRecursive"
,
"type"
:
"bool"
},{
"default"
:
"dn"
,
"id"
:
"ldapGroupAttributeNameGroup"
,
"title"
:
"ldapGroupAttributeNameGroup"
}],
"help"
:
"authldap.html#groups"
,
"id"
:
"ldapGroups"
,
"title"
:
"ldapGroups"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"ldapPpolicyControl"
,
"title"
:
"ldapPpolicyControl"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"ldapSetPassword"
,
"title"
:
"ldapSetPassword"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"ldapChangePasswordAsUser"
,
"title"
:
"ldapChangePasswordAsUser"
,
"type"
:
"bool"
},{
"default"
:
"utf-8"
,
"id"
:
"ldapPwdEnc"
,
"title"
:
"ldapPwdEnc"
},{
"default"
:
1
,
"id"
:
"ldapUsePasswordResetAttribute"
,
"title"
:
"ldapUsePasswordResetAttribute"
,
"type"
:
"bool"
},{
"default"
:
"pwdReset"
,
"id"
:
"ldapPasswordResetAttribute"
,
"title"
:
"ldapPasswordResetAttribute"
},{
"default"
:
"TRUE"
,
"id"
:
"ldapPasswordResetAttributeValue"
,
"title"
:
"ldapPasswordResetAttributeValue"
},{
"default"
:
0
,
"id"
:
"ldapAllowResetExpiredPassword"
,
"title"
:
"ldapAllowResetExpiredPassword"
,
"type"
:
"bool"
}],
"help"
:
"authldap.html#password"
,
"id"
:
"ldapPassword"
,
"title"
:
"ldapPassword"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"authldap.html"
,
"id"
:
"ldapParams"
,
"show"
:
false
,
"title"
:
"ldapParams"
},{
"_nodes"
:[{
"id"
:
"multiAuthStack"
,
"title"
:
"multiAuthStack"
,
"type"
:
"authParamsText"
},{
"id"
:
"multiUserDBStack"
,
"title"
:
"multiUserDBStack"
,
"type"
:
"authParamsText"
}],
"help"
:
"authmulti.html"
,
"id"
:
"multiParams"
,
"show"
:
false
,
"title"
:
"multiParams"
,
"type"
:
"authParamsTextContainer"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"nullAuthnLevel"
,
"title"
:
"nullAuthnLevel"
,
"type"
:
"int"
}],
"help"
:
"authnull.html"
,
"id"
:
"nullParams"
,
"show"
:
false
,
"title"
:
"nullParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"openIdAuthnLevel"
,
"title"
:
"openIdAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"openIdExportedVars"
,
"default"
:[],
"id"
:
"openIdExportedVars"
,
"title"
:
"openIdExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"openIdSecret"
,
"title"
:
"openIdSecret"
},{
"default"
:
"0;"
,
"id"
:
"openIdIDPList"
,
"title"
:
"openIdIDPList"
,
"type"
:
"blackWhiteList"
}],
"help"
:
"authopenid.html"
,
"id"
:
"openidParams"
,
"show"
:
false
,
"title"
:
"openidParams"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"oidcAuthnLevel"
,
"title"
:
"oidcAuthnLevel"
,
"type"
:
"int"
},{
"default"
:
"openidconnectcallback"
,
"id"
:
"oidcRPCallbackGetParam"
,
"title"
:
"oidcRPCallbackGetParam"
},{
"default"
:
600
,
"id"
:
"oidcRPStateTimeout"
,
"title"
:
"oidcRPStateTimeout"
,
"type"
:
"int"
}],
"help"
:
"authopenidconnect.html"
,
"id"
:
"oidcParams"
,
"show"
:
false
,
"title"
:
"oidcParams"
},{
"_nodes"
:[{
"id"
:
"proxyAuthService"
,
"title"
:
"proxyAuthService"
},{
"id"
:
"proxySessionService"
,
"title"
:
"proxySessionService"
},{
"id"
:
"remoteCookieName"
,
"title"
:
"remoteCookieName"
},{
"default"
:
2
,
"id"
:
"proxyAuthnLevel"
,
"title"
:
"proxyAuthnLevel"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"proxyUseSoap"
,
"title"
:
"proxyUseSoap"
,
"type"
:
"bool"
}],
"help"
:
"authproxy.html"
,
"id"
:
"proxyParams"
,
"show"
:
false
,
"title"
:
"proxyParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
3
,
"id"
:
"radiusAuthnLevel"
,
"title"
:
"radiusAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"radiusSecret"
,
"title"
:
"radiusSecret"
},{
"id"
:
"radiusServer"
,
"title"
:
"radiusServer"
}],
"help"
:
"authradius.html"
,
"id"
:
"radiusParams"
,
"show"
:
false
,
"title"
:
"radiusParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"remotePortal"
,
"title"
:
"remotePortal"
},{
"id"
:
"remoteCookieName"
,
"title"
:
"remoteCookieName"
},{
"default"
:
"Lemonldap::NG::Common::Apache::Session::SOAP"
,
"id"
:
"remoteGlobalStorage"
,
"title"
:
"remoteGlobalStorage"
},{
"cnodes"
:
"remoteGlobalStorageOptions"
,
"default"
:[{
"data"
:
"http://auth.example.com/Lemonldap/NG/Common/CGI/SOAPService"
,
"id"
:
"remoteGlobalStorageOptions/ns"
,
"title"
:
"ns"
,
"type"
:
"keyText"
},{
"data"
:
"http://auth.example.com/index.pl/sessions"
,
"id"
:
"remoteGlobalStorageOptions/proxy"
,
"title"
:
"proxy"
,
"type"
:
"keyText"
}],
"id"
:
"remoteGlobalStorageOptions"
,
"title"
:
"remoteGlobalStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"authremote.html"
,
"id"
:
"remoteParams"
,
"show"
:
false
,
"title"
:
"remoteParams"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"slaveAuthnLevel"
,
"title"
:
"slaveAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"slaveExportedVars"
,
"default"
:[],
"id"
:
"slaveExportedVars"
,
"title"
:
"slaveExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"slaveUserHeader"
,
"title"
:
"slaveUserHeader"
},{
"id"
:
"slaveMasterIP"
,
"title"
:
"slaveMasterIP"
},{
"id"
:
"slaveHeaderName"
,
"title"
:
"slaveHeaderName"
},{
"id"
:
"slaveHeaderContent"
,
"title"
:
"slaveHeaderContent"
}],
"help"
:
"authslave.html"
,
"id"
:
"slaveParams"
,
"show"
:
false
,
"title"
:
"slaveParams"
},{
"_nodes"
:[{
"default"
:
5
,
"id"
:
"SSLAuthnLevel"
,
"title"
:
"SSLAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"SSLVar"
,
"title"
:
"SSLVar"
}],
"help"
:
"authssl.html"
,
"id"
:
"sslParams"
,
"show"
:
false
,
"title"
:
"sslParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"twitterAuthnLevel"
,
"title"
:
"twitterAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"twitterKey"
,
"title"
:
"twitterKey"
},{
"id"
:
"twitterSecret"
,
"title"
:
"twitterSecret"
},{
"id"
:
"twitterAppName"
,
"title"
:
"twitterAppName"
}],
"help"
:
"authtwitter.html"
,
"id"
:
"twitterParams"
,
"show"
:
false
,
"title"
:
"twitterParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"webIDAuthnLevel"
,
"title"
:
"webIDAuthnLevel"
,
"type"
:
"int"
},{
"cnodes"
:
"webIDExportedVars"
,
"default"
:[],
"id"
:
"webIDExportedVars"
,
"title"
:
"webIDExportedVars"
,
"type"
:
"keyTextContainer"
},{
"id"
:
"webIDWhitelist"
,
"title"
:
"webIDWhitelist"
}],
"help"
:
"authwebid.html"
,
"id"
:
"webidParams"
,
"show"
:
false
,
"title"
:
"webidParams"
},{
"_nodes"
:[{
"default"
:
3
,
"id"
:
"yubikeyAuthnLevel"
,
"title"
:
"yubikeyAuthnLevel"
,
"type"
:
"int"
},{
"id"
:
"yubikeyClientID"
,
"title"
:
"yubikeyClientID"
},{
"id"
:
"yubikeySecretKey"
,
"title"
:
"yubikeySecretKey"
},{
"default"
:
12
,
"id"
:
"yubikeyPublicIDSize"
,
"title"
:
"yubikeyPublicIDSize"
,
"type"
:
"int"
}],
"help"
:
"authyubikey.html"
,
"id"
:
"yubikeyParams"
,
"show"
:
false
,
"title"
:
"yubikeyParams"
,
"type"
:
"simpleInputContainer"
}],
"_nodes_filter"
:
"authParams"
,
"help"
:
"start.html#authentication_users_and_password_databases"
,
"id"
:
"authParams"
,
"title"
:
"authParams"
,
"type"
:
"authParams"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"issuerDBSAMLActivation"
,
"title"
:
"issuerDBSAMLActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/saml/"
,
"id"
:
"issuerDBSAMLPath"
,
"title"
:
"issuerDBSAMLPath"
},{
"default"
:
1
,
"id"
:
"issuerDBSAMLRule"
,
"title"
:
"issuerDBSAMLRule"
,
"type"
:
"boolOrExpr"
}],
"help"
:
"idpsaml.html"
,
"id"
:
"issuerDBSAML"
,
"title"
:
"issuerDBSAML"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"issuerDBCASActivation"
,
"title"
:
"issuerDBCASActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/cas/"
,
"id"
:
"issuerDBCASPath"
,
"title"
:
"issuerDBCASPath"
},{
"default"
:
1
,
"id"
:
"issuerDBCASRule"
,
"title"
:
"issuerDBCASRule"
,
"type"
:
"boolOrExpr"
},{
"_nodes"
:[{
"id"
:
"casAttr"
,
"title"
:
"casAttr"
},{
"cnodes"
:
"casAttributes"
,
"id"
:
"casAttributes"
,
"title"
:
"casAttributes"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"none"
,
"id"
:
"casAccessControlPolicy"
,
"select"
:[{
"k"
:
"none"
,
"v"
:
"None"
},{
"k"
:
"error"
,
"v"
:
"Display error on portal"
},{
"k"
:
"faketicket"
,
"v"
:
"Send a fake service ticket"
}],
"title"
:
"casAccessControlPolicy"
,
"type"
:
"select"
},{
"id"
:
"casStorage"
,
"title"
:
"casStorage"
},{
"cnodes"
:
"casStorageOptions"
,
"id"
:
"casStorageOptions"
,
"title"
:
"casStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"issuerDBCASOptions"
,
"title"
:
"issuerDBCASOptions"
}],
"help"
:
"idpcas.html"
,
"id"
:
"issuerDBCAS"
,
"title"
:
"issuerDBCAS"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"issuerDBOpenIDActivation"
,
"title"
:
"issuerDBOpenIDActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/openidserver/"
,
"id"
:
"issuerDBOpenIDPath"
,
"title"
:
"issuerDBOpenIDPath"
},{
"default"
:
1
,
"id"
:
"issuerDBOpenIDRule"
,
"title"
:
"issuerDBOpenIDRule"
,
"type"
:
"boolOrExpr"
},{
"_nodes"
:[{
"id"
:
"openIdIssuerSecret"
,
"title"
:
"openIdIssuerSecret"
},{
"id"
:
"openIdAttr"
,
"title"
:
"openIdAttr"
},{
"default"
:
"0;"
,
"id"
:
"openIdSPList"
,
"title"
:
"openIdSPList"
,
"type"
:
"blackWhiteList"
},{
"_nodes"
:[{
"default"
:
"cn"
,
"id"
:
"openIdSreg_fullname"
,
"title"
:
"openIdSreg_fullname"
},{
"default"
:
"uid"
,
"id"
:
"openIdSreg_nickname"
,
"title"
:
"openIdSreg_nickname"
},{
"id"
:
"openIdSreg_language"
,
"title"
:
"openIdSreg_language"
},{
"id"
:
"openIdSreg_postcode"
,
"title"
:
"openIdSreg_postcode"
},{
"default"
:
"_timezone"
,
"id"
:
"openIdSreg_timezone"
,
"title"
:
"openIdSreg_timezone"
},{
"id"
:
"openIdSreg_country"
,
"title"
:
"openIdSreg_country"
},{
"id"
:
"openIdSreg_gender"
,
"title"
:
"openIdSreg_gender"
},{
"default"
:
"mail"
,
"id"
:
"openIdSreg_email"
,
"title"
:
"openIdSreg_email"
},{
"id"
:
"openIdSreg_dob"
,
"title"
:
"openIdSreg_dob"
}],
"id"
:
"openIdSreg"
,
"title"
:
"openIdSreg"
,
"type"
:
"simpleInputContainer"
}],
"id"
:
"issuerDBOpenIDOptions"
,
"title"
:
"issuerDBOpenIDOptions"
}],
"help"
:
"idpopenid.html"
,
"id"
:
"issuerDBOpenID"
,
"title"
:
"issuerDBOpenID"
},{
"_nodes"
:[{
"default"
:
"0"
,
"id"
:
"issuerDBOpenIDConnectActivation"
,
"title"
:
"issuerDBOpenIDConnectActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/oauth2/"
,
"id"
:
"issuerDBOpenIDConnectPath"
,
"title"
:
"issuerDBOpenIDConnectPath"
},{
"default"
:
1
,
"id"
:
"issuerDBOpenIDConnectRule"
,
"title"
:
"issuerDBOpenIDConnectRule"
,
"type"
:
"boolOrExpr"
}],
"help"
:
"idpopenidconnect.html"
,
"id"
:
"issuerDBOpenIDConnect"
,
"title"
:
"issuerDBOpenIDConnect"
},{
"_nodes"
:[{
"default"
:
"0"
,
"id"
:
"issuerDBGetActivation"
,
"title"
:
"issuerDBGetActivation"
,
"type"
:
"bool"
},{
"default"
:
"^/get/"
,
"id"
:
"issuerDBGetPath"
,
"title"
:
"issuerDBGetPath"
},{
"default"
:
1
,
"id"
:
"issuerDBGetRule"
,
"title"
:
"issuerDBGetRule"
,
"type"
:
"boolOrExpr"
},{
"default"
:[],
"id"
:
"issuerDBGetParameters"
,
"title"
:
"issuerDBGetParameters"
,
"type"
:
"doubleHash"
}],
"id"
:
"issuerDBGet"
,
"title"
:
"issuerDBGet"
}],
"help"
:
"start.html#identity_provider"
,
"id"
:
"issuerParams"
,
"title"
:
"issuerParams"
},{
"_nodes"
:[{
"default"
:
""
,
"id"
:
"syslog"
,
"title"
:
"syslog"
},{
"default"
:
""
,
"id"
:
"trustedProxies"
,
"title"
:
"trustedProxies"
},{
"default"
:
"uid"
,
"id"
:
"whatToTrace"
,
"title"
:
"whatToTrace"
},{
"default"
:
"_password"
,
"id"
:
"hiddenAttributes"
,
"title"
:
"hiddenAttributes"
}],
"help"
:
"logs.html"
,
"id"
:
"logParams"
,
"title"
:
"logParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"lemonldap"
,
"id"
:
"cookieName"
,
"title"
:
"cookieName"
},{
"default"
:
"example.com"
,
"id"
:
"domain"
,
"title"
:
"domain"
},{
"default"
:
0
,
"id"
:
"cda"
,
"title"
:
"cda"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"securedCookie"
,
"select"
:[{
"k"
:
"0"
,
"v"
:
"unsecuredCookie"
},{
"k"
:
"1"
,
"v"
:
"securedCookie"
},{
"k"
:
"2"
,
"v"
:
"doubleCookie"
},{
"k"
:
"3"
,
"v"
:
"doubleCookieForSingleSession"
}],
"title"
:
"securedCookie"
,
"type"
:
"select"
},{
"default"
:
1
,
"id"
:
"httpOnly"
,
"title"
:
"httpOnly"
,
"type"
:
"bool"
},{
"id"
:
"cookieExpiration"
,
"title"
:
"cookieExpiration"
}],
"help"
:
"ssocookie.html"
,
"id"
:
"cookieParams"
,
"title"
:
"cookieParams"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"storePassword"
,
"title"
:
"storePassword"
,
"type"
:
"bool"
},{
"default"
:
72000
,
"id"
:
"timeout"
,
"title"
:
"timeout"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"timeoutActivity"
,
"title"
:
"timeoutActivity"
,
"type"
:
"int"
},{
"default"
:
60
,
"id"
:
"timeoutActivityInterval"
,
"title"
:
"timeoutActivityInterval"
,
"type"
:
"int"
},{
"cnodes"
:
"grantSessionRules"
,
"id"
:
"grantSessionRules"
,
"title"
:
"grantSessionRules"
,
"type"
:
"grantContainer"
},{
"_nodes"
:[{
"default"
:
"Apache::Session::File"
,
"id"
:
"globalStorage"
,
"title"
:
"globalStorage"
},{
"cnodes"
:
"globalStorageOptions"
,
"default"
:[{
"data"
:
"/var/lib/lemonldap-ng/sessions/"
,
"id"
:
"globalStorageOptions/Directory"
,
"title"
:
"Directory"
,
"type"
:
"keyText"
},{
"data"
:
"/var/lib/lemonldap-ng/sessions/lock/"
,
"id"
:
"globalStorageOptions/LockDirectory"
,
"title"
:
"LockDirectory"
,
"type"
:
"keyText"
},{
"data"
:
"Lemonldap::NG::Common::Apache::Session::Generate::SHA256"
,
"id"
:
"globalStorageOptions/generateModule"
,
"title"
:
"generateModule"
,
"type"
:
"keyText"
}],
"id"
:
"globalStorageOptions"
,
"title"
:
"globalStorageOptions"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"Cache::FileCache"
,
"id"
:
"localSessionStorage"
,
"title"
:
"localSessionStorage"
},{
"cnodes"
:
"localSessionStorageOptions"
,
"default"
:[{
"data"
:
3
,
"id"
:
"localSessionStorageOptions/cache_depth"
,
"title"
:
"cache_depth"
,
"type"
:
"keyText"
},{
"data"
:
"/tmp"
,
"id"
:
"localSessionStorageOptions/cache_root"
,
"title"
:
"cache_root"
,
"type"
:
"keyText"
},{
"data"
:
600
,
"id"
:
"localSessionStorageOptions/default_expires_in"
,
"title"
:
"default_expires_in"
,
"type"
:
"keyText"
},{
"data"
:
"007"
,
"id"
:
"localSessionStorageOptions/directory_umask"
,
"title"
:
"directory_umask"
,
"type"
:
"keyText"
},{
"data"
:
"lemonldap-ng-sessions"
,
"id"
:
"localSessionStorageOptions/namespace"
,
"title"
:
"namespace"
,
"type"
:
"keyText"
}],
"id"
:
"localSessionStorageOptions"
,
"title"
:
"localSessionStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"start.html#sessions_database"
,
"id"
:
"sessionStorage"
,
"title"
:
"sessionStorage"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"singleSession"
,
"title"
:
"singleSession"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"singleIP"
,
"title"
:
"singleIP"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"singleUserByIP"
,
"title"
:
"singleUserByIP"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"singleSessionUserByIP"
,
"title"
:
"singleSessionUserByIP"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"notifyDeleted"
,
"title"
:
"notifyDeleted"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"notifyOther"
,
"title"
:
"notifyOther"
,
"type"
:
"bool"
}],
"id"
:
"multipleSessions"
,
"title"
:
"multipleSessions"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"persistentStorage"
,
"title"
:
"persistentStorage"
},{
"cnodes"
:
"persistentStorageOptions"
,
"id"
:
"persistentStorageOptions"
,
"title"
:
"persistentStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"persistentSessions"
,
"title"
:
"persistentSessions"
}],
"help"
:
"sessions.html"
,
"id"
:
"sessionParams"
,
"title"
:
"sessionParams"
},{
"cnodes"
:
"reloadUrls"
,
"help"
:
"configlocation.html#configuration_reload"
,
"id"
:
"reloadUrls"
,
"title"
:
"reloadUrls"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"id"
:
"customFunctions"
,
"title"
:
"customFunctions"
},{
"default"
:
0
,
"id"
:
"portalStatus"
,
"title"
:
"portalStatus"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"restSessionServer"
,
"title"
:
"restSessionServer"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"restConfigServer"
,
"title"
:
"restConfigServer"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"soapSessionServer"
,
"title"
:
"soapSessionServer"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"soapConfigServer"
,
"title"
:
"soapConfigServer"
,
"type"
:
"bool"
},{
"id"
:
"exportedAttr"
,
"title"
:
"exportedAttr"
}],
"id"
:
"portalServers"
,
"title"
:
"portalServers"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"loginHistoryEnabled"
,
"title"
:
"loginHistoryEnabled"
,
"type"
:
"bool"
},{
"default"
:
5
,
"id"
:
"successLoginNumber"
,
"title"
:
"successLoginNumber"
,
"type"
:
"int"
},{
"default"
:
5
,
"id"
:
"failedLoginNumber"
,
"title"
:
"failedLoginNumber"
,
"type"
:
"int"
},{
"cnodes"
:
"sessionDataToRemember"
,
"id"
:
"sessionDataToRemember"
,
"title"
:
"sessionDataToRemember"
,
"type"
:
"keyTextContainer"
}],
"help"
:
"loginhistory.html"
,
"id"
:
"loginHistory"
,
"title"
:
"loginHistory"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"notification"
,
"title"
:
"notification"
,
"type"
:
"bool"
},{
"default"
:
"File"
,
"id"
:
"notificationStorage"
,
"title"
:
"notificationStorage"
},{
"cnodes"
:
"notificationStorageOptions"
,
"default"
:[{
"data"
:
"/var/lib/lemonldap-ng/notifications"
,
"id"
:
"notificationStorageOptions/dirName"
,
"title"
:
"dirName"
,
"type"
:
"keyText"
}],
"id"
:
"notificationStorageOptions"
,
"title"
:
"notificationStorageOptions"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"allusers"
,
"id"
:
"notificationWildcard"
,
"title"
:
"notificationWildcard"
},{
"id"
:
"notificationXSLTfile"
,
"title"
:
"notificationXSLTfile"
}],
"help"
:
"notifications.html"
,
"id"
:
"notifications"
,
"title"
:
"notifications"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
""
,
"id"
:
"SMTPServer"
,
"title"
:
"SMTPServer"
},{
"id"
:
"SMTPAuthUser"
,
"title"
:
"SMTPAuthUser"
},{
"id"
:
"SMTPAuthPass"
,
"title"
:
"SMTPAuthPass"
,
"type"
:
"password"
}],
"id"
:
"SMTP"
,
"title"
:
"SMTP"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"noreply@example.com"
,
"id"
:
"mailFrom"
,
"title"
:
"mailFrom"
},{
"id"
:
"mailReplyTo"
,
"title"
:
"mailReplyTo"
},{
"default"
:
"utf-8"
,
"id"
:
"mailCharset"
,
"title"
:
"mailCharset"
}],
"id"
:
"mailHeaders"
,
"title"
:
"mailHeaders"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"[LemonLDAP::NG] Your new password"
,
"id"
:
"mailSubject"
,
"title"
:
"mailSubject"
},{
"id"
:
"mailBody"
,
"title"
:
"mailBody"
,
"type"
:
"longtext"
},{
"default"
:
"[LemonLDAP::NG] Password reset confirmation"
,
"id"
:
"mailConfirmSubject"
,
"title"
:
"mailConfirmSubject"
},{
"id"
:
"mailConfirmBody"
,
"title"
:
"mailConfirmBody"
,
"type"
:
"longtext"
}],
"id"
:
"mailContent"
,
"title"
:
"mailContent"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"http://auth.example.com/mail.pl"
,
"id"
:
"mailUrl"
,
"title"
:
"mailUrl"
},{
"default"
:
"[A-Z]{3}[a-z]{5}.
\\
d{2}"
,
"id"
:
"randomPasswordRegexp"
,
"title"
:
"randomPasswordRegexp"
},{
"default"
:
0
,
"id"
:
"mailTimeout"
,
"title"
:
"mailTimeout"
,
"type"
:
"int"
},{
"default"
:
"mail"
,
"id"
:
"mailSessionKey"
,
"title"
:
"mailSessionKey"
}],
"id"
:
"mailOther"
,
"title"
:
"mailOther"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"resetpassword.html"
,
"id"
:
"passwordManagement"
,
"title"
:
"passwordManagement"
},{
"_nodes"
:[{
"default"
:
"Null"
,
"id"
:
"registerDB"
,
"select"
:[{
"k"
:
"AD"
,
"v"
:
"Active Directory"
},{
"k"
:
"Demo"
,
"v"
:
"Demonstration"
},{
"k"
:
"LDAP"
,
"v"
:
"LDAP"
},{
"k"
:
"Null"
,
"v"
:
"None"
}],
"title"
:
"registerDB"
,
"type"
:
"select"
},{
"default"
:
0
,
"id"
:
"registerTimeout"
,
"title"
:
"registerTimeout"
,
"type"
:
"int"
},{
"default"
:
"[LemonLDAP::NG] Account register confirmation"
,
"id"
:
"registerConfirmSubject"
,
"title"
:
"registerConfirmSubject"
},{
"default"
:
"[LemonLDAP::NG] Your new account"
,
"id"
:
"registerDoneSubject"
,
"title"
:
"registerDoneSubject"
}],
"help"
:
"register.html"
,
"id"
:
"register"
,
"title"
:
"register"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"^[
\\
w
\\
.
\\
-@]+$"
,
"id"
:
"userControl"
,
"title"
:
"userControl"
},{
"default"
:
0
,
"id"
:
"portalForceAuthn"
,
"title"
:
"portalForceAuthn"
,
"type"
:
"bool"
},{
"default"
:
5
,
"id"
:
"portalForceAuthnInterval"
,
"title"
:
"portalForceAuthnInterval"
,
"type"
:
"int"
},{
"id"
:
"key"
,
"title"
:
"key"
,
"type"
:
"password"
},{
"id"
:
"trustedDomains"
,
"title"
:
"trustedDomains"
},{
"default"
:
1
,
"id"
:
"useSafeJail"
,
"title"
:
"useSafeJail"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"checkXSS"
,
"title"
:
"checkXSS"
,
"type"
:
"bool"
},{
"cnodes"
:
"lwpSslOpts"
,
"id"
:
"lwpSslOpts"
,
"title"
:
"lwpSslOpts"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"default"
:
"'self'"
,
"id"
:
"cspDefault"
,
"title"
:
"cspDefault"
},{
"default"
:
"'self'"
,
"id"
:
"cspImg"
,
"title"
:
"cspImg"
},{
"default"
:
"'self'"
,
"id"
:
"cspScript"
,
"title"
:
"cspScript"
},{
"default"
:
"'self'"
,
"id"
:
"cspStyle"
,
"title"
:
"cspStyle"
},{
"default"
:
"'self'"
,
"id"
:
"cspConnect"
,
"title"
:
"cspConnect"
},{
"default"
:
"'self'"
,
"id"
:
"cspFont"
,
"title"
:
"cspFont"
}],
"help"
:
"csp.html"
,
"id"
:
"contentSecurityPolicy"
,
"title"
:
"contentSecurityPolicy"
,
"type"
:
"simpleInputContainer"
},{
"default"
:
1
,
"id"
:
"requireToken"
,
"title"
:
"requireToken"
,
"type"
:
"bool"
},{
"default"
:
120
,
"id"
:
"formTimeout"
,
"title"
:
"formTimeout"
,
"type"
:
"int"
}],
"help"
:
"security.html#configure_security_settings"
,
"id"
:
"security"
,
"title"
:
"security"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"https"
,
"title"
:
"https"
,
"type"
:
"bool"
},{
"id"
:
"port"
,
"title"
:
"port"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"useRedirectOnForbidden"
,
"title"
:
"useRedirectOnForbidden"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"useRedirectOnError"
,
"title"
:
"useRedirectOnError"
,
"type"
:
"bool"
},{
"default"
:
0
,
"id"
:
"maintenance"
,
"title"
:
"maintenance"
,
"type"
:
"bool"
}],
"help"
:
"redirections.html"
,
"id"
:
"redirection"
,
"title"
:
"redirection"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"jsRedirect"
,
"title"
:
"jsRedirect"
,
"type"
:
"boolOrExpr"
},{
"default"
:
0
,
"id"
:
"noAjaxHook"
,
"title"
:
"noAjaxHook"
,
"type"
:
"bool"
}],
"help"
:
"redirections.html#portal_redirections"
,
"id"
:
"portalRedirection"
,
"title"
:
"portalRedirection"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"_nodes"
:[{
"id"
:
"zimbraPreAuthKey"
,
"title"
:
"zimbraPreAuthKey"
},{
"id"
:
"zimbraAccountKey"
,
"title"
:
"zimbraAccountKey"
},{
"default"
:
""
,
"id"
:
"zimbraBy"
,
"select"
:[{
"k"
:
""
,
"v"
:
""
},{
"k"
:
"name"
,
"v"
:
"User name"
},{
"k"
:
"id"
,
"v"
:
"User id"
},{
"k"
:
"foreignPrincipal"
,
"v"
:
"Foreign principal"
}],
"title"
:
"zimbraBy"
,
"type"
:
"select"
},{
"id"
:
"zimbraUrl"
,
"title"
:
"zimbraUrl"
},{
"id"
:
"zimbraSsoUrl"
,
"title"
:
"zimbraSsoUrl"
}],
"help"
:
"applications/zimbra.html"
,
"id"
:
"zimbraHandler"
,
"title"
:
"zimbraHandler"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"id"
:
"sympaSecret"
,
"title"
:
"sympaSecret"
},{
"id"
:
"sympaMailKey"
,
"title"
:
"sympaMailKey"
}],
"help"
:
"applications/sympa.html"
,
"id"
:
"sympaHandler"
,
"title"
:
"sympaHandler"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"127.0.0.1:11211"
,
"id"
:
"secureTokenMemcachedServers"
,
"title"
:
"secureTokenMemcachedServers"
},{
"default"
:
60
,
"id"
:
"secureTokenExpiration"
,
"title"
:
"secureTokenExpiration"
,
"type"
:
"int"
},{
"default"
:
"uid"
,
"id"
:
"secureTokenAttribute"
,
"title"
:
"secureTokenAttribute"
},{
"default"
:
".*"
,
"id"
:
"secureTokenUrls"
,
"title"
:
"secureTokenUrls"
},{
"default"
:
"Auth-Token"
,
"id"
:
"secureTokenHeader"
,
"title"
:
"secureTokenHeader"
},{
"default"
:
1
,
"id"
:
"secureTokenAllowOnError"
,
"title"
:
"secureTokenAllowOnError"
,
"type"
:
"bool"
}],
"help"
:
"securetoken.html"
,
"id"
:
"secureTokenHandler"
,
"title"
:
"secureTokenHandler"
,
"type"
:
"simpleInputContainer"
}],
"id"
:
"specialHandlers"
,
"title"
:
"specialHandlers"
},{
"cnodes"
:
"nginxCustomHandlers"
,
"id"
:
"nginxCustomHandlers"
,
"title"
:
"nginxCustomHandlers"
,
"type"
:
"keyTextContainer"
},{
"cnodes"
:
"logoutServices"
,
"default"
:[],
"help"
:
"logoutforward.html"
,
"id"
:
"logoutServices"
,
"title"
:
"logoutServices"
,
"type"
:
"keyTextContainer"
},{
"default"
:
"; "
,
"id"
:
"multiValuesSeparator"
,
"title"
:
"multiValuesSeparator"
,
"type"
:
"authParamsText"
},{
"_nodes"
:[{
"default"
:
"get"
,
"id"
:
"infoFormMethod"
,
"select"
:[{
"k"
:
"get"
,
"v"
:
"GET"
},{
"k"
:
"post"
,
"v"
:
"POST"
}],
"title"
:
"infoFormMethod"
,
"type"
:
"select"
},{
"default"
:
"post"
,
"id"
:
"confirmFormMethod"
,
"select"
:[{
"k"
:
"get"
,
"v"
:
"GET"
},{
"k"
:
"post"
,
"v"
:
"POST"
}],
"title"
:
"confirmFormMethod"
,
"type"
:
"select"
},{
"default"
:
"get"
,
"id"
:
"redirectFormMethod"
,
"select"
:[{
"k"
:
"get"
,
"v"
:
"GET"
},{
"k"
:
"post"
,
"v"
:
"POST"
}],
"title"
:
"redirectFormMethod"
,
"type"
:
"select"
},{
"default"
:
1
,
"id"
:
"activeTimer"
,
"title"
:
"activeTimer"
,
"type"
:
"bool"
}],
"id"
:
"forms"
,
"title"
:
"forms"
}],
"help"
:
"start.html#advanced_features"
,
"id"
:
"advancedParams"
,
"title"
:
"advancedParams"
}],
"id"
:
"generalParameters"
,
"title"
:
"generalParameters"
},{
"_nodes"
:[{
"cnodes"
:
"exportedVars"
,
"default"
:[{
"data"
:
"HTTP_USER_AGENT"
,
"id"
:
"exportedVars/UA"
,
"title"
:
"UA"
,
"type"
:
"keyText"
}],
"help"
:
"exportedvars.html"
,
"id"
:
"exportedVars"
,
"title"
:
"exportedVars"
,
"type"
:
"keyTextContainer"
},{
"cnodes"
:
"macros"
,
"default"
:[],
"help"
:
"exportedvars.html#extend_variables_using_macros_and_groups"
,
"id"
:
"macros"
,
"title"
:
"macros"
,
"type"
:
"keyTextContainer"
},{
"cnodes"
:
"groups"
,
"default"
:[],
"help"
:
"exportedvars.html#extend_variables_using_macros_and_groups"
,
"id"
:
"groups"
,
"title"
:
"groups"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"variables"
,
"title"
:
"variables"
},{
"cnodes"
:
"virtualHosts"
,
"help"
:
"configvhost.html"
,
"id"
:
"virtualHosts"
,
"template"
:
"virtualHost"
,
"title"
:
"virtualHosts"
,
"type"
:
"virtualHostContainer"
},{
"_nodes"
:[{
"default"
:
"#PORTAL#/saml/metadata"
,
"id"
:
"samlEntityID"
,
"title"
:
"samlEntityID"
},{
"_nodes"
:[{
"get"
:[
"samlServicePrivateKeySig"
,
"samlServicePrivateKeySigPwd"
,
"samlServicePublicKeySig"
],
"id"
:
"samlServiceSecuritySig"
,
"title"
:
"samlServiceSecuritySig"
,
"type"
:
"RSAKey"
},{
"get"
:[
"samlServicePrivateKeyEnc"
,
"samlServicePrivateKeyEncPwd"
,
"samlServicePublicKeyEnc"
],
"id"
:
"samlServiceSecurityEnc"
,
"title"
:
"samlServiceSecurityEnc"
,
"type"
:
"RSAKey"
},{
"default"
:
0
,
"id"
:
"samlServiceUseCertificateInResponse"
,
"title"
:
"samlServiceUseCertificateInResponse"
,
"type"
:
"bool"
}],
"help"
:
"samlservice.html#security_parameters"
,
"id"
:
"samlServiceSecurity"
,
"title"
:
"samlServiceSecurity"
},{
"_nodes"
:[{
"default"
:
"mail"
,
"id"
:
"samlNameIDFormatMapEmail"
,
"title"
:
"samlNameIDFormatMapEmail"
},{
"default"
:
"mail"
,
"id"
:
"samlNameIDFormatMapX509"
,
"title"
:
"samlNameIDFormatMapX509"
},{
"default"
:
"uid"
,
"id"
:
"samlNameIDFormatMapWindows"
,
"title"
:
"samlNameIDFormatMapWindows"
},{
"default"
:
"uid"
,
"id"
:
"samlNameIDFormatMapKerberos"
,
"title"
:
"samlNameIDFormatMapKerberos"
}],
"help"
:
"samlservice.html#nameid_formats"
,
"id"
:
"samlNameIDFormatMap"
,
"title"
:
"samlNameIDFormatMap"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
2
,
"id"
:
"samlAuthnContextMapPassword"
,
"title"
:
"samlAuthnContextMapPassword"
,
"type"
:
"int"
},{
"default"
:
3
,
"id"
:
"samlAuthnContextMapPasswordProtectedTransport"
,
"title"
:
"samlAuthnContextMapPasswordProtectedTransport"
,
"type"
:
"int"
},{
"default"
:
5
,
"id"
:
"samlAuthnContextMapTLSClient"
,
"title"
:
"samlAuthnContextMapTLSClient"
,
"type"
:
"int"
},{
"default"
:
4
,
"id"
:
"samlAuthnContextMapKerberos"
,
"title"
:
"samlAuthnContextMapKerberos"
,
"type"
:
"int"
}],
"help"
:
"samlservice.html#authentication_contexts"
,
"id"
:
"samlAuthnContextMap"
,
"title"
:
"samlAuthnContextMap"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
"Example"
,
"id"
:
"samlOrganizationDisplayName"
,
"title"
:
"samlOrganizationDisplayName"
},{
"default"
:
"Example"
,
"id"
:
"samlOrganizationName"
,
"title"
:
"samlOrganizationName"
},{
"default"
:
"http://www.example.com"
,
"id"
:
"samlOrganizationURL"
,
"title"
:
"samlOrganizationURL"
}],
"help"
:
"samlservice.html#organization"
,
"id"
:
"samlOrganization"
,
"title"
:
"samlOrganization"
,
"type"
:
"simpleInputContainer"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"samlSPSSODescriptorAuthnRequestsSigned"
,
"title"
:
"samlSPSSODescriptorAuthnRequestsSigned"
,
"type"
:
"bool"
},{
"default"
:
1
,
"id"
:
"samlSPSSODescriptorWantAssertionsSigned"
,
"title"
:
"samlSPSSODescriptorWantAssertionsSigned"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect;#PORTAL#/saml/proxySingleLogout;#PORTAL#/saml/proxySingleLogoutReturn"
,
"id"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"title"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/proxySingleLogout;#PORTAL#/saml/proxySingleLogoutReturn"
,
"id"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPPost"
,
"title"
:
"samlSPSSODescriptorSingleLogoutServiceHTTPPost"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/proxySingleLogoutSOAP;"
,
"id"
:
"samlSPSSODescriptorSingleLogoutServiceSOAP"
,
"title"
:
"samlSPSSODescriptorSingleLogoutServiceSOAP"
,
"type"
:
"samlService"
}],
"id"
:
"samlSPSSODescriptorSingleLogoutService"
,
"title"
:
"samlSPSSODescriptorSingleLogoutService"
},{
"_nodes"
:[{
"default"
:
"1;0;urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact;#PORTAL#/saml/proxySingleSignOnArtifact"
,
"id"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact"
,
"title"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPArtifact"
,
"type"
:
"samlAssertion"
},{
"default"
:
"0;1;urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/proxySingleSignOnPost"
,
"id"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPPost"
,
"title"
:
"samlSPSSODescriptorAssertionConsumerServiceHTTPPost"
,
"type"
:
"samlAssertion"
}],
"id"
:
"samlSPSSODescriptorAssertionConsumerService"
,
"title"
:
"samlSPSSODescriptorAssertionConsumerService"
},{
"_nodes"
:[{
"default"
:
"1;0;urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/artifact"
,
"id"
:
"samlSPSSODescriptorArtifactResolutionServiceArtifact"
,
"title"
:
"samlSPSSODescriptorArtifactResolutionServiceArtifact"
,
"type"
:
"samlAssertion"
}],
"id"
:
"samlSPSSODescriptorArtifactResolutionService"
,
"title"
:
"samlSPSSODescriptorArtifactResolutionService"
}],
"help"
:
"samlservice.html#service_provider"
,
"id"
:
"samlSPSSODescriptor"
,
"title"
:
"samlSPSSODescriptor"
},{
"_nodes"
:[{
"default"
:
1
,
"id"
:
"samlIDPSSODescriptorWantAuthnRequestsSigned"
,
"title"
:
"samlIDPSSODescriptorWantAuthnRequestsSigned"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect;#PORTAL#/saml/singleSignOn;"
,
"id"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPRedirect"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/singleSignOn;"
,
"id"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPPost"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPPost"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact;#PORTAL#/saml/singleSignOnArtifact;"
,
"id"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnServiceHTTPArtifact"
,
"type"
:
"samlService"
}],
"id"
:
"samlIDPSSODescriptorSingleSignOnService"
,
"title"
:
"samlIDPSSODescriptorSingleSignOnService"
},{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect;#PORTAL#/saml/singleLogout;#PORTAL#/saml/singleLogoutReturn"
,
"id"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPRedirect"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST;#PORTAL#/saml/singleLogout;#PORTAL#/saml/singleLogoutReturn"
,
"id"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPPost"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutServiceHTTPPost"
,
"type"
:
"samlService"
},{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/singleLogoutSOAP;"
,
"id"
:
"samlIDPSSODescriptorSingleLogoutServiceSOAP"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutServiceSOAP"
,
"type"
:
"samlService"
}],
"id"
:
"samlIDPSSODescriptorSingleLogoutService"
,
"title"
:
"samlIDPSSODescriptorSingleLogoutService"
},{
"_nodes"
:[{
"default"
:
"1;0;urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/artifact"
,
"id"
:
"samlIDPSSODescriptorArtifactResolutionServiceArtifact"
,
"title"
:
"samlIDPSSODescriptorArtifactResolutionServiceArtifact"
,
"type"
:
"samlAssertion"
}],
"id"
:
"samlIDPSSODescriptorArtifactResolutionService"
,
"title"
:
"samlIDPSSODescriptorArtifactResolutionService"
}],
"help"
:
"samlservice.html#identity_provider"
,
"id"
:
"samlIDPSSODescriptor"
,
"title"
:
"samlIDPSSODescriptor"
},{
"_nodes"
:[{
"_nodes"
:[{
"default"
:
"urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/AA/SOAP;"
,
"id"
:
"samlAttributeAuthorityDescriptorAttributeServiceSOAP"
,
"title"
:
"samlAttributeAuthorityDescriptorAttributeServiceSOAP"
,
"type"
:
"samlService"
}],
"id"
:
"samlAttributeAuthorityDescriptorAttributeService"
,
"title"
:
"samlAttributeAuthorityDescriptorAttributeService"
}],
"help"
:
"samlservice.html#attribute_authority"
,
"id"
:
"samlAttributeAuthorityDescriptor"
,
"title"
:
"samlAttributeAuthorityDescriptor"
},{
"_nodes"
:[{
"default"
:
"lemonldapidp"
,
"id"
:
"samlIdPResolveCookie"
,
"title"
:
"samlIdPResolveCookie"
},{
"default"
:
1
,
"id"
:
"samlMetadataForceUTF8"
,
"title"
:
"samlMetadataForceUTF8"
,
"type"
:
"bool"
},{
"id"
:
"samlStorage"
,
"title"
:
"samlStorage"
},{
"cnodes"
:
"samlStorageOptions"
,
"id"
:
"samlStorageOptions"
,
"title"
:
"samlStorageOptions"
,
"type"
:
"keyTextContainer"
},{
"default"
:
600
,
"id"
:
"samlRelayStateTimeout"
,
"title"
:
"samlRelayStateTimeout"
,
"type"
:
"int"
},{
"default"
:
0
,
"id"
:
"samlUseQueryStringSpecific"
,
"title"
:
"samlUseQueryStringSpecific"
,
"type"
:
"bool"
},{
"_nodes"
:[{
"default"
:
0
,
"id"
:
"samlCommonDomainCookieActivation"
,
"title"
:
"samlCommonDomainCookieActivation"
,
"type"
:
"bool"
},{
"id"
:
"samlCommonDomainCookieDomain"
,
"title"
:
"samlCommonDomainCookieDomain"
},{
"id"
:
"samlCommonDomainCookieReader"
,
"title"
:
"samlCommonDomainCookieReader"
},{
"id"
:
"samlCommonDomainCookieWriter"
,
"title"
:
"samlCommonDomainCookieWriter"
}],
"id"
:
"samlCommonDomainCookie"
,
"title"
:
"samlCommonDomainCookie"
,
"type"
:
"simpleInputContainer"
}],
"help"
:
"samlservice.html#advanced"
,
"id"
:
"samlAdvanced"
,
"title"
:
"samlAdvanced"
}],
"help"
:
"samlservice.html"
,
"id"
:
"samlServiceMetaData"
,
"title"
:
"samlServiceMetaData"
},{
"cnodes"
:
"samlIDPMetaDataNodes"
,
"id"
:
"samlIDPMetaDataNodes"
,
"template"
:
"samlIDPMetaDataNode"
,
"title"
:
"samlIDPMetaDataNodes"
,
"type"
:
"samlIDPMetaDataNodeContainer"
},{
"cnodes"
:
"samlSPMetaDataNodes"
,
"help"
:
"authsaml.html"
,
"id"
:
"samlSPMetaDataNodes"
,
"template"
:
"samlSPMetaDataNode"
,
"title"
:
"samlSPMetaDataNodes"
,
"type"
:
"samlSPMetaDataNodeContainer"
},{
"_nodes"
:[{
"default"
:
"http://auth.example.com"
,
"id"
:
"oidcServiceMetaDataIssuer"
,
"title"
:
"oidcServiceMetaDataIssuer"
},{
"_nodes"
:[{
"default"
:
"authorize"
,
"id"
:
"oidcServiceMetaDataAuthorizeURI"
,
"title"
:
"oidcServiceMetaDataAuthorizeURI"
},{
"default"
:
"token"
,
"id"
:
"oidcServiceMetaDataTokenURI"
,
"title"
:
"oidcServiceMetaDataTokenURI"
},{
"default"
:
"userinfo"
,
"id"
:
"oidcServiceMetaDataUserInfoURI"
,
"title"
:
"oidcServiceMetaDataUserInfoURI"
},{
"default"
:
"jwks"
,
"id"
:
"oidcServiceMetaDataJWKSURI"
,
"title"
:
"oidcServiceMetaDataJWKSURI"
},{
"default"
:
"register"
,
"id"
:
"oidcServiceMetaDataRegistrationURI"
,
"title"
:
"oidcServiceMetaDataRegistrationURI"
},{
"default"
:
"logout"
,
"id"
:
"oidcServiceMetaDataEndSessionURI"
,
"title"
:
"oidcServiceMetaDataEndSessionURI"
},{
"default"
:
"checksession.html"
,
"id"
:
"oidcServiceMetaDataCheckSessionURI"
,
"title"
:
"oidcServiceMetaDataCheckSessionURI"
}],
"id"
:
"oidcServiceMetaDataEndPoints"
,
"title"
:
"oidcServiceMetaDataEndPoints"
,
"type"
:
"simpleInputContainer"
},{
"cnodes"
:
"oidcServiceMetaDataAuthnContext"
,
"default"
:[{
"data"
:
1
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-1"
,
"title"
:
"loa-1"
,
"type"
:
"keyText"
},{
"data"
:
2
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-2"
,
"title"
:
"loa-2"
,
"type"
:
"keyText"
},{
"data"
:
3
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-3"
,
"title"
:
"loa-3"
,
"type"
:
"keyText"
},{
"data"
:
4
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-4"
,
"title"
:
"loa-4"
,
"type"
:
"keyText"
},{
"data"
:
5
,
"id"
:
"oidcServiceMetaDataAuthnContext/loa-5"
,
"title"
:
"loa-5"
,
"type"
:
"keyText"
}],
"id"
:
"oidcServiceMetaDataAuthnContext"
,
"title"
:
"oidcServiceMetaDataAuthnContext"
,
"type"
:
"keyTextContainer"
},{
"_nodes"
:[{
"get"
:[
"oidcServicePrivateKeySig"
,
"oidcServicePublicKeySig"
],
"id"
:
"oidcServiceMetaDataKeys"
,
"title"
:
"oidcServiceMetaDataKeys"
,
"type"
:
"RSAKeyNoPassword"
},{
"id"
:
"oidcServiceKeyIdSig"
,
"title"
:
"oidcServiceKeyIdSig"
},{
"default"
:
"0"
,
"id"
:
"oidcServiceAllowDynamicRegistration"
,
"title"
:
"oidcServiceAllowDynamicRegistration"
,
"type"
:
"bool"
},{
"default"
:
"1"
,
"id"
:
"oidcServiceAllowAuthorizationCodeFlow"
,
"title"
:
"oidcServiceAllowAuthorizationCodeFlow"
,
"type"
:
"bool"
},{
"default"
:
"0"
,
"id"
:
"oidcServiceAllowImplicitFlow"
,
"title"
:
"oidcServiceAllowImplicitFlow"
,
"type"
:
"bool"
},{
"default"
:
"0"
,
"id"
:
"oidcServiceAllowHybridFlow"
,
"title"
:
"oidcServiceAllowHybridFlow"
,
"type"
:
"bool"
}],
"id"
:
"oidcServiceMetaDataSecurity"
,
"title"
:
"oidcServiceMetaDataSecurity"
},{
"_nodes"
:[{
"id"
:
"oidcStorage"
,
"title"
:
"oidcStorage"
},{
"cnodes"
:
"oidcStorageOptions"
,
"id"
:
"oidcStorageOptions"
,
"title"
:
"oidcStorageOptions"
,
"type"
:
"keyTextContainer"
}],
"id"
:
"oidcServiceMetaDataSessions"
,
"title"
:
"oidcServiceMetaDataSessions"
}],
"help"
:
"openidconnectservice.html#service_configuration"
,
"id"
:
"oidcServiceMetaData"
,
"title"
:
"oidcServiceMetaData"
},{
"cnodes"
:
"oidcOPMetaDataNodes"
,
"help"
:
"authopenidconnect.html#declare_the_openid_connect_provider_in_llng"
,
"id"
:
"oidcOPMetaDataNodes"
,
"title"
:
"oidcOPMetaDataNodes"
,
"type"
:
"oidcOPMetaDataNodeContainer"
},{
"cnodes"
:
"oidcRPMetaDataNodes"
,
"help"
:
"idpopenidconnect.html#configuration_of_relying_party_in_llng"
,
"id"
:
"oidcRPMetaDataNodes"
,
"title"
:
"oidcRPMetaDataNodes"
,
"type"
:
"oidcRPMetaDataNodeContainer"
}]
\ No newline at end of file
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm
View file @
23455138
...
...
@@ -7,8 +7,16 @@ package Lemonldap::NG::Portal::Auth::_WebForm;
use
strict
;
use
Mouse
;
use
Lemonldap::NG::Portal::Main::
Constants
qw(PE_OK PE_FIRSTACCESS PE_FORMEMPTY PE_PASSWORDFORMEMPTY PE_CAPTCHAEMPTY PE_CAPTCHAERROR)
;
use
Lemonldap::NG::Portal::Main::
Constants
qw(
PE_CAPTCHAEMPTY
PE_CAPTCHAERROR
PE_FIRSTACCESS
PE_FORMEMPTY