LDAP: offer option to disable SSL certificate checks. Works around problems with self-signed certificates, for example. However, the best and right way to solve it is always to import the LDAP server cert to the owncloud server, so you it for testing only.
<p><inputtype="checkbox"id="ldap_nocase"name="ldap_nocase"value="1"<?phpif(isset($_['ldap_nocase'])&&($_['ldap_nocase']))echo' checked';?>><labelfor="ldap_nocase"><?phpecho$l->t('Case insensitve LDAP server (Windows)');?></label></p>
<p><inputtype="checkbox"id="ldap_turn_off_cert_check"name="ldap_turn_off_cert_check"title="<?phpecho$l->t('If connection only works with this option, import the LDAP server\'s SSL certificate in your ownCloud server.');?>"value="1"<?phpif($_['ldap_turn_off_cert_check'])echo' checked';?>><labelfor="ldap_turn_off_cert_check"><?phpecho$l->t('Turn off SSL certificate validation.');?></label><small><?phpecho$l->t('Not recommended, use for testing only.');?></small></p>
<p><labelfor="ldap_display_name"><?phpecho$l->t('Display Name Field');?></label><inputtype="text"id="ldap_display_name"name="ldap_display_name"value="<?phpecho$_['ldap_display_name'];?>"/>
<small><?phpecho$l->t('Currently the display name field needs to be the same you matched %%uid against in the filter above, because ownCloud doesn\'t distinguish between user id and user name.');?></small></p>
<p><labelfor="ldap_group_display_name"><?phpecho$l->t('Group Display Name Field');?></label><inputtype="text"id="ldap_group_display_name"name="ldap_group_display_name"value="<?phpecho$_['ldap_group_display_name'];?>"/></p>