* Added the necessary glue code for importing LDAP attributes into a user's vCard...
[citadel.git] / citadel / citadel_ldap.h
1 /*
2  * $Id$
3  *
4  * Configuration for LDAP authentication.  Most of this stuff gets pulled out of our site config file.
5  */
6
7 int CtdlTryUserLDAP(char *username, char *found_dn, int found_dn_size, char *fullname, int fullname_size, uid_t *found_uid);
8 int CtdlTryPasswordLDAP(char *user_dn, char *password);
9 int Ctdl_LDAP_to_vCard(char *ldap_dn, struct vCard *v);