fix bug 4773, 'remove obsolescent AC_C_CONST'
[claws.git] / src / ldapupdate.c
blob50bc547f947158265f9bc65844944bb13a3de337
1 /*
2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 2003-2018 Michael Rasmussen and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * Functions necessary to access LDAP servers.
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #include "claws-features.h"
26 #endif
28 #ifdef USE_LDAP
30 #include <glib.h>
31 #include <glib/gi18n.h>
32 #include <sys/time.h>
33 #include <string.h>
35 #include "ldapupdate.h"
36 #include "mgutils.h"
37 #include "addritem.h"
38 #include "addrcache.h"
39 #include "ldapctrl.h"
40 #include "ldapquery.h"
41 #include "ldapserver.h"
42 #include "ldaputil.h"
43 #include "utils.h"
44 #include "adbookbase.h"
45 #include "editaddress_other_attributes_ldap.h"
46 #include "log.h"
48 /**
49 * Structure to hold user defined attributes
50 * from contacts
52 typedef struct _AttrKeyValue AttrKeyValue;
53 struct _AttrKeyValue {
54 gchar *key;
55 gchar *value;
58 /**
59 * Structure to hold contact information.
60 * Each addressbook will have 0..N contacts.
62 typedef struct _EmailKeyValue EmailKeyValue;
63 struct _EmailKeyValue {
64 gchar *mail;
65 gchar *alias;
66 gchar *remarks;
69 /**
70 * Structure to hold information about RDN.
72 typedef struct _Rdn Rdn;
73 struct _Rdn {
74 gchar *attribute;
75 gchar *value;
76 gchar *new_dn;
79 /**
80 * Retrieve address group item for update.
81 * \param group Group to print.
82 * \param array GHashTAble of item_group, or <i>NULL</i> if none created.
84 void ldapsvr_retrieve_item_group(ItemGroup *group, GHashTable *array) {
85 /* Not implemented in this release */
86 cm_return_if_fail(group != NULL);
89 /**
90 * Create an initial EmailKeyValue structure
91 * \return empty structure
93 EmailKeyValue *emailkeyvalue_create() {
94 EmailKeyValue *buf;
96 buf = g_new0(EmailKeyValue, 1);
97 buf->alias = NULL;
98 buf->mail = NULL;
99 buf->remarks = NULL;
100 return buf;
104 * Create an initial AttrKeyValue structure
105 * \return empty structure
107 AttrKeyValue *attrkeyvalue_create() {
108 AttrKeyValue *buf;
110 buf = g_new0(AttrKeyValue, 1);
111 buf->key = NULL;
112 buf->value = NULL;
113 return buf;
117 * Free created AttrKeyValue structure
118 * \param akv AttrKeyValue structure to free
120 void attrkeyvalue_free(AttrKeyValue *akv) {
121 if (akv->key) {
122 g_free(akv->key);
123 akv->key = NULL;
125 if (akv->value) {
126 g_free(akv->value);
127 akv->value = NULL;
129 g_free(akv);
130 akv = NULL;
134 * Retrieve E-Mail address object for update.
135 * \param item ItemEmail to update.
136 * \return object, or <i>NULL</i> if none created.
138 EmailKeyValue *ldapsvr_retrieve_item_email(ItemEMail *item) {
139 EmailKeyValue *newItem;
140 cm_return_val_if_fail(item != NULL, NULL);
141 newItem = emailkeyvalue_create();
142 newItem->alias = g_strdup(ADDRITEM_NAME(item));
143 newItem->mail = g_strdup(item->address);
144 newItem->remarks = g_strdup(item->remarks);
145 return newItem;
149 * Retrieve user attribute object for update.
150 * \param item UserAttribute to update.
151 * \return object, or <i>NULL</i> if none created.
153 AttrKeyValue *ldapsvr_retrieve_attribute(UserAttribute *item) {
154 AttrKeyValue *newItem;
155 cm_return_val_if_fail(item != NULL, NULL);
156 newItem = attrkeyvalue_create();
157 newItem->key = g_strdup(item->name);
158 newItem->value = g_strdup(item->value);
159 return newItem;
163 * Retrieve person object for update.
164 * \param person ItemPerson to update.
165 * \param array GHashTable with user input.
166 * \return false if update is not needed, or true if update is needed.
168 gboolean ldapsvr_retrieve_item_person(ItemPerson *person, GHashTable *array) {
169 GList *node, *attr;
171 cm_return_val_if_fail(person != NULL, FALSE);
172 switch (person->status) {
173 case NONE: return FALSE;
174 case ADD_ENTRY: g_hash_table_insert(array, "status", "new"); break;
175 case UPDATE_ENTRY: g_hash_table_insert(array, "status", "update"); break;
176 case DELETE_ENTRY: g_hash_table_insert(array, "status", "delete"); break;
177 default: g_critical("ldapsvr_retrieve_item_person->Unknown status: %d", person->status);
179 g_hash_table_insert(array, "uid", ADDRITEM_ID(person));
180 g_hash_table_insert(array, "cn", ADDRITEM_NAME(person));
181 g_hash_table_insert(array, "givenName", person->firstName);
182 g_hash_table_insert(array, "sn", person->lastName);
183 g_hash_table_insert(array, "nickName", person->nickName);
184 g_hash_table_insert(array, "dn", person->externalID);
185 g_hash_table_insert(array, "person", person);
186 node = person->listEMail;
187 attr = NULL;
188 while (node) {
189 EmailKeyValue *newEmail = ldapsvr_retrieve_item_email(node->data);
190 if (newEmail)
191 attr = g_list_append(attr, newEmail);
192 node = g_list_next(node);
194 g_hash_table_insert(array, "mail", attr);
195 node = person->listAttrib;
196 attr = NULL;
197 while (node) {
198 AttrKeyValue *newAttr = ldapsvr_retrieve_attribute(node->data);
199 if (newAttr)
200 attr = g_list_append(attr, newAttr);
201 node = g_list_next(node);
203 g_hash_table_insert(array, "attribute", attr);
204 return TRUE;
208 * Print contents of contacts hashtable for debug.
209 * This function must be called with g_hash_table_foreach.
210 * \param key Key to process.
211 * \param data Data to process.
212 * \param fd Output stream.
214 void ldapsvr_print_contacts_hashtable(gpointer key, gpointer data, gpointer fd) {
215 gchar *keyName = (gchar *) key;
216 GList *node;
218 if (g_ascii_strcasecmp("mail", keyName) == 0) {
219 node = (GList *) data;
220 while (node) {
221 EmailKeyValue *item = node->data;
222 if (debug_get_mode()) {
223 debug_print("\t\talias = %s\n", item->alias?item->alias:"null");
224 debug_print("\t\tmail = %s\n", item->mail?item->mail:"null");
225 debug_print("\t\tremarks = %s\n", item->remarks?item->remarks:"null");
227 else if (fd) {
228 FILE *stream = (FILE *) fd;
229 fprintf(stream, "\t\talias = %s\n", item->alias?item->alias:"null");
230 fprintf(stream, "\t\tmail = %s\n", item->mail?item->mail:"null");
231 fprintf(stream, "\t\tremarks = %s\n", item->remarks?item->remarks:"null");
233 node = g_list_next(node);
236 else if (g_ascii_strcasecmp("attribute", keyName) == 0) {
237 node = (GList *) data;
238 while (node) {
239 AttrKeyValue *item = node->data;
240 if (debug_get_mode()) {
241 debug_print("\t\t%s = %s\n", item->key?item->key:"null",
242 item->value?item->value:"null");
244 else if (fd) {
245 FILE *stream = (FILE *) fd;
246 fprintf(stream, "\t\t%s = %s\n", item->key?item->key:"null",
247 item->value?item->value:"null");
249 node = g_list_next(node);
252 else {
253 if (debug_get_mode())
254 debug_print("\t\t%s = %s\n", keyName?keyName:"null", data?(gchar *)data:"null");
255 else if (fd) {
256 FILE *stream = (FILE *) fd;
257 fprintf(stream, "\t\t%s = %s\n", keyName?keyName:"null", data?(gchar *)data:"null");
263 * Free list of changed contacts
265 * \param list List of GHashTable
267 void ldapsvr_free_hashtable(GList *list) {
268 GList *tmp = list;
269 while (tmp) {
270 g_hash_table_destroy(tmp->data);
271 tmp->data = NULL;
272 tmp = g_list_next(tmp);
274 g_list_free(list);
275 list = NULL;
279 * Get person object from cache
281 * \param server Resource to LDAP
282 * \param uid PersonID in cache
283 * \return person object, or <i>NULL</i> if fail
285 ItemPerson *ldapsvr_get_contact(LdapServer *server, gchar *uid) {
286 AddrItemObject *aio;
287 cm_return_val_if_fail(server != NULL || uid != NULL, NULL);
288 aio = addrcache_get_object(server->addressCache, uid);
289 if (aio) {
290 if(aio->type == ITEMTYPE_PERSON) {
291 return (ItemPerson *) aio;
294 return NULL;
298 * Create an initial Rdn structure
300 * \return empty structure
302 Rdn *rdn_create() {
303 Rdn *buf;
305 buf = g_new0(Rdn, 1);
306 buf->attribute = NULL;
307 buf->value = NULL;
308 buf->new_dn = NULL;
309 return buf;
313 * Free a created Rdn structure
314 * \param rdn Structure to free
316 void rdn_free(Rdn *rdn) {
317 if (rdn->attribute) {
318 g_free(rdn->attribute);
319 rdn->attribute = NULL;
321 if (rdn->value) {
322 g_free(rdn->value);
323 rdn->value = NULL;
325 if (rdn->new_dn) {
326 g_free(rdn->new_dn);
327 rdn->new_dn = NULL;
329 g_free(rdn);
330 rdn = NULL;
334 * update Rdn structure
336 * \param rdn Rdn structure to update
337 * \param head Uniq part of dn
338 * \param tail Common part of dn
340 void update_rdn(Rdn *rdn, gchar *head, gchar *tail) {
341 rdn->value = g_strdup(head);
342 rdn->new_dn = g_strdup_printf("%s=%s%s", rdn->attribute, head, tail);
346 * Deside if dn needs to be changed
348 * \param hash GHashTable with user input.
349 * \param dn dn for current object
350 * \return Rdn structure
352 Rdn *ldapsvr_modify_dn(GHashTable *hash, gchar *dn) {
353 Rdn *rdn;
354 gchar *pos, *compare;
355 gchar *rest;
356 gchar *val;
357 cm_return_val_if_fail(hash != NULL || dn != NULL, NULL);
359 pos = g_strstr_len(dn, strlen(dn), "=");
360 if (!pos)
361 return NULL;
363 compare = g_strndup(dn, pos - dn);
365 pos++;
366 rest = g_strstr_len(pos, strlen(pos), ",");
367 val = g_strndup(pos, rest - pos);
368 if (val == NULL) {
369 if (compare)
370 g_free(compare);
371 return NULL;
373 rdn = rdn_create();
374 rdn->value = val;
375 rdn->attribute = compare;
377 if (strcmp("mail", rdn->attribute) == 0) {
378 GList *list = g_hash_table_lookup(hash, rdn->attribute);
379 while (list) {
380 EmailKeyValue *item = list->data;
381 compare = (gchar *) item->mail;
382 if (strcmp(compare, rdn->value) == 0) {
383 update_rdn(rdn, compare, rest);
384 return rdn;
386 list = g_list_next(list);
388 /* if compare and rdn->attribute are equal then last email removed/empty */
389 if (strcmp(compare, rdn->attribute) != 0) {
390 /* RDN changed. Find new */
391 update_rdn(rdn, compare, rest);
392 return rdn;
395 else {
396 compare = g_hash_table_lookup(hash, rdn->attribute);
397 /* if compare and rdn->attribute are equal then dn removed/empty */
398 if (compare != NULL && strcmp(compare, rdn->attribute) != 0) {
399 update_rdn(rdn, compare, rest);
400 return rdn;
403 rdn_free(rdn);
404 return NULL;
408 * This macro is borrowed from the Balsa project
409 * Creates a LDAPMod structure
411 * \param mods Empty LDAPMod structure
412 * \param modarr Array with values to insert
413 * \param op Operation to perform on LDAP
414 * \param attr Attribute to insert
415 * \param strv Empty array which is NULL terminated
416 * \param val Value for attribute
418 #define SETMOD(mods,modarr,op,attr,strv,val) \
419 do { (mods) = &(modarr); (modarr).mod_type=attr; (modarr).mod_op=op;\
420 (strv)[0]=(val); (modarr).mod_values=strv; \
421 } while(0)
424 * Creates a LDAPMod structure
426 * \param mods Empty LDAPMod structure
427 * \param modarr Array with values to insert
428 * \param op Operation to perform on LDAP
429 * \param attr Attribute to insert
430 * \param strv Array with values to insert. Must be NULL terminated
432 #define SETMODS(mods,modarr,op,attr,strv) \
433 do { (mods) = &(modarr); (modarr).mod_type=attr; \
434 (modarr).mod_op=op; (modarr).mod_values=strv; \
435 } while(0)
436 #define MODSIZE 10
439 * Clean up, close LDAP connection, and refresh cache
441 * \param ld Resource to LDAP
442 * \param server AddressBook resource
443 * \param contact GHashTable with current changed object
445 void clean_up(LDAP *ld, LdapServer *server, GHashTable *contact) {
446 ItemPerson *person =
447 ldapsvr_get_contact(server, g_hash_table_lookup(contact , "uid"));
448 if (person) {
449 gchar *displayName;
450 person->status = NONE;
451 displayName = g_hash_table_lookup(contact, "displayName");
452 if (displayName)
453 person->nickName = g_strdup(displayName);
455 if (server->retVal != LDAPRC_SUCCESS) {
456 if (person) {
457 ItemPerson *res =
458 addrcache_remove_person(server->addressCache, person);
459 if (!res)
460 g_critical("ldapsvr_update_book: Could not clean cache\n");
461 else
462 addritem_free_item_person(res);
465 if (ld)
466 ldapsvr_disconnect(ld);
470 * Get cn attribute from dn
472 * \param dn Distinguesh Name for current object
473 * \return AttrKeyValue, or <i>NULL</i> if none created
475 AttrKeyValue *get_cn(gchar *dn) {
476 AttrKeyValue *cn;
477 gchar *start;
478 gchar *end;
479 gchar *item;
480 gchar **key_value;
481 cm_return_val_if_fail(dn != NULL, NULL);
483 cn = attrkeyvalue_create();
484 start = g_strstr_len(dn, strlen(dn), "cn");
485 if (start == NULL) {
486 attrkeyvalue_free(cn);
487 return NULL;
489 end = g_strstr_len(start, strlen(start), ",");
490 item = g_strndup(start, end - start);
491 if (item == NULL) {
492 attrkeyvalue_free(cn);
493 return NULL;
495 key_value = g_strsplit(item, "=", 2);
496 cn->key = g_strdup(key_value[0]);
497 cn->value = g_strdup(key_value[1]);
498 g_strfreev(key_value);
499 g_free(item);
500 return cn;
504 * Get mail attribute from dn
506 * \param dn Distinguesh Name for current object
507 * \return AttrKeyValue, or <i>NULL</i> if none created
509 AttrKeyValue *get_mail(gchar *dn) {
510 AttrKeyValue *mail;
511 gchar *start;
512 gchar *end;
513 gchar *item;
514 gchar **key_value;
515 cm_return_val_if_fail(dn != NULL, NULL);
517 mail = attrkeyvalue_create();
518 start = g_strstr_len(dn, strlen(dn), "mail");
519 if (start == NULL) {
520 attrkeyvalue_free(mail);
521 return NULL;
523 end = g_strstr_len(start, strlen(start), ",");
524 item = g_strndup(start, end - start);
525 if (item == NULL) {
526 attrkeyvalue_free(mail);
527 return NULL;
529 key_value = g_strsplit(item, "=", 2);
530 mail->key = g_strdup(key_value[0]);
531 mail->value = g_strdup(key_value[1]);
532 g_strfreev(key_value);
533 g_free(item);
534 return mail;
538 * Get ou or o attribute from dn
540 * \param dn Distinguesh Name for current object
541 * \return AttrKeyValue, or <i>NULL</i> if none created
543 AttrKeyValue *get_ou(gchar *dn) {
544 AttrKeyValue *ou;
545 gchar *start;
546 gchar *end;
547 gchar *item;
548 gchar **key_value;
550 cm_return_val_if_fail(dn != NULL, NULL);
551 ou = attrkeyvalue_create();
552 start = g_strstr_len(dn, strlen(dn), ",o=");
553 if (start == NULL)
554 start = g_strstr_len(dn, strlen(dn), ",ou=");
555 if (start == NULL) {
556 attrkeyvalue_free(ou);
557 return NULL;
559 start++;
560 end = g_strstr_len(start, strlen(start), ",");
561 item = g_strndup(start, end - start);
562 if (item == NULL) {
563 attrkeyvalue_free(ou);
564 return NULL;
566 key_value = g_strsplit(item, "=", 2);
567 ou->key = g_strdup(key_value[0]);
568 ou->value = g_strdup(key_value[1]);
569 g_strfreev(key_value);
570 g_free(item);
571 return ou;
575 * Print the contents of a LDAPMod structure for debuging purposes
577 * \param mods LDAPMod structure
579 void ldapsvr_print_ldapmod(LDAPMod *mods[]) {
580 gchar *mod_op;
581 int i;
583 cm_return_if_fail(mods != NULL);
584 g_printerr( "Type\n");
585 for (i = 0; NULL != mods[i]; i++) {
586 LDAPMod *mod = (LDAPMod *) mods[i];
587 gchar **vals;
588 switch (mod->mod_op) {
589 case LDAP_MOD_ADD: mod_op = g_strdup("ADD"); break;
590 case LDAP_MOD_REPLACE: mod_op = g_strdup("MODIFY"); break;
591 case LDAP_MOD_DELETE: mod_op = g_strdup("DELETE"); break;
592 default: mod_op = g_strdup("UNKNOWN");
594 g_printerr( "Operation: %s\tType:%s\nValues:\n", mod_op, mod->mod_type);
595 vals = mod->mod_vals.modv_strvals;
596 while (*vals) {
597 g_printerr( "\t%s\n", *vals++);
603 * Make a compare for every new value we want to store in the
604 * directory with the current values. Great tool for debugging
605 * against invalid syntax in attributes
607 * \param ld AddressBook resource
608 * \param dn dn for the entry
609 * \param cnt Number of attributes to compare
610 * \param mods LDAPMod structure
612 void ldapsvr_compare_attr(LDAP *ld, gchar *dn, gint cnt, LDAPMod *mods[]) {
613 int i, rc;
615 #ifdef OPEN_LDAP_API_AT_LEAST_3000
617 struct berval val;
619 #endif
621 cm_return_if_fail(ld != NULL || dn != NULL || cnt >= 0 || mods != NULL);
622 for (i = 0; i < cnt; i++) {
623 gchar *value = g_strdup(mods[i]->mod_vals.modv_strvals[0]);
624 if (!value || strcmp(value, "") == 0)
625 value = g_strdup("thisisonlyadummy");
627 #ifdef OPEN_LDAP_API_AT_LEAST_3000
629 val.bv_val = value;
630 val.bv_len = strlen(value);
632 rc = ldap_compare_ext_s(ld, dn, mods[i]->mod_type, &val, NULL, NULL);
634 #else
636 /* This is deprecated as of OpenLDAP-2.3.0 */
637 rc = ldap_compare_s(ld, dn, mods[i]->mod_type, value);
639 #endif
641 g_printerr("ldap_compare for (%s:%s)\" failed[0x%x]: %s\n",
642 mods[i]->mod_type, value, rc, ldaputil_get_error(ld));
643 g_free(value);
648 * compare attribute to LDAP in case of LDAP_INAPPROPRIATE_MATCHING
650 * \param ld AddressBook resource
651 * \param server Reference to server
652 * \param dn dn for the entry
653 * \param attr Attribute
654 * \param value New value
655 * \return int, return will be LDAP_MOD_ADD, LDAP_MOD_REPLACE, or LDAP_MOD_DELETE
657 int ldapsvr_compare_manual_attr(LDAP *ld, LdapServer *server, gchar *dn, char *attr, char *value) {
658 LDAPMessage *res, *e = NULL;
659 BerElement *ber;
660 struct berval **vals;
661 int rc;
662 LdapControl *ctl;
663 gchar *filter;
664 gchar *attribute;
665 int retVal = -2, i;
666 AttrKeyValue *mail;
668 cm_return_val_if_fail(ld != NULL || server != NULL || attr != NULL, -1);
669 ctl = server->control;
670 mail = get_mail(dn);
671 if (! mail)
672 return -2;
673 filter = g_strdup_printf("(&(mail=%s)(%s=*))", mail->value, attr);
674 attrkeyvalue_free(mail);
675 if (ctl) {
677 rc = ldap_search_ext_s(ld, ctl->baseDN, LDAP_SCOPE_ONELEVEL, filter, NULL, 0, NULL, NULL, NULL, 0, &res);
679 if (rc) {
680 log_error(LOG_PROTOCOL, _("LDAP error (search): for attribute '%s': %d (%s)\n"),
681 attr, rc, ldaputil_get_error(ld));
682 retVal = -2;
684 else {
685 e = ldap_first_entry(ld, res);
686 /* entry has this attribute */
687 if (e) {
688 attribute = ldap_first_attribute( ld, e, &ber );
689 if (attribute) {
690 if (value) {
691 if( ( vals = ldap_get_values_len( ld, e, attr ) ) != NULL ) {
692 for( i = 0; vals[i] != NULL; i++ ) {
693 debug_print("Compare: %s=%s\n", attr, vals[i]->bv_val);
694 /* attribute has same value */
695 if (strcmp(vals[i]->bv_val, value) == 0)
696 retVal = -1;
697 /* attribute has new value */
698 else
699 retVal = LDAP_MOD_REPLACE;
702 ldap_value_free_len(vals);
704 else
705 retVal = LDAP_MOD_DELETE;
707 if( ber != NULL ) {
708 ber_free( ber, 0 );
710 ldap_memfree(attribute);
712 /* entry does not have this attribute */
713 else {
714 /* Only add if this is a real attribute */
715 if (value)
716 retVal = LDAP_MOD_ADD;
717 /* This is dummy value used to avoid ldap_compare error */
718 else
719 retVal = -1;
723 else
724 retVal = -2;
725 g_free(filter);
726 return retVal;
730 * Deside which kind of operation is required to handle
731 * updating the specified attribute
733 * \param ld AddressBook resource
734 * \param server Reference to server
735 * \param dn dn for the entry
736 * \param attr Attribute
737 * \param value New value
738 * \return int, return will be LDAP_MOD_ADD, LDAP_MOD_REPLACE, or LDAP_MOD_DELETE
740 int ldapsvr_deside_operation(LDAP *ld, LdapServer *server, char *dn, char *attr, char *value) {
741 int rc;
742 gboolean dummy = FALSE;
744 #ifdef OPEN_LDAP_API_AT_LEAST_3000
746 struct berval val;
748 #endif
750 cm_return_val_if_fail(ld != NULL || server != NULL || dn != NULL || attr != NULL, -1);
751 if (value == NULL)
752 return -1;
753 /* value containing empty string cause invalid syntax. A bug in
754 * the LDAP library? Therefore we add a dummy value
756 if (strcmp(value,"") == 0) {
757 value = g_strdup("thisisonlyadummy");
758 dummy = TRUE;
761 #ifdef OPEN_LDAP_API_AT_LEAST_3000
763 val.bv_val = value;
764 val.bv_len = strlen(value);
766 rc = ldap_compare_ext_s(ld, dn, attr, &val, NULL, NULL);
768 #else
770 /* This is deprecated as of OpenLDAP-2.3.0 */
771 rc = ldap_compare_s(ld, dn, attr, value);
773 #endif
775 debug_print("ldap_compare for (%s:%s)\" error_code[0x%x]: %s\n",
776 attr, value, rc, ldaputil_get_error(ld));
777 switch (rc) {
778 case LDAP_COMPARE_FALSE:
779 if (dummy)
780 return LDAP_MOD_DELETE;
781 else
782 return LDAP_MOD_REPLACE;
783 case LDAP_COMPARE_TRUE: return -1;
784 case LDAP_NO_SUCH_ATTRIBUTE: return LDAP_MOD_ADD;
785 /* LDAP_INAPPROPRIATE_MATCHING needs extensive testing because I
786 * am not aware off the condition causing this return value!
788 case LDAP_INAPPROPRIATE_MATCHING:
789 if (dummy)
790 value = NULL;
791 return ldapsvr_compare_manual_attr(ld, server, dn, attr, value);
792 case LDAP_UNDEFINED_TYPE: return -2;
793 case LDAP_INVALID_SYNTAX: return -2;
794 default: return -2;
799 * Check if attribute is part of the current search criteria
801 * \param list Array containing attributes in the current search criteria
802 * \param attr Attribute to check
803 * \result <i>TRUE</i> if attribute is found in the current search criteria
805 gboolean ldapsvr_check_search_attributes(char **list, char *attr) {
806 while (*list) {
807 if (strcmp(*list++, attr) == 0)
808 return TRUE;
810 return FALSE;
814 * Deside which other attributes needs updating
816 * \param ld LDAP resource
817 * \param server AddressBook resource
818 * \param dn dn for the entry
819 * \param contact GHashTable with information for the current contact
821 void ldapsvr_handle_other_attributes(LDAP *ld, LdapServer *server, char *dn, GHashTable *contact) {
822 GList *node;
823 gboolean CHECKED_ATTRIBUTE[ATTRIBUTE_SIZE + 1];
824 LDAPMod *mods[ATTRIBUTE_SIZE + 1];
825 LDAPMod modarr[ATTRIBUTE_SIZE];
826 gint cnt = 0;
827 char *attr[ATTRIBUTE_SIZE + 1][2];
828 int mod_op, rc, i;
830 cm_return_if_fail(server != NULL || dn != NULL || contact != NULL);
831 for (i = 0; i <= ATTRIBUTE_SIZE; i++) {
832 CHECKED_ATTRIBUTE[i] = FALSE;
833 attr[i][0] = attr[i][1] = NULL;
835 node = g_hash_table_lookup(contact , "attribute");
836 while (node) {
837 AttrKeyValue *item = node->data;
838 if (item) {
839 int index = get_attribute_index(item->key);
840 if (index >= 0) {
841 debug_print("Found other attribute: %s = %s\n",
842 item->key?item->key:"null", item->value?item->value:"null");
843 mod_op = ldapsvr_deside_operation(ld, server, dn, item->key, item->value);
844 /* Only consider attributes which we no how to handle.
845 * Set to TRUE in CHECKED_ATTRIBUTE array to indicate no further action
847 if (mod_op < 0) {
848 CHECKED_ATTRIBUTE[index] = TRUE;
849 node = g_list_next(node);
850 continue;
852 if (mod_op == LDAP_MOD_DELETE) {
853 /* Setting param to NULL instructs OpenLDAP to remove any
854 * value stored for this attribute and remove the attribute
855 * completely. Should multiple instances of an attribute be
856 * allowed in the future param is required to have the value
857 * store for the attribute which is going to be deleted
859 item->value = NULL;
861 if (mod_op == LDAP_MOD_REPLACE && strcmp(item->value, "") == 0) {
862 /* Having an empty string is considered a syntax error in
863 * ldap. E.g attributes with empty strings are not allowed
864 * in which case we treate this as a request for deleting
865 * the attribute.
867 mod_op = LDAP_MOD_DELETE;
868 item->value = NULL;
870 if (mod_op == LDAP_MOD_ADD && strcmp(item->value, "") == 0) {
871 /* Adding an empty string is considered a syntax error in
872 * ldap. E.g attributes with empty strings are not allowed
873 * in which case we silently refuse to add this entry
876 else {
877 SETMOD(mods[cnt], modarr[cnt], mod_op, g_strdup(item->key), attr[cnt], g_strdup(item->value));
878 cnt++;
879 CHECKED_ATTRIBUTE[index] = TRUE;
883 node = g_list_next(node);
885 char **attribs = ldapctl_full_attribute_array(server->control);
886 for (i = 0; i < ATTRIBUTE_SIZE; i++) {
887 /* Attributes which holds no information are to be removed */
888 if (CHECKED_ATTRIBUTE[i] == FALSE) {
889 /* Only consider those attributes which is currently part of the search criteria.
890 * If attributes are not part of the search criteria they would seem to hold
891 * no information since their values will not be populated in the GUI
893 if (!strcmp(ATTRIBUTE[i], "jpegPhoto")) {
894 debug_print("not updating jpegPhoto\n");
895 continue;
897 if (ldapsvr_check_search_attributes(attribs, (char *) ATTRIBUTE[i])) {
898 mod_op = ldapsvr_deside_operation(ld, server, dn, (char *) ATTRIBUTE[i], "");
899 if (mod_op == LDAP_MOD_DELETE) {
900 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_DELETE, g_strdup((char *) ATTRIBUTE[i]), attr[cnt], NULL);
901 cnt++;
906 ldapctl_free_attribute_array(attribs);
907 mods[cnt] = NULL;
908 if (debug_get_mode())
909 ldapsvr_print_ldapmod(mods);
910 server->retVal = LDAPRC_SUCCESS;
911 rc = ldap_modify_ext_s(ld, dn, mods, NULL, NULL);
912 if (rc) {
913 switch (rc) {
914 case LDAP_ALREADY_EXISTS:
915 server->retVal = LDAPRC_ALREADY_EXIST;
916 break;
917 default:
918 log_error(LOG_PROTOCOL, _("LDAP error (modify): for DN '%s': %d (%s)\n"),
919 dn, rc, ldaputil_get_error(ld));
920 if (rc == 0x8)
921 server->retVal = LDAPRC_STRONG_AUTH;
922 else
923 server->retVal = LDAPRC_NAMING_VIOLATION;
926 else {
927 char **attribs = ldapctl_full_attribute_array(server->control);
928 for (i = 0; i < ATTRIBUTE_SIZE; i++) {
929 if (!strcmp(ATTRIBUTE[i], "jpegPhoto")) {
930 debug_print("not updating jpegPhoto\n");
931 continue;
933 if (ldapsvr_check_search_attributes(attribs, (char *) ATTRIBUTE[i])) {
934 if (CHECKED_ATTRIBUTE[i] == FALSE) {
935 AddrItemObject *aio = addrcache_get_object(server->addressCache, g_hash_table_lookup(contact , "uid"));
936 ItemPerson *person = (ItemPerson *) aio;
937 addritem_person_remove_attribute(person, (const gchar *) ATTRIBUTE[i]);
941 ldapctl_free_attribute_array(attribs);
946 * Add new contact to LDAP
948 * \param server AddressBook resource
949 * \param contact GHashTable with object to add
951 void ldapsvr_add_contact(LdapServer *server, GHashTable *contact) {
952 gchar *email = NULL, *param = NULL;
953 LDAP *ld = NULL;
954 LDAPMod *mods[MODSIZE];
955 LDAPMod modarr[7];
956 gint cnt = 0;
957 char *cn[] = {NULL, NULL};
958 char *displayName[] = {NULL, NULL};
959 char *givenName[] = {NULL, NULL};
960 char **mail = NULL;
961 char *sn[] = {NULL, NULL};
962 char *org[] = {NULL, NULL};
963 char *obj[] = {/*"top",*/ "person", "organizationalPerson", "inetOrgPerson", NULL};
964 int rc=0;
965 GList *node;
966 AttrKeyValue *ou, *commonName;
967 ItemPerson *person;
968 gchar *base_dn;
969 GList *mailList;
971 cm_return_if_fail(server != NULL || contact != NULL);
972 node = g_hash_table_lookup(contact , "mail");
973 if (node) {
974 EmailKeyValue *newEmail = node->data;
975 email = g_strdup(newEmail->mail);
977 if (email == NULL) {
978 server->retVal = LDAPRC_NODN;
979 clean_up(ld, server, contact);
980 return;
982 base_dn = g_strdup_printf("mail=%s,%s",
983 email, server->control->baseDN?server->control->baseDN:"null");
984 g_free(email);
985 person =
986 ldapsvr_get_contact(server, g_hash_table_lookup(contact , "uid"));
987 person->externalID = g_strdup(base_dn);
988 debug_print("dn: %s\n", base_dn);
989 ld = ldapsvr_connect(server->control);
990 if (ld == NULL) {
991 clean_up(ld, server, contact);
992 debug_print("no ldap found\n");
993 return;
995 SETMODS(mods[cnt], modarr[cnt], LDAP_MOD_ADD, "objectClass", obj);
996 cnt++;
997 ou = get_ou(base_dn);
998 if (ou != NULL) {
999 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_ADD, g_strdup(ou->key), org, g_strdup(ou->value));
1000 cnt++;
1001 attrkeyvalue_free(ou);
1004 commonName = get_cn(base_dn);
1005 if (commonName == NULL) {
1006 param = g_hash_table_lookup(contact , "cn");
1007 if (param) {
1008 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_ADD, "cn", cn, param);
1010 else {
1011 clean_up(ld, server, contact);
1012 debug_print("no CN found\n");
1013 return;
1016 else {
1017 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_ADD, g_strdup(commonName->key), cn, g_strdup(commonName->value));
1018 cnt++;
1019 param = g_hash_table_lookup(contact , "cn");
1020 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_ADD, "displayName", displayName, param);
1021 g_hash_table_insert(contact, "displayName", param);
1022 attrkeyvalue_free(commonName);
1024 cnt++;
1025 param = g_hash_table_lookup(contact , "givenName");
1026 if (param) {
1027 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_ADD, "givenName", givenName, param);
1028 cnt++;
1030 mailList = g_hash_table_lookup(contact , "mail");
1031 if (mailList) {
1032 char **tmp;
1033 tmp = g_malloc(sizeof(*tmp) * (g_list_length(mailList)+1));
1034 mail = tmp;
1035 while (mailList) {
1036 EmailKeyValue *item = mailList->data;
1037 *tmp++ = g_strdup((gchar *) item->mail);
1038 mailList = g_list_next(mailList);
1040 *tmp = NULL;
1041 SETMODS(mods[cnt], modarr[cnt], LDAP_MOD_ADD, "mail", mail);
1042 cnt++;
1044 param = g_hash_table_lookup(contact, "sn");
1045 if (param == NULL)
1046 param = g_strdup(N_("Some SN"));
1047 SETMOD(mods[cnt], modarr[cnt], LDAP_MOD_ADD, "sn", sn, param);
1048 cnt++;
1049 mods[cnt] = NULL;
1050 if (debug_get_mode()) {
1051 ldapsvr_print_ldapmod(mods);
1053 server->retVal = LDAPRC_SUCCESS;
1054 rc = ldap_add_ext_s(ld, base_dn, mods, NULL, NULL);
1055 if (rc) {
1056 switch (rc) {
1057 case LDAP_ALREADY_EXISTS:
1058 server->retVal = LDAPRC_ALREADY_EXIST;
1059 break;
1060 default:
1061 log_error(LOG_PROTOCOL, _("LDAP error (modify): for DN '%s': %d (%s)\n"),
1062 base_dn, rc, ldaputil_get_error(ld));
1063 if (rc == 0x8)
1064 server->retVal = LDAPRC_STRONG_AUTH;
1065 else
1066 server->retVal = LDAPRC_NAMING_VIOLATION;
1069 ldapsvr_handle_other_attributes(ld, server, base_dn, contact);
1070 g_free(base_dn);
1071 clean_up(ld, server, contact);
1075 * Update contact to LDAP
1077 * \param server AddressBook resource
1078 * \param contact GHashTable with object to update
1080 void ldapsvr_update_contact(LdapServer *server, GHashTable *contact) {
1081 LDAP *ld = NULL;
1082 LDAPMod *mods[MODSIZE];
1083 LDAPMod modarr[4];
1084 gint cnt = 0;
1085 gchar *param, *dn;
1086 Rdn *NoRemove = NULL;
1087 char *cn[] = {NULL, NULL};
1088 char *givenName[] = {NULL, NULL};
1089 char **mail = NULL;
1090 char *sn[] = {NULL, NULL};
1091 GList *mailList;
1092 int mod_op;
1094 cm_return_if_fail(server != NULL || contact != NULL);
1095 ld = ldapsvr_connect(server->control);
1096 if (ld == NULL) {
1097 clean_up(ld, server, contact);
1098 return;
1100 dn = g_hash_table_lookup(contact, "dn");
1102 if (dn == NULL) {
1103 clean_up(ld, server, contact);
1104 return;
1106 NoRemove = ldapsvr_modify_dn(contact, dn);
1107 if (NoRemove) {
1108 /* We are trying to change RDN */
1109 gchar *newRdn = g_strdup_printf("%s=%s", NoRemove->attribute, NoRemove->value);
1111 #ifdef OPEN_LDAP_API_AT_LEAST_3000
1113 int rc = ldap_rename_s(ld, dn, newRdn, NULL, 1, NULL, NULL);
1115 #else
1117 /* This is deprecated as of OpenLDAP-2.3.0 */
1118 int rc = ldap_modrdn2_s(ld, dn, newRdn, 1);
1120 #endif
1122 if(rc != LDAP_SUCCESS) {
1123 if (rc == LDAP_ALREADY_EXISTS) {
1124 /* We are messing with a contact with more than one listed email
1125 * address and the email we are changing is not the one used for dn
1127 /* It needs to be able to handle renaming errors to an already defined
1128 * dn. For now we just refuse the update. It will be caught later on as
1129 * a LDAPRC_NAMING_VIOLATION error.
1132 else {
1133 log_error(LOG_PROTOCOL, _("LDAP error (rename): from '%s' to '%s': %d (%s)\n"),
1134 dn, newRdn, rc, ldaputil_get_error(ld));
1135 g_free(newRdn);
1136 rdn_free(NoRemove);
1137 clean_up(ld, server, contact);
1138 return;
1141 else {
1142 ItemPerson *person = g_hash_table_lookup(contact, "person");
1143 g_free(newRdn);
1144 dn = g_strdup(NoRemove->new_dn);
1145 g_hash_table_replace(contact, "dn", dn);
1146 if (person) {
1147 g_free(person->externalID);
1148 person->externalID = dn;
1152 else {
1153 server->retVal = LDAPRC_NODN;
1154 clean_up(ld, server, contact);
1155 return;
1157 param = g_hash_table_lookup(contact , "cn");
1158 mod_op = ldapsvr_deside_operation(ld, server, dn, "displayName", param);
1159 if (mod_op >= 0 && (strcmp(param, NoRemove->value) != 0 && strcmp("cn", NoRemove->attribute) != 0)) {
1160 if (mod_op == LDAP_MOD_DELETE) {
1161 /* Setting param to NULL instructs OpenLDAP to remove any
1162 * value stored for this attribute and remove the attribute
1163 * completely. Should multiple instances of an attribute be
1164 * allowed in the future param is required to have the value
1165 * store for the attribute which is going to be deleted
1167 param = NULL;
1169 if (mod_op == LDAP_MOD_REPLACE && strcmp(param, "") == 0) {
1170 /* Having an empty string is considered a syntax error in
1171 * ldap. E.g attributes with empty strings are not allowed
1172 * in which case we treate this as a request for deleting
1173 * the attribute.
1175 mod_op = LDAP_MOD_DELETE;
1176 param = NULL;
1178 if (mod_op == LDAP_MOD_ADD && strcmp(param, "") == 0) {
1179 /* Adding an empty string is considered a syntax error in
1180 * ldap. E.g attributes with empty strings are not allowed
1181 * in which case we silently refuse to add this entry
1184 else {
1185 SETMOD(mods[cnt], modarr[cnt], mod_op, "displayName", cn, param);
1186 cnt++;
1187 g_hash_table_insert(contact, "displayName", param);
1190 param = g_hash_table_lookup(contact , "givenName");
1191 mod_op = ldapsvr_deside_operation(ld, server, dn, "givenName", param);
1192 if (mod_op >= 0 && (strcmp(param, NoRemove->value) != 0 && strcmp("givenName", NoRemove->attribute) != 0)) {
1193 if (mod_op == LDAP_MOD_DELETE) {
1194 /* Setting param to NULL instructs OpenLDAP to remove any
1195 * value stored for this attribute and remove the attribute
1196 * completely. Should multiple instances of an attribute be
1197 * allowed in the future param is required to have the value
1198 * store for the attribute which is going to be deleted
1200 param = NULL;
1202 if (mod_op == LDAP_MOD_REPLACE && strcmp(param, "") == 0) {
1203 /* Having an empty string is considered a syntax error in
1204 * ldap. E.g attributes with empty strings are not allowed
1205 * in which case we treate this as a request for deleting
1206 * the attribute.
1208 mod_op = LDAP_MOD_DELETE;
1209 param = NULL;
1211 if (mod_op == LDAP_MOD_ADD && strcmp(param, "") == 0) {
1212 /* Adding an empty string is considered a syntax error in
1213 * ldap. E.g attributes with empty strings are not allowed
1214 * in which case we silently refuse to add this entry
1217 else {
1218 SETMOD(mods[cnt], modarr[cnt], mod_op, "givenName", givenName, param);
1219 cnt++;
1222 mailList = g_hash_table_lookup(contact , "mail");
1223 if (mailList) {
1224 debug_print("# of mail: %d\n", g_list_length(mailList));
1225 if (!(strcmp("mail", NoRemove->attribute) == 0 && g_list_length(mailList) == 1)) {
1226 char **tmp;
1227 tmp = g_malloc(sizeof(*tmp) * (g_list_length(mailList)+1));
1228 mail = tmp;
1229 while (mailList) {
1230 EmailKeyValue *item = mailList->data;
1231 *tmp++ = g_strdup((gchar *) item->mail);
1232 mailList = g_list_next(mailList);
1234 *tmp = NULL;
1236 * At least one email address is required
1237 * in which case it will always be a replace
1239 SETMODS(mods[cnt], modarr[cnt], LDAP_MOD_REPLACE, "mail", mail);
1240 cnt++;
1243 else {
1245 * an error condition since at least one email adress
1246 * is required. Should never occur though.
1249 param = g_hash_table_lookup(contact , "sn");
1250 mod_op = ldapsvr_deside_operation(ld, server, dn, "sn", param);
1251 if (mod_op >= 0 && (strcmp(param, NoRemove->value) != 0 && strcmp("sn", NoRemove->attribute) != 0)) {
1252 if (mod_op == LDAP_MOD_DELETE) {
1253 /* Setting param to NULL instructs OpenLDAP to remove any
1254 * value stored for this attribute and remove the attribute
1255 * completely. Should multiple instances of an attribute be
1256 * allowed in the future param is required to have the value
1257 * store for the attribute which is going to be deleted
1259 param = NULL;
1261 if (mod_op == LDAP_MOD_REPLACE && strcmp(param, "") == 0) {
1262 /* Having an empty string is considered a syntax error in
1263 * ldap. E.g attributes with empty strings are not allowed
1264 * in which case we treate this as a request for deleting
1265 * the attribute.
1267 mod_op = LDAP_MOD_DELETE;
1268 param = NULL;
1270 if (mod_op == LDAP_MOD_ADD && strcmp(param, "") == 0) {
1271 /* Adding an empty string is considered a syntax error in
1272 * ldap. E.g attributes with empty strings are not allowed
1273 * in which case we silently refuse to add this entry
1276 else {
1277 SETMOD(mods[cnt], modarr[cnt], mod_op, "sn", sn, param);
1278 cnt++;
1281 debug_print("newDN: %s\n", dn);
1282 if (NoRemove)
1283 rdn_free(NoRemove);
1284 server->retVal = LDAPRC_SUCCESS;
1285 if (cnt > 0) {
1286 int rc;
1287 mods[cnt] = NULL;
1288 rc = ldap_modify_ext_s(ld, dn, mods, NULL, NULL);
1289 if (rc) {
1290 log_error(LOG_PROTOCOL, _("LDAP error (modify): for DN '%s': %d (%s)\n"),
1291 dn, rc, ldaputil_get_error(ld));
1292 server->retVal = LDAPRC_NAMING_VIOLATION;
1294 if (mail)
1295 g_free(mail);
1297 ldapsvr_handle_other_attributes(ld, server, dn, contact);
1298 /* If we do not make changes persistent at this point then changes
1299 * will be lost if the user makes new search on the same server since
1300 * changes are only present in Claws' internal cache. This issue has to
1301 * be solved in addressbook.c since this involves access to structures
1302 * which are only accessible in addressbook.c */
1303 clean_up(ld, server, contact);
1307 * Delete contact from LDAP
1309 * \param server AddressBook resource
1310 * \param contact GHashTable with object to delete
1312 void ldapsvr_delete_contact(LdapServer *server, GHashTable *contact) {
1313 LDAP *ld = NULL;
1314 gchar *dn;
1315 int rc;
1317 cm_return_if_fail(server != NULL || contact != NULL);
1318 ld = ldapsvr_connect(server->control);
1319 if (ld == NULL) {
1320 clean_up(ld, server, contact);
1321 return;
1323 dn = g_hash_table_lookup(contact, "dn");
1324 if (dn == NULL) {
1325 clean_up(ld, server, contact);
1326 return;
1328 server->retVal = LDAPRC_SUCCESS;
1329 rc = ldap_delete_ext_s(ld, dn, NULL, NULL);
1330 if (rc) {
1331 log_error(LOG_PROTOCOL, _("LDAP error (modify): for DN '%s': %d (%s)\n"),
1332 dn, rc, ldaputil_get_error(ld));
1333 server->retVal = LDAPRC_NODN;
1335 clean_up(ld, server, contact);
1339 * Update any changes to the server.
1341 * \param server AddressBook resource.
1342 * \param person ItemPerson holding user input.
1344 void ldapsvr_update_book(LdapServer *server, ItemPerson *item) {
1345 GList *node = NULL;
1346 GHashTable *contact = NULL;
1347 GList *contacts = NULL, *head = NULL;
1349 cm_return_if_fail(server != NULL);
1350 debug_print("updating ldap addressbook\n");
1352 contact = g_hash_table_new(g_str_hash, g_str_equal);
1353 if (item) {
1354 gboolean result = ldapsvr_retrieve_item_person(item, contact);
1355 debug_print("Found contact to update: %s\n", result? "Yes" : "No");
1356 if (result) {
1357 if (debug_get_mode()) {
1358 addritem_print_item_person(item, stdout);
1360 contacts = g_list_append(contacts, contact);
1363 else {
1364 ItemFolder *folder = server->addressCache->rootFolder;
1365 node = folder->listFolder;
1366 if (node) {
1367 while (node) {
1368 AddrItemObject *aio = node->data;
1369 if (aio) {
1370 if (aio->type == ITEMTYPE_FOLDER) {
1371 ItemFolder *folder = (ItemFolder *) aio;
1372 GList *persons = folder->listPerson;
1373 while (persons) {
1374 AddrItemObject *aio = persons->data;
1375 if (aio) {
1376 if (aio->type == ITEMTYPE_PERSON) {
1377 ItemPerson *item = (ItemPerson *) aio;
1378 gboolean result = ldapsvr_retrieve_item_person(item, contact);
1379 debug_print("Found contact to update: %s\n", result? "Yes" : "No");
1380 if (result) {
1381 if (debug_get_mode()) {
1382 gchar *uid = g_hash_table_lookup(contact, "uid");
1383 item = ldapsvr_get_contact(server, uid);
1384 addritem_print_item_person(item, stdout);
1386 contacts = g_list_append(contacts, contact);
1390 persons = g_list_next(persons);
1394 else {
1395 g_printerr("\t\tpid : ???\n");
1397 node = g_list_next(node);
1401 head = contacts;
1402 if (debug_get_mode()) {
1403 if (contacts)
1404 debug_print("Contacts which must be updated in LDAP:\n");
1405 while (contacts) {
1406 debug_print("\tContact:\n");
1407 g_hash_table_foreach(contacts->data,
1408 ldapsvr_print_contacts_hashtable, stderr);
1409 contacts = g_list_next(contacts);
1412 if (contacts == NULL)
1413 contacts = head;
1414 while (contacts) {
1415 gchar *status;
1416 contact = (GHashTable *) contacts->data;
1417 status = (gchar *) g_hash_table_lookup(contact, "status");
1418 if (status == NULL)
1419 status = g_strdup("NULL");
1420 if (g_ascii_strcasecmp(status, "new") == 0) {
1421 ldapsvr_add_contact(server, contact);
1423 else if (g_ascii_strcasecmp(status, "update") == 0) {
1424 ldapsvr_update_contact(server, contact);
1426 else if (g_ascii_strcasecmp(status, "delete") == 0) {
1427 ldapsvr_delete_contact(server, contact);
1429 else
1430 g_critical("ldapsvr_update_book->Unknown status: %s\n", status);
1431 contacts = g_list_next(contacts);
1433 ldapsvr_free_hashtable(head);
1436 #endif /* USE_LDAP */
1439 * End of Source.