[Citadel Development] Re: Ldap tweak for you

2014-03-17 Thread IGnatius T Foobar
(And of course I've added a credit for you in the documentation page on the web site)

[Citadel Development] Re: Ldap tweak for you

2014-03-17 Thread harryc
Your interpretation is correct.   Thanks for the note in the log.  Notice this addresses the problems of 'ldap to vcard'.   Set up ldap, export the citadel addresses as vcards.  Done.      

[Citadel Development] Re: Ldap tweak for you

2014-03-15 Thread IGnatius T Foobar
Ok, so if I'm reading this correctly, this is a fully built version of the code that is supposed to take all of the user information learned out of LDAP and uses it to populate the vCard? Thanks for writing it. This was one of those someday things.

[Citadel Development] Re: Ldap tweak for you

2014-03-14 Thread harryc
The code above is a replacement for this in ldap.c   /* * Learn LDAP attributes and stuff them into the vCard. * Returns nonzero if we changed anything. */int Ctdl_LDAP_to_vCard(char *ldap_dn, struct vCard *v){    int changed_something = 0;    if (!ldap_dn) return(0);    if (!v)