Still trying to get to a solution...
I'm looking for UserSyncGroupsDefinition saying that all agents belonging to my LDAP group 'CN=OTRS_Agents,OU=Liste e Gruppi,DC=iks,DC=local' should have specific permissions.
I commented the previous "UserSyncInitialGroups" and this is now my code (that still does not work as expected...)
Code: Select all
# AuthSyncModule::LDAP::UserSyncGroupsDefinition
# (If "LDAP" was selected for AuthModule and you want to sync LDAP
# groups to otrs groups, define the following.)
$Self->{'AuthSyncModule::LDAP::UserSyncGroupsDefinition'} = {
# ldap group
'CN=OTRS_Agents,OU=Liste e Gruppi,DC=iks,DC=local' => {
# otrs group
'users' => {
# permission
rw => 0,
ro => 1,
},
'faq' => {
rw => 1,
ro => 1,
},
'stats' => {
rw => 1,
ro => 1,
},
},
};
may you help me, please... perhaps someone who has already used UserSyncGroupsDefinition with success.
Thank you,
Giulio
OTRS 6.0.x on CentOS 7.x with MariaDB 10.2.x database connected to an Active Directory for Agents and Customers.
ITSM and FAQ modules installed.