I recently set up OTRS 3.0.6 to use LDAP for authentication. So far, authentication from LDAP works fine. The issue I am having is that I would like to pull the "company" LDAP attribute and map it to "CustomerID" so that I can associate users from a particular company with only their tickets. I have the following configured in my Config.pm:
Code: Select all
$Self->{CustomerUser} = {
...
CustomerID => 'company',
CustomerUserSearchFields => ['cn', 'givenname', 'mail', 'company'],
...
Map => [
...
[ 'UserCustomerID', 'CustomerID', 'company', 1, 1, 'var', '', 0],
...
]
...
};
Thanks,
-m