LDAP auth with group

Hello!
I need to give access to users who are a member of LDAP groups. While using only one name of the group is working, I don’t know how to specify list/several groups in the “group” parameter.
Here is my setting:

Set($ExternalSettings, {
‘My_LDAP’ => {
‘type’ => ‘ldap’,
‘server’ => ‘pages.corp.com’,
# By not passing ‘user’ and ‘pass’ we are using an anonymous
# bind, which some servers to not allow
‘base’ => ‘ou=pages,o=corp.com’,
‘filter’ => ‘(objectClass=corpPerson)’,

Need specify multiple groups here:

   'group'   =>  'cn=Requesters,ou=memberlist,ou=corpgroups,o=corp.com',

‘group_attr’ => ‘uniqueMember’,
# Users are allowed to log in via email address
‘attr_match_list’ => [
‘Name’,
‘EmailAddress’,
],
# Import the following properties of the user from LDAP upon
# login
‘attr_map’ => {
‘Name’ => ‘mail’,
‘EmailAddress’ => ‘mail’,
‘RealName’ => ‘cn’
},
},
} );

I don’t think the LDAP external auth stuff could do much with matching multiple groups (at least there isn’t much in the documentation about it). One option could be to have multiple LDAP external server entries, with the same server/admin username/password/etc in each but a different LDAP group specified.

You could try to use MemberOf in your LDAP-Filter

Or use LdapImport to sync LDAP Groups to RT and configure your ACLs in RT