Hi Guys,
I'm trying to get my permissions right. I have a DN string like this:
cn=Foo Bar,ou=Governance,ou=Organisation,o=Business,c=CH
Now I want to filter the Attribute in my SAML-Token only for the "ou=Governance" part of it:
$wgSamlGroupMap = array(
'trusted' => array(
'DN' => array('ou=Governance'),
),
);
Are there any available Wildcards? That I cold even filter by: "ou=Governance*o=Business"?
Is that possible or does it have to match exactly?
Thank you for your answers!