Hi Everybody,

I've some problems with OTRS and Agent LDAP logins.
I configured the following lines in $OTRS/Kernel/Config.pm

---cut---
    # This is the auth. module againt the otrs db
    # $Self->{'AuthModule'} = 'Kernel::System::Auth::DB';

    # This is an example configuration for an LDAP auth. backend.
    # (take care that Net::LDAP is installed!)
        $Self->{'AuthModule'} = 'Kernel::System::Auth::LDAP';
        $Self->{'AuthModule::LDAP::Host'} = 'ldap.ame.loc';
        $Self->{'AuthModule::LDAP::BaseDN'} = 'dc=ame,dc=de';
        $Self->{'AuthModule::LDAP::UID'} = 'uid';

    # Check if the user is allowed to auth in a posixGroup
    # (e. g. user needs to be in a group xyz to use otrs)
        $Self->{'AuthModule::LDAP::GroupDN'} =
'cn=support,ou=Groups,ou=NSS,dc=ame,dc=de';
        $Self->{'AuthModule::LDAP::AccessAttr'} = 'memberUid';
    # for ldap posixGroups objectclass (just uid)
        $Self->{'AuthModule::LDAP::UserAttr'} = 'UID';
    # for non ldap posixGroups objectclass (with full user dn)
        $Self->{'AuthModule::LDAP::UserAttr'} = 'DN';

    # The following is valid but would only be necessary if the
    # anonymous user do NOT have permission to read from the LDAP tree
        $Self->{'AuthModule::LDAP::SearchUserDN'} = 'binddn';
        $Self->{'AuthModule::LDAP::SearchUserPw'} = 'bindpw';
---cut---

The system is running under Debian 3.0r1 with MySQL, the CPAN LDAP
Module is installed and I do not see any incoming LDAP requests on the
LDAP logfile.

I also tried to change LDAP::Host against the direct IP adress, without
any changes.

It seems to me that the Config.pm is somehow "overwritten" by some other
Module as some other configurations also have no effects.
For example I have configured the system as ASP variant and configured
the following, as said in the documentation, but I can still move
through the AllQueues etc.
---cut---
        $Self->{MoveInToAllQueues} = 0;
        $Self->{ChangeOwnerToEveryone} = 0;
        $Self->{ShowCustomerSelection} = 0;
        $Self->{PhoneViewASP} = 1;
---cut---

Anybody any idea?!?

Thanx,

Matthias

-- 
Matthias Eichler <[EMAIL PROTECTED]>
AME Aigner Media & Entertainment GmbH

_______________________________________________
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs

Reply via email to