Hello!! A little feedback about this wonderful plugin 
I installed it this morning (this morning here in Spain) and I like the different options to setup it but, for me, is a little confused fill the correct boxes to run it.
Actually we use openLDAP server (we have AD too but we don use it to validate the user under FOG), then I dont know which boxes need to fill to run the plugin well. The old version (RC-10) was easy (although I need to change some things in the code to run it well).
Questions:
Admin groups and Mobile groups, what these parameters are for? ¿purpose?
If I have a LDAP server, Bind DN and Bind password, is necessary fill these parameters?
Bugs:
In line 370 from ldap.class.php file:
$userDN = sprintf(
'%s=%s,%s',
$userNamAttr,
$user,
$userSearchDN
);
The $userNamAttr and $userSearchDN are empty, I dont know the reason, I have changed it to:
$userDN = sprintf(
'%s=%s,%s',
strtolower($this->get('userNamAttr')),
$user,
strtolower($this->get('searchDN'))
);
When the code tries to do the bind, always return me false.