ich versuche gerade meine Kundendaten per LDAP anzubinden. Nun habe ich die Informationen zwar sehr schön in LDAP vorliegen, doch nicht auf dem Standart-Port. Aber das ist ja kein Problem, ich ändere sie einfach in der Config:
Code: Select all
$Self->{CustomerUser} = {
Name => 'Kundendaten',
Module => 'Kernel::System::CustomerUser::LDAP',
Params => {
# ldap host
Host => 'WWW.XXX.YYY.ZZZ',
# ldap base dn
BaseDN => 'dc=meta,ou=Daten',
# search scope (one|sub)
SSCOPE => 'sub',
# The following is valid but would only be necessary if the
# anonymous user does NOT have permission to read from the LDAP tree
#UserDN => '',
#UserPw => '',
# in case you want to add always one filter to each ldap query, use
# this option. e. g. AlwaysFilter => '(mail=*)' or AlwaysFilter => '(objectclass=user)'
AlwaysFilter => '(objectclass=user)',
# if your frontend is e. g. iso-8859-1 and the charset of your
# ldap server is utf-8, use this options (if not, ignore it)
SourceCharset => 'utf-8',
DestCharset => 'utf-8',
# Net::LDAP new params (if needed - for more info see perldoc Net::LDAP)
Params => {
port => 712,
timeout => 120,
async => 0,
version => 3,
},
},
:
:
:

Und jetzt?
Niels