More suggested changes

This commit is contained in:
Keval Kapdee 2024-01-03 18:23:54 +00:00
parent cdcefe0389
commit 5295e912bb
3 changed files with 8 additions and 7 deletions

View File

@ -615,18 +615,15 @@ Enable or disable `getmail`.
##### OAUTH2_CLIENT_ID ##### OAUTH2_CLIENT_ID
- **empty** => verySecretId
- => Specify the OAuth2 client ID - => Specify the OAuth2 client ID
##### OAUTH2_CLIENT_SECRET ##### OAUTH2_CLIENT_SECRET
- **empty** => verySecretSecret
- => Specify the OAuth2 client secret - => Specify the OAuth2 client secret
##### OAUTH2_INTROSPECTION_URL ##### OAUTH2_INTROSPECTION_URL
- **empty** => https://oauth2.example.com/userinfo/ - => Specify the user info endpoint URL of the oauth2 provider. E.g. `https://oauth2.example.com/userinfo/`, where the trailing slash is MANDATORY (at least for Authentik)
- => Specify the user info endpoint URL of the oauth2 provider. The trailing slash is MANDATORY (at least for Authentik)
#### LDAP #### LDAP
##### LDAP_START_TLS ##### LDAP_START_TLS

View File

@ -1,3 +1,3 @@
client_id = verySecretId client_id =
client_secret = verySecretSecret client_secret =
introspection_url = https://oauth2.example.com/userinfo/ introspection_url =

View File

@ -62,6 +62,10 @@ function _register_functions() {
_register_setup_function '_setup_ldap' _register_setup_function '_setup_ldap'
;; ;;
( 'OIDC' )
_dms_panic__fail_init 'OIDC user account provisioning - it is not yet implemented'
;;
( * ) ( * )
_dms_panic__invalid_value "'${ACCOUNT_PROVISIONER}' is not a valid value for ACCOUNT_PROVISIONER" _dms_panic__invalid_value "'${ACCOUNT_PROVISIONER}' is not a valid value for ACCOUNT_PROVISIONER"
;; ;;