[otrs-cvs] CVS: otrs/Kernel/Config Defaults.pm,1.238,1.239
cvs-log at otrs.org
cvs-log at otrs.org
Tue Jul 18 17:55:22 CEST 2006
Update of /home/cvs/otrs/Kernel/Config
In directory lancelot:/tmp/cvs-serv24251/Kernel/Config
Modified Files:
Defaults.pm
Log Message:
added UserSyncLDAPGroupsDefination and UserSyncLDAPRolesDefination for permission sync if LDAP auth is used
Index: Defaults.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Config/Defaults.pm,v
retrieving revision 1.238
retrieving revision 1.239
diff -C2 -r1.238 -r1.239
*** Defaults.pm 7 Jul 2006 12:52:06 -0000 1.238
--- Defaults.pm 18 Jul 2006 14:55:20 -0000 1.239
***************
*** 348,351 ****
--- 348,389 ----
# 'users',
# ];
+ # UserSyncLDAPGroupsDefination
+ # (If "LDAP" was selected for AuthModule and you want to sync LDAP
+ # groups to otrs groups, define the following.)
+ # $Self->{'UserSyncLDAPGroupsDefination'} = {
+ # # ldap group
+ # 'cn=agent,o=otrs' => {
+ # # otrs group
+ # 'admin' => {
+ # # permission
+ # rw => 1,
+ # ro => 1,
+ # },
+ # 'faq' => {
+ # rw => 0,
+ # ro => 1,
+ # },
+ # },
+ # 'cn=agent2,o=otrs' => {
+ # 'users' => {
+ # rw => 1,
+ # ro => 1,
+ # },
+ # }
+ # };
+ # UserSyncLDAPRolesDefination
+ # (If "LDAP" was selected for AuthModule and you want to sync LDAP
+ # groups to otrs roles, define the following.)
+ # $Self->{'UserSyncLDAPRolesDefination'} = {
+ # # ldap group
+ # 'cn=agent,o=otrs' => {
+ # # otrs role
+ # 'role1' => 1,
+ # 'role2' => 0,
+ # },
+ # 'cn=agent2,o=otrs' => {
+ # 'role3' => 1,
+ # }
+ # };
# UserTable
More information about the cvs-log
mailing list