parent
178d5f8283
commit
a119ed1589
|
@ -34,7 +34,9 @@ class DefaultAuthenticationDomainConfigForm extends Form
|
|||
'label' => $this->translate('Default Login Domain'),
|
||||
'description' => $this->translate(
|
||||
'If a user logs in without specifying any domain (e.g. "jdoe" instead of "jdoe@example.com"),'
|
||||
. ' this default domain will be assumed.'
|
||||
. ' this default domain will be assumed for the user. Note that if none your LDAP authentication'
|
||||
. ' backends are configured to be responsible for this domain or if none of your authentication'
|
||||
. ' backends holds usernames with the domain part, users will not be able to login.'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
|
|
@ -225,7 +225,13 @@ class LdapBackendForm extends Form
|
|||
array(
|
||||
'label' => $this->translate('Domain'),
|
||||
'description' => $this->translate(
|
||||
'The domain the LDAP server is responsible for.'
|
||||
'The domain the LDAP server is responsible for upon authentication.'
|
||||
. ' Note that if you specify a domain here,'
|
||||
. ' the LDAP backend only authenticates users who specify a domain upon login.'
|
||||
. ' If the domain of the user matches the domain configured here, this backend is responsible for'
|
||||
. ' authenticating the user based on the username without the domain part.'
|
||||
. ' If your LDAP backend holds usernames with a domain part or if it is not necessary in your setup'
|
||||
. ' to authenticate users based on their domains, leave this field empty.'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue