Hi Luke,
The LDAPPeopleRetriever allows you to specify additional LDAP filters that are applied to the search query. In sites/YOURSITE/config/people/feeds.ini you can do the following to add filters:
LDAP_FILTER[] = "(someAttribute=someValue)" # Records where the 'someAttribute' attribute is set to 'someValue'
LDAP_FILTER[] = "(|(attr1=val1)(attr2=val2))" # Records where the 'attr1' attribute is set to 'val1' OR the 'attr2' attribute is set to 'va2'.
LDAP_FILTER[] = "(requiredAttribute=*)" # Records where the 'requiredAttribute' attribute is set to any value.
The LDAP_FILTER option is an array of LDAP filters that will be AND-ed together with the search query. The value is a standard LDAP query filter. If you do "(manager=*)" this will match records that have any value set for the 'manager' attribute. You may add as many LDAP_FILTER options as you need.
-Eebs