[otrs-cvs] CVS: otrs/Kernel/Config Defaults.pm,1.239,1.240
cvs-log at otrs.org
cvs-log at otrs.org
Wed Aug 2 16:54:29 CEST 2006
Update of /home/cvs/otrs/Kernel/Config
In directory lancelot:/tmp/cvs-serv6230/Kernel/Config
Modified Files:
Defaults.pm
Log Message:
add ldap attribute to groups/roles sync config
Index: Defaults.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Config/Defaults.pm,v
retrieving revision 1.239
retrieving revision 1.240
diff -C2 -r1.239 -r1.240
*** Defaults.pm 18 Jul 2006 14:55:20 -0000 1.239
--- Defaults.pm 2 Aug 2006 13:54:27 -0000 1.240
***************
*** 370,374 ****
# ro => 1,
# },
! # }
# };
# UserSyncLDAPRolesDefination
--- 370,374 ----
# ro => 1,
# },
! # }
# };
# UserSyncLDAPRolesDefination
***************
*** 384,389 ****
--- 384,437 ----
# 'cn=agent2,o=otrs' => {
# 'role3' => 1,
+ # }
+ # };
+ # UserSyncLDAPAttibuteGroupsDefination
+ # (If "LDAP" was selected for AuthModule and you want to sync LDAP
+ # attributes to otrs groups, define the following.)
+ # $Self->{'UserSyncLDAPAttibuteGroupsDefination'} = {
+ # # ldap attribute
+ # 'OtrsAttribute' => {
+ # # ldap attribute value
+ # 'AttributeValue1' => {
+ # # otrs group
+ # 'admin' => {
+ # # permission
+ # rw => 1,
+ # ro => 1,
+ # },
+ # 'faq' => {
+ # rw => 0,
+ # ro => 1,
+ # },
+ # },
+ # },
+ # 'OtrsAttribute2' => {
+ # 'AttributeValue' => {
+ # 'users' => {
+ # rw => 1,
+ # ro => 1,
+ # },
+ # },
# }
# };
+ # UserSyncLDAPAttibuteRolesDefination
+ # (If "LDAP" was selected for AuthModule and you want to sync LDAP
+ # attributes to otrs roles, define the following.)
+ # $Self->{'UserSyncLDAPAttibuteRolesDefination'} = {
+ # # ldap attribute
+ # 'OtrsAttribute' => {
+ # # ldap attribute value
+ # 'AttributeValue1' => {
+ # # otrs role
+ # 'role1' => 1,
+ # 'role2' => 1,
+ # },
+ # },
+ # 'OtrsAttribute2' => {
+ # 'AttributeValue1' => {
+ # 'role3' => 1,
+ # },
+ # },
+ # };
# UserTable
More information about the cvs-log
mailing list