More changes of 'free software' to 'open source' made for the express purpose of...
[citadel.git] / citadel / modules / vcard / serv_vcard.c
1 /*
2  * A server-side module for Citadel which supports address book information
3  * using the standard vCard format.
4  * 
5  * Copyright (c) 1999-2012 by the citadel.org team
6  *
7  * This program is open source software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 3.
9  * 
10  * 
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * 
18  * 
19  * 
20  */
21
22 /*
23  * Format of the "Exclusive ID" field of the message containing a user's
24  * vCard.  Doesn't matter what it really looks like as long as it's both
25  * unique and consistent (because we use it for replication checking to
26  * delete the old vCard network-wide when the user enters a new one).
27  */
28 #define VCARD_EXT_FORMAT        "Citadel vCard: personal card for %s at %s"
29
30 /*
31  * Citadel will accept either text/vcard or text/x-vcard as the MIME type
32  * for a vCard.  The following definition determines which one it *generates*
33  * when serializing.
34  */
35 #define VCARD_MIME_TYPE         "text/x-vcard"
36
37 #include "sysdep.h"
38 #include <stdlib.h>
39 #include <unistd.h>
40 #include <stdio.h>
41 #include <fcntl.h>
42 #include <signal.h>
43 #include <pwd.h>
44 #include <errno.h>
45 #include <ctype.h>
46 #include <sys/types.h>
47
48 #if TIME_WITH_SYS_TIME
49 # include <sys/time.h>
50 # include <time.h>
51 #else
52 # if HAVE_SYS_TIME_H
53 #  include <sys/time.h>
54 # else
55 #  include <time.h>
56 # endif
57 #endif
58
59 #include <sys/wait.h>
60 #include <string.h>
61 #include <limits.h>
62 #include <libcitadel.h>
63 #include "citadel.h"
64 #include "server.h"
65 #include "citserver.h"
66 #include "support.h"
67 #include "config.h"
68 #include "control.h"
69 #include "user_ops.h"
70 #include "database.h"
71 #include "msgbase.h"
72 #include "internet_addressing.h"
73 #include "serv_vcard.h"
74 #include "citadel_ldap.h"
75 #include "ctdl_module.h"
76
77 /*
78  * set global flag calling for an aide to validate new users
79  */
80 void set_mm_valid(void) {
81         begin_critical_section(S_CONTROL);
82         get_control();
83         CitControl.MMflags = CitControl.MMflags | MM_VALID ;
84         put_control();
85         end_critical_section(S_CONTROL);
86 }
87
88
89
90 /*
91  * Extract Internet e-mail addresses from a message containing a vCard, and
92  * perform a callback for any found.
93  */
94 void vcard_extract_internet_addresses(struct CtdlMessage *msg, int (*callback)(char *, char *) ) {
95         struct vCard *v;
96         char *s;
97         char *k;
98         char *addr;
99         char citadel_address[SIZ];
100         int instance = 0;
101         int found_something = 0;
102
103         if (msg->cm_fields['A'] == NULL) return;
104         if (msg->cm_fields['N'] == NULL) return;
105         snprintf(citadel_address, sizeof citadel_address, "%s @ %s",
106                 msg->cm_fields['A'], msg->cm_fields['N']);
107
108         v = vcard_load(msg->cm_fields['M']);
109         if (v == NULL) return;
110
111         /* Go through the vCard searching for *all* instances of
112          * the "email;internet" key
113          */
114         do {
115                 s = vcard_get_prop(v, "email", 1, instance, 0);         /* get any 'email' field */
116                 k = vcard_get_prop(v, "email", 1, instance++, 1);       /* but also learn it with attrs */
117                 if ( (s != NULL) && (k != NULL) && (bmstrcasestr(k, "internet")) ) {
118                         addr = strdup(s);
119                         striplt(addr);
120                         if (!IsEmptyStr(addr)) {
121                                 if (callback != NULL) {
122                                         callback(addr, citadel_address);
123                                 }
124                         }
125                         free(addr);
126                         found_something = 1;
127                 }
128                 else {
129                         found_something = 0;
130                 }
131         } while(found_something);
132
133         vcard_free(v);
134 }
135 ///TODO: gettext!
136 #define _(a) a
137 /*
138  * Callback for vcard_add_to_directory()
139  * (Lotsa ugly nested callbacks.  Oh well.)
140  */
141 int vcard_directory_add_user(char *internet_addr, char *citadel_addr) {
142         struct CitContext *CCC = CC;
143         char buf[SIZ];
144
145         /* We have to validate that we're not stepping on someone else's
146          * email address ... but only if we're logged in.  Otherwise it's
147          * probably just the networker or something.
148          */
149         if (CCC->logged_in) {
150                 syslog(LOG_DEBUG, "Checking for <%s>...\n", internet_addr);
151                 if (CtdlDirectoryLookup(buf, internet_addr, sizeof buf) == 0) {
152                         if (strcasecmp(buf, citadel_addr)) {
153                                 /* This address belongs to someone else.
154                                  * Bail out silently without saving.
155                                  */
156                                 syslog(LOG_DEBUG, "DOOP!\n");
157                                 
158                                 StrBufAppendPrintf(CCC->StatusMessage, "\n%d|", ERROR+ALREADY_EXISTS);
159                                 StrBufAppendBufPlain(CCC->StatusMessage, internet_addr, -1, 0);
160                                 StrBufAppendBufPlain(CCC->StatusMessage, HKEY("|"), 0);
161                                 StrBufAppendBufPlain(CCC->StatusMessage, _("unable to add this emailaddress again."), -1, 0);
162                                 StrBufAppendBufPlain(CCC->StatusMessage, HKEY("\n"), 0);
163                                 return 0;
164                         }
165                 }
166         }
167         syslog(LOG_INFO, "Adding %s (%s) to directory\n", citadel_addr, internet_addr);
168         if (CtdlDirectoryAddUser(internet_addr, citadel_addr))
169         {
170                 StrBufAppendPrintf(CCC->StatusMessage, "\n%d|", CIT_OK);
171                 StrBufAppendBufPlain(CCC->StatusMessage, internet_addr, -1, 0);
172                 StrBufAppendBufPlain(CCC->StatusMessage, HKEY("|"), 0);
173                 StrBufAppendBufPlain(CCC->StatusMessage, _("successfully addded emailaddress."), -1, 0);
174                 return 1;
175         }
176         else
177         {
178                 StrBufAppendPrintf(CCC->StatusMessage, "\n%d|", ERROR+ ILLEGAL_VALUE);
179                 StrBufAppendBufPlain(CCC->StatusMessage, internet_addr, -1, 0);
180                 StrBufAppendBufPlain(CCC->StatusMessage, HKEY("|"), 0);
181                 StrBufAppendBufPlain(CCC->StatusMessage, _("unable to add this emailaddress; its not matching our domain."), -1, 0);
182                 return 0;
183         }
184 }
185
186
187 /*
188  * Back end function for cmd_igab()
189  */
190 void vcard_add_to_directory(long msgnum, void *data) {
191         struct CtdlMessage *msg;
192
193         msg = CtdlFetchMessage(msgnum, 1);
194         if (msg != NULL) {
195                 vcard_extract_internet_addresses(msg, vcard_directory_add_user);
196         }
197
198         CtdlFreeMessage(msg);
199 }
200
201
202 /*
203  * Initialize Global Adress Book
204  */
205 void cmd_igab(char *argbuf) {
206         char hold_rm[ROOMNAMELEN];
207
208         if (CtdlAccessCheck(ac_aide)) return;
209
210         strcpy(hold_rm, CC->room.QRname);       /* save current room */
211
212         if (CtdlGetRoom(&CC->room, ADDRESS_BOOK_ROOM) != 0) {
213                 CtdlGetRoom(&CC->room, hold_rm);
214                 cprintf("%d cannot get address book room\n", ERROR + ROOM_NOT_FOUND);
215                 return;
216         }
217
218         /* Empty the existing database first.
219          */
220         CtdlDirectoryInit();
221
222         /* We want *all* vCards in this room */
223         NewStrBufDupAppendFlush(&CC->StatusMessage, NULL, NULL, 0);
224         CtdlForEachMessage(MSGS_ALL, 0, NULL, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$",
225                 NULL, vcard_add_to_directory, NULL);
226
227         CtdlGetRoom(&CC->room, hold_rm);        /* return to saved room */
228         cprintf("%d Directory has been rebuilt.\n", CIT_OK);
229 }
230
231
232
233
234 /*
235  * See if there is a valid Internet address in a vCard to use for outbound
236  * Internet messages.  If there is, stick it in the buffer.
237  */
238 void extract_inet_email_addrs(char *emailaddrbuf, size_t emailaddrbuf_len,
239                               char *secemailaddrbuf, size_t secemailaddrbuf_len,
240                               struct vCard *v,
241                               int local_addrs_only)
242 {
243         struct CitContext *CCC = CC;            /* put this on the stack, just for speed */
244         char *s, *k, *addr;
245         int instance = 0;
246         int IsDirectoryAddress;
247         int saved_instance = 0;
248
249         /* Go through the vCard searching for *all* Internet email addresses
250          */
251         while (s = vcard_get_prop(v, "email", 1, instance, 0),  s != NULL) {
252                 k = vcard_get_prop(v, "email", 1, instance, 1);
253                 if ( (s != NULL) && (k != NULL) && (bmstrcasestr(k, "internet")) ) {
254                         addr = strdup(s);
255                         striplt(addr);
256                         if (!IsEmptyStr(addr)) {
257                                 IsDirectoryAddress = IsDirectory(addr, 1);
258                                 if ( IsDirectoryAddress || !local_addrs_only)
259                                 {
260                                         ++saved_instance;
261                                         if ((saved_instance == 1) && (emailaddrbuf != NULL)) {
262                                                 safestrncpy(emailaddrbuf, addr, emailaddrbuf_len);
263                                         }
264                                         else if ((saved_instance == 2) && (secemailaddrbuf != NULL)) {
265                                                 safestrncpy(secemailaddrbuf, addr, secemailaddrbuf_len);
266                                         }
267                                         else if ((saved_instance > 2) && (secemailaddrbuf != NULL)) {
268                                                 if ( (strlen(addr) + strlen(secemailaddrbuf) + 2) 
269                                                 < secemailaddrbuf_len ) {
270                                                         strcat(secemailaddrbuf, "|");
271                                                         strcat(secemailaddrbuf, addr);
272                                                 }
273                                         }
274                                 }
275                                 if (!IsDirectoryAddress && local_addrs_only)
276                                 {
277                                         StrBufAppendPrintf(CCC->StatusMessage, "\n%d|", ERROR+ ILLEGAL_VALUE);
278                                         StrBufAppendBufPlain(CCC->StatusMessage, addr, -1, 0);
279                                         StrBufAppendBufPlain(CCC->StatusMessage, HKEY("|"), 0);
280                                         StrBufAppendBufPlain(CCC->StatusMessage, _("unable to add this emailaddress; its not matching our domain."), -1, 0);
281                                 }
282                         }
283                         free(addr);
284                 }
285                 ++instance;
286         }
287 }
288
289
290
291 /*
292  * See if there is a name / screen name / friendly name  in a vCard to use for outbound
293  * Internet messages.  If there is, stick it in the buffer.
294  */
295 void extract_friendly_name(char *namebuf, size_t namebuf_len, struct vCard *v)
296 {
297         char *s;
298
299         s = vcard_get_prop(v, "fn", 1, 0, 0);
300         if (s == NULL) {
301                 s = vcard_get_prop(v, "n", 1, 0, 0);
302         }
303
304         if (s != NULL) {
305                 safestrncpy(namebuf, s, namebuf_len);
306         }
307 }
308
309
310 /*
311  * Callback function for vcard_upload_beforesave() hunts for the real vcard in the MIME structure
312  */
313 void vcard_extract_vcard(char *name, char *filename, char *partnum, char *disp,
314                    void *content, char *cbtype, char *cbcharset, size_t length,
315                    char *encoding, char *cbid, void *cbuserdata)
316 {
317         struct vCard **v = (struct vCard **) cbuserdata;
318
319         if (  (!strcasecmp(cbtype, "text/x-vcard"))
320            || (!strcasecmp(cbtype, "text/vcard")) ) {
321
322                 syslog(LOG_DEBUG, "Part %s contains a vCard!  Loading...\n", partnum);
323                 if (*v != NULL) {
324                         vcard_free(*v);
325                 }
326                 *v = vcard_load(content);
327         }
328 }
329
330
331 /*
332  * This handler detects whether the user is attempting to save a new
333  * vCard as part of his/her personal configuration, and handles the replace
334  * function accordingly (delete the user's existing vCard in the config room
335  * and in the global address book).
336  */
337 int vcard_upload_beforesave(struct CtdlMessage *msg) {
338         char *ptr;
339         char *s;
340         char buf[SIZ];
341         struct ctdluser usbuf;
342         long what_user;
343         struct vCard *v = NULL;
344         char *ser = NULL;
345         int i = 0;
346         int yes_my_citadel_config = 0;
347         int yes_any_vcard_room = 0;
348
349         if (!CC->logged_in) return(0);  /* Only do this if logged in. */
350
351         /* Is this some user's "My Citadel Config" room? */
352         if ( (CC->room.QRflags && QR_MAILBOX)
353            && (!strcasecmp(&CC->room.QRname[11], USERCONFIGROOM)) ) {
354                 /* Yes, we want to do this */
355                 yes_my_citadel_config = 1;
356
357 #ifdef VCARD_SAVES_BY_AIDES_ONLY
358                 /* Prevent non-aides from performing registration changes */
359                 if (CC->user.axlevel < AxAideU) {
360                         return(1);
361                 }
362 #endif
363
364         }
365
366         /* Is this a room with an address book in it? */
367         if (CC->room.QRdefaultview == VIEW_ADDRESSBOOK) {
368                 yes_any_vcard_room = 1;
369         }
370
371         /* If neither condition exists, don't run this hook. */
372         if ( (!yes_my_citadel_config) && (!yes_any_vcard_room) ) {
373                 return(0);
374         }
375
376         /* If this isn't a MIME message, don't bother. */
377         if (msg->cm_format_type != 4) return(0);
378
379         /* Ok, if we got this far, look into the situation further... */
380
381         ptr = msg->cm_fields['M'];
382         if (ptr == NULL) return(0);
383
384         mime_parser(msg->cm_fields['M'],
385                 NULL,
386                 *vcard_extract_vcard,
387                 NULL, NULL,
388                 &v,             /* user data ptr - put the vcard here */
389                 0
390         );
391
392         if (v == NULL) return(0);       /* no vCards were found in this message */
393
394         /* If users cannot create their own accounts, they cannot re-register either. */
395         if ( (yes_my_citadel_config) && (config.c_disable_newu) && (CC->user.axlevel < AxAideU) ) {
396                 return(1);
397         }
398
399         s = vcard_get_prop(v, "fn", 1, 0, 0);
400
401         if (yes_my_citadel_config) {
402                 /* Bingo!  The user is uploading a new vCard, so
403                  * delete the old one.  First, figure out which user
404                  * is being re-registered...
405                  */
406                 what_user = atol(CC->room.QRname);
407
408                 if (what_user == CC->user.usernum) {
409                         /* It's the logged in user.  That was easy. */
410                         memcpy(&usbuf, &CC->user, sizeof(struct ctdluser));
411                 }
412                 
413                 else if (CtdlGetUserByNumber(&usbuf, what_user) == 0) {
414                         /* We fetched a valid user record */
415                 }
416
417                 else {
418                         /* somebody set up us the bomb! */
419                         yes_my_citadel_config = 0;
420                 }
421         }
422         
423         if (yes_my_citadel_config) {
424                 /* Delete the user's old vCard.  This would probably
425                  * get taken care of by the replication check, but we
426                  * want to make sure there is absolutely only one
427                  * vCard in the user's config room at all times.
428                  *
429                  */
430                 CtdlDeleteMessages(CC->room.QRname, NULL, 0, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$");
431
432                 /* Make the author of the message the name of the user. */
433                 if (msg->cm_fields['A'] != NULL) {
434                         free(msg->cm_fields['A']);
435                 }
436                 msg->cm_fields['A'] = strdup(usbuf.fullname);
437         }
438
439         /* Insert or replace RFC2739-compliant free/busy URL */
440         if (yes_my_citadel_config) {
441                 sprintf(buf, "http://%s/%s.vfb",
442                         config.c_fqdn,
443                         usbuf.fullname);
444                 for (i=0; buf[i]; ++i) {
445                         if (buf[i] == ' ') buf[i] = '_';
446                 }
447                 vcard_set_prop(v, "FBURL;PREF", buf, 0);
448         }
449
450         /* If the vCard has no UID, then give it one. */
451         s = vcard_get_prop(v, "UID", 1, 0, 0);
452         if (s == NULL) {
453                 generate_uuid(buf);
454                 vcard_set_prop(v, "UID", buf, 0);
455         }
456
457         /* Enforce local UID policy if applicable */
458         if (yes_my_citadel_config) {
459                 snprintf(buf, sizeof buf, VCARD_EXT_FORMAT, msg->cm_fields['A'], NODENAME);
460                 vcard_set_prop(v, "UID", buf, 0);
461         }
462
463         /* 
464          * Set the EUID of the message to the UID of the vCard.
465          */
466         if (msg->cm_fields['E'] != NULL)
467         {
468                 free(msg->cm_fields['E']);
469                 msg->cm_fields['E'] = NULL;
470         }
471         s = vcard_get_prop(v, "UID", 1, 0, 0);
472         if (s != NULL) {
473                 msg->cm_fields['E'] = strdup(s);
474                 if (msg->cm_fields['U'] == NULL) {
475                         msg->cm_fields['U'] = strdup(s);
476                 }
477         }
478
479         /*
480          * Set the Subject to the name in the vCard.
481          */
482         s = vcard_get_prop(v, "FN", 1, 0, 0);
483         if (s == NULL) {
484                 s = vcard_get_prop(v, "N", 1, 0, 0);
485         }
486         if (s != NULL) {
487                 if (msg->cm_fields['U'] != NULL) {
488                         free(msg->cm_fields['U']);
489                 }
490                 msg->cm_fields['U'] = strdup(s);
491         }
492
493         /* Re-serialize it back into the msg body */
494         ser = vcard_serialize(v);
495         if (ser != NULL) {
496                 msg->cm_fields['M'] = realloc(msg->cm_fields['M'], strlen(ser) + 1024);
497                 sprintf(msg->cm_fields['M'],
498                         "Content-type: " VCARD_MIME_TYPE
499                         "\r\n\r\n%s\r\n", ser);
500                 free(ser);
501         }
502
503         /* Now allow the save to complete. */
504         vcard_free(v);
505         return(0);
506 }
507
508
509
510 /*
511  * This handler detects whether the user is attempting to save a new
512  * vCard as part of his/her personal configuration, and handles the replace
513  * function accordingly (copy the vCard from the config room to the global
514  * address book).
515  */
516 int vcard_upload_aftersave(struct CtdlMessage *msg) {
517         char *ptr;
518         int linelen;
519         long I;
520         struct vCard *v;
521         int is_UserConf=0;
522         int is_MY_UserConf=0;
523         int is_GAB=0;
524         char roomname[ROOMNAMELEN];
525
526         if (msg->cm_format_type != 4) return(0);
527         if (!CC->logged_in) return(0);  /* Only do this if logged in. */
528
529         /* We're interested in user config rooms only. */
530
531         if ( (strlen(CC->room.QRname) >= 12) && (!strcasecmp(&CC->room.QRname[11], USERCONFIGROOM)) ) {
532                 is_UserConf = 1;        /* It's someone's config room */
533         }
534         CtdlMailboxName(roomname, sizeof roomname, &CC->user, USERCONFIGROOM);
535         if (!strcasecmp(CC->room.QRname, roomname)) {
536                 is_UserConf = 1;
537                 is_MY_UserConf = 1;     /* It's MY config room */
538         }
539         if (!strcasecmp(CC->room.QRname, ADDRESS_BOOK_ROOM)) {
540                 is_GAB = 1;             /* It's the Global Address Book */
541         }
542
543         if (!is_UserConf && !is_GAB) return(0);
544
545         ptr = msg->cm_fields['M'];
546         if (ptr == NULL) return(0);
547
548         NewStrBufDupAppendFlush(&CC->StatusMessage, NULL, NULL, 0);
549
550         StrBufPrintf(CC->StatusMessage, "%d\n", LISTING_FOLLOWS);
551
552         while (ptr != NULL) {
553         
554                 linelen = strcspn(ptr, "\n");
555                 if (linelen == 0) return(0);    /* end of headers */    
556                 
557                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
558                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
559                         /*
560                          * Bingo!  The user is uploading a new vCard, so
561                          * copy it to the Global Address Book room.
562                          */
563
564                         I = atol(msg->cm_fields['3']);
565                         if (I <= 0L) return(0);
566
567                         /* Store our Internet return address in memory */
568                         if (is_MY_UserConf) {
569                                 v = vcard_load(msg->cm_fields['M']);
570                                 extract_inet_email_addrs(CC->cs_inet_email, sizeof CC->cs_inet_email,
571                                                 CC->cs_inet_other_emails, sizeof CC->cs_inet_other_emails,
572                                                 v, 1);
573                                 extract_friendly_name(CC->cs_inet_fn, sizeof CC->cs_inet_fn, v);
574                                 vcard_free(v);
575                         }
576
577                         if (!is_GAB)
578                         {       // This is not the GAB
579                                 /* Put it in the Global Address Book room... */
580                                 CtdlSaveMsgPointerInRoom(ADDRESS_BOOK_ROOM, I, 1, msg);
581                         }
582
583                         /* ...and also in the directory database. */
584                         vcard_add_to_directory(I, NULL);
585
586                         /* Some sites want an Aide to be notified when a
587                          * user registers or re-registers
588                          * But if the user was an Aide or was edited by an Aide then we can
589                          * Assume they don't need validating.
590                          */
591                         if (CC->user.axlevel >= AxAideU) {
592                                 CtdlGetUserLock(&CC->user, CC->curr_user);
593                                 CC->user.flags |= US_REGIS;
594                                 CtdlPutUserLock(&CC->user);
595                                 return (0);
596                         }
597                         
598                         set_mm_valid();
599
600                         /* ...which also means we need to flag the user */
601                         CtdlGetUserLock(&CC->user, CC->curr_user);
602                         CC->user.flags |= (US_REGIS|US_NEEDVALID);
603                         CtdlPutUserLock(&CC->user);
604
605                         return(0);
606                 }
607
608                 ptr = strchr((char *)ptr, '\n');
609                 if (ptr != NULL) ++ptr;
610         }
611
612         return(0);
613 }
614
615
616
617 /*
618  * back end function used for callbacks
619  */
620 void vcard_gu_backend(long supplied_msgnum, void *userdata) {
621         long *msgnum;
622
623         msgnum = (long *) userdata;
624         *msgnum = supplied_msgnum;
625 }
626
627
628 /*
629  * If this user has a vcard on disk, read it into memory, otherwise allocate
630  * and return an empty vCard.
631  */
632 struct vCard *vcard_get_user(struct ctdluser *u) {
633         char hold_rm[ROOMNAMELEN];
634         char config_rm[ROOMNAMELEN];
635         struct CtdlMessage *msg = NULL;
636         struct vCard *v;
637         long VCmsgnum;
638
639         strcpy(hold_rm, CC->room.QRname);       /* save current room */
640         CtdlMailboxName(config_rm, sizeof config_rm, u, USERCONFIGROOM);
641
642         if (CtdlGetRoom(&CC->room, config_rm) != 0) {
643                 CtdlGetRoom(&CC->room, hold_rm);
644                 return vcard_new();
645         }
646
647         /* We want the last (and probably only) vcard in this room */
648         VCmsgnum = (-1);
649         CtdlForEachMessage(MSGS_LAST, 1, NULL, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$",
650                 NULL, vcard_gu_backend, (void *)&VCmsgnum );
651         CtdlGetRoom(&CC->room, hold_rm);        /* return to saved room */
652
653         if (VCmsgnum < 0L) return vcard_new();
654
655         msg = CtdlFetchMessage(VCmsgnum, 1);
656         if (msg == NULL) return vcard_new();
657
658         v = vcard_load(msg->cm_fields['M']);
659         CtdlFreeMessage(msg);
660         return v;
661 }
662
663
664 /*
665  * Store this user's vCard in the appropriate place
666  */
667 /*
668  * Write our config to disk
669  */
670 void vcard_write_user(struct ctdluser *u, struct vCard *v) {
671         char *ser;
672
673         ser = vcard_serialize(v);
674         if (ser == NULL) {
675                 ser = strdup("begin:vcard\r\nend:vcard\r\n");
676         }
677         if (!ser) return;
678
679         /* This handy API function does all the work for us.
680          * NOTE: normally we would want to set that last argument to 1, to
681          * force the system to delete the user's old vCard.  But it doesn't
682          * have to, because the vcard_upload_beforesave() hook above
683          * is going to notice what we're trying to do, and delete the old vCard.
684          */
685         CtdlWriteObject(USERCONFIGROOM,         /* which room */
686                         VCARD_MIME_TYPE,        /* MIME type */
687                         ser,                    /* data */
688                         strlen(ser)+1,          /* length */
689                         u,                      /* which user */
690                         0,                      /* not binary */
691                         0,                      /* don't delete others of this type */
692                         0);                     /* no flags */
693
694         free(ser);
695 }
696
697
698
699 /*
700  * Old style "enter registration info" command.  This function simply honors
701  * the REGI protocol command, translates the entered parameters into a vCard,
702  * and enters the vCard into the user's configuration.
703  */
704 void cmd_regi(char *argbuf) {
705         int a,b,c;
706         char buf[SIZ];
707         struct vCard *my_vcard;
708
709         char tmpaddr[SIZ];
710         char tmpcity[SIZ];
711         char tmpstate[SIZ];
712         char tmpzip[SIZ];
713         char tmpaddress[SIZ];
714         char tmpcountry[SIZ];
715
716         unbuffer_output();
717
718         if (!(CC->logged_in)) {
719                 cprintf("%d Not logged in.\n",ERROR + NOT_LOGGED_IN);
720                 return;
721         }
722
723         /* If users cannot create their own accounts, they cannot re-register either. */
724         if ( (config.c_disable_newu) && (CC->user.axlevel < AxAideU) ) {
725                 cprintf("%d Self-service registration is not allowed here.\n",
726                         ERROR + HIGHER_ACCESS_REQUIRED);
727         }
728
729         my_vcard = vcard_get_user(&CC->user);
730         strcpy(tmpaddr, "");
731         strcpy(tmpcity, "");
732         strcpy(tmpstate, "");
733         strcpy(tmpzip, "");
734         strcpy(tmpcountry, "USA");
735
736         cprintf("%d Send registration...\n", SEND_LISTING);
737         a=0;
738         while (client_getln(buf, sizeof buf), strcmp(buf,"000")) {
739                 if (a==0) vcard_set_prop(my_vcard, "n", buf, 0);
740                 if (a==1) strcpy(tmpaddr, buf);
741                 if (a==2) strcpy(tmpcity, buf);
742                 if (a==3) strcpy(tmpstate, buf);
743                 if (a==4) {
744                         for (c=0; buf[c]; ++c) {
745                                 if ((buf[c]>='0') && (buf[c]<='9')) {
746                                         b = strlen(tmpzip);
747                                         tmpzip[b] = buf[c];
748                                         tmpzip[b+1] = 0;
749                                 }
750                         }
751                 }
752                 if (a==5) vcard_set_prop(my_vcard, "tel", buf, 0);
753                 if (a==6) vcard_set_prop(my_vcard, "email;internet", buf, 0);
754                 if (a==7) strcpy(tmpcountry, buf);
755                 ++a;
756         }
757
758         snprintf(tmpaddress, sizeof tmpaddress, ";;%s;%s;%s;%s;%s",
759                 tmpaddr, tmpcity, tmpstate, tmpzip, tmpcountry);
760         vcard_set_prop(my_vcard, "adr", tmpaddress, 0);
761         vcard_write_user(&CC->user, my_vcard);
762         vcard_free(my_vcard);
763 }
764
765
766 /*
767  * Protocol command to fetch registration info for a user
768  */
769 void cmd_greg(char *argbuf)
770 {
771         struct ctdluser usbuf;
772         struct vCard *v;
773         char *s;
774         char who[USERNAME_SIZE];
775         char adr[256];
776         char buf[256];
777
778         extract_token(who, argbuf, 0, '|', sizeof who);
779
780         if (!(CC->logged_in)) {
781                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
782                 return;
783         }
784
785         if (!strcasecmp(who,"_SELF_")) strcpy(who,CC->curr_user);
786
787         if ((CC->user.axlevel < AxAideU) && (strcasecmp(who,CC->curr_user))) {
788                 cprintf("%d Higher access required.\n",
789                         ERROR + HIGHER_ACCESS_REQUIRED);
790                 return;
791         }
792
793         if (CtdlGetUser(&usbuf, who) != 0) {
794                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, who);
795                 return;
796         }
797
798         v = vcard_get_user(&usbuf);
799
800         cprintf("%d %s\n", LISTING_FOLLOWS, usbuf.fullname);
801         cprintf("%ld\n", usbuf.usernum);
802         cprintf("%s\n", usbuf.password);
803         s = vcard_get_prop(v, "n", 1, 0, 0);
804         cprintf("%s\n", s ? s : " ");   /* name */
805
806         s = vcard_get_prop(v, "adr", 1, 0, 0);
807         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
808
809         extract_token(buf, adr, 2, ';', sizeof buf);
810         cprintf("%s\n", buf);                           /* street */
811         extract_token(buf, adr, 3, ';', sizeof buf);
812         cprintf("%s\n", buf);                           /* city */
813         extract_token(buf, adr, 4, ';', sizeof buf);
814         cprintf("%s\n", buf);                           /* state */
815         extract_token(buf, adr, 5, ';', sizeof buf);
816         cprintf("%s\n", buf);                           /* zip */
817
818         s = vcard_get_prop(v, "tel", 1, 0, 0);
819         if (s == NULL) s = vcard_get_prop(v, "tel", 1, 0, 0);
820         if (s != NULL) {
821                 cprintf("%s\n", s);
822         }
823         else {
824                 cprintf(" \n");
825         }
826
827         cprintf("%d\n", usbuf.axlevel);
828
829         s = vcard_get_prop(v, "email;internet", 0, 0, 0);
830         cprintf("%s\n", s ? s : " ");
831         s = vcard_get_prop(v, "adr", 0, 0, 0);
832         snprintf(adr, sizeof adr, "%s", s ? s : " ");/* address... */
833
834         extract_token(buf, adr, 6, ';', sizeof buf);
835         cprintf("%s\n", buf);                           /* country */
836         cprintf("000\n");
837         vcard_free(v);
838 }
839
840
841
842 /*
843  * When a user is being created, create his/her vCard.
844  */
845 void vcard_newuser(struct ctdluser *usbuf) {
846         char vname[256];
847         char buf[256];
848         int i;
849         struct vCard *v;
850
851         vcard_fn_to_n(vname, usbuf->fullname, sizeof vname);
852         syslog(LOG_DEBUG, "Converted <%s> to <%s>\n", usbuf->fullname, vname);
853
854         /* Create and save the vCard */
855         v = vcard_new();
856         if (v == NULL) return;
857         vcard_add_prop(v, "fn", usbuf->fullname);
858         vcard_add_prop(v, "n", vname);
859         vcard_add_prop(v, "adr", "adr:;;_;_;_;00000;__");
860
861 #ifdef HAVE_GETPWUID_R
862         /* If using host auth mode, we add an email address based on the login */
863         if (config.c_auth_mode == AUTHMODE_HOST) {
864                 struct passwd pwd;
865                 char pwd_buffer[SIZ];
866                 
867 #ifdef SOLARIS_GETPWUID
868                 if (getpwuid_r(usbuf->uid, &pwd, pwd_buffer, sizeof pwd_buffer) != NULL) {
869 #else // SOLARIS_GETPWUID
870                 struct passwd *result = NULL;
871                 syslog(LOG_DEBUG, "Searching for uid %d\n", usbuf->uid);
872                 if (getpwuid_r(usbuf->uid, &pwd, pwd_buffer, sizeof pwd_buffer, &result) == 0) {
873 #endif // HAVE_GETPWUID_R
874                         snprintf(buf, sizeof buf, "%s@%s", pwd.pw_name, config.c_fqdn);
875                         vcard_add_prop(v, "email;internet", buf);
876                 }
877         }
878 #endif
879
880         /* Everyone gets an email address based on their display name */
881         snprintf(buf, sizeof buf, "%s@%s", usbuf->fullname, config.c_fqdn);
882         for (i=0; buf[i]; ++i) {
883                 if (buf[i] == ' ') buf[i] = '_';
884         }
885         vcard_add_prop(v, "email;internet", buf);
886
887
888         vcard_write_user(usbuf, v);
889         vcard_free(v);
890 }
891
892
893 /*
894  * When a user is being deleted, we have to remove his/her vCard.
895  * This is accomplished by issuing a message with 'CANCEL' in the S (special)
896  * field, and the same Exclusive ID as the existing card.
897  */
898 void vcard_purge(struct ctdluser *usbuf) {
899         struct CtdlMessage *msg;
900         char buf[SIZ];
901
902         msg = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
903         if (msg == NULL) return;
904         memset(msg, 0, sizeof(struct CtdlMessage));
905
906         msg->cm_magic = CTDLMESSAGE_MAGIC;
907         msg->cm_anon_type = MES_NORMAL;
908         msg->cm_format_type = 0;
909         msg->cm_fields['A'] = strdup(usbuf->fullname);
910         msg->cm_fields['O'] = strdup(ADDRESS_BOOK_ROOM);
911         msg->cm_fields['N'] = strdup(NODENAME);
912         msg->cm_fields['M'] = strdup("Purge this vCard\n");
913
914         snprintf(buf, sizeof buf, VCARD_EXT_FORMAT,
915                         msg->cm_fields['A'], NODENAME);
916         msg->cm_fields['E'] = strdup(buf);
917
918         msg->cm_fields['S'] = strdup("CANCEL");
919
920         CtdlSubmitMsg(msg, NULL, ADDRESS_BOOK_ROOM, QP_EADDR);
921         CtdlFreeMessage(msg);
922 }
923
924
925 /*
926  * Grab vCard directory stuff out of incoming network messages
927  */
928 int vcard_extract_from_network(struct CtdlMessage *msg, char *target_room) {
929         char *ptr;
930         int linelen;
931
932         if (msg == NULL) return(0);
933
934         if (strcasecmp(target_room, ADDRESS_BOOK_ROOM)) {
935                 return(0);
936         }
937
938         if (msg->cm_format_type != 4) return(0);
939
940         ptr = msg->cm_fields['M'];
941         if (ptr == NULL) return(0);
942         while (ptr != NULL) {
943         
944                 linelen = strcspn(ptr, "\n");
945                 if (linelen == 0) return(0);    /* end of headers */    
946                 
947                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
948                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
949                         /* It's a vCard.  Add it to the directory. */
950                         vcard_extract_internet_addresses(msg, CtdlDirectoryAddUser);
951                         return(0);
952                 }
953
954                 ptr = strchr((char *)ptr, '\n');
955                 if (ptr != NULL) ++ptr;
956         }
957
958         return(0);
959 }
960
961
962
963 /* 
964  * When a vCard is being removed from the Global Address Book room, remove it
965  * from the directory as well.
966  */
967 void vcard_delete_remove(char *room, long msgnum) {
968         struct CtdlMessage *msg;
969         char *ptr;
970         int linelen;
971
972         if (msgnum <= 0L) return;
973         
974         if (room == NULL) return;
975
976         if (strcasecmp(room, ADDRESS_BOOK_ROOM)) {
977                 return;
978         }
979
980         msg = CtdlFetchMessage(msgnum, 1);
981         if (msg == NULL) return;
982
983         ptr = msg->cm_fields['M'];
984         if (ptr == NULL) goto EOH;
985         while (ptr != NULL) {
986                 linelen = strcspn(ptr, "\n");
987                 if (linelen == 0) goto EOH;
988                 
989                 if (  (!strncasecmp(ptr, "Content-type: text/x-vcard", 26))
990                    || (!strncasecmp(ptr, "Content-type: text/vcard", 24)) ) {
991                         /* Bingo!  A vCard is being deleted. */
992                         vcard_extract_internet_addresses(msg, CtdlDirectoryDelUser);
993                 }
994                 ptr = strchr((char *)ptr, '\n');
995                 if (ptr != NULL) ++ptr;
996         }
997
998 EOH:    CtdlFreeMessage(msg);
999 }
1000
1001
1002
1003 /*
1004  * Get Valid Screen Names
1005  */
1006 void cmd_gvsn(char *argbuf)
1007 {
1008         if (CtdlAccessCheck(ac_logged_in)) return;
1009
1010         cprintf("%d valid screen names:\n", LISTING_FOLLOWS);
1011         cprintf("%s\n", CC->user.fullname);
1012         if ( (!IsEmptyStr(CC->cs_inet_fn)) && (strcasecmp(CC->user.fullname, CC->cs_inet_fn)) ) {
1013                 cprintf("%s\n", CC->cs_inet_fn);
1014         }
1015         cprintf("000\n");
1016 }
1017
1018
1019 /*
1020  * Get Valid Email Addresses
1021  */
1022 void cmd_gvea(char *argbuf)
1023 {
1024         int num_secondary_emails = 0;
1025         int i;
1026         char buf[256];
1027
1028         if (CtdlAccessCheck(ac_logged_in)) return;
1029
1030         cprintf("%d valid email addresses:\n", LISTING_FOLLOWS);
1031         if (!IsEmptyStr(CC->cs_inet_email)) {
1032                 cprintf("%s\n", CC->cs_inet_email);
1033         }
1034         if (!IsEmptyStr(CC->cs_inet_other_emails)) {
1035                 num_secondary_emails = num_tokens(CC->cs_inet_other_emails, '|');
1036                 for (i=0; i<num_secondary_emails; ++i) {
1037                         extract_token(buf, CC->cs_inet_other_emails,i,'|',sizeof CC->cs_inet_other_emails);
1038                         cprintf("%s\n", buf);
1039                 }
1040         }
1041         cprintf("000\n");
1042 }
1043
1044
1045
1046
1047 /*
1048  * Callback function for cmd_dvca() that hunts for vCard content types
1049  * and outputs any email addresses found within.
1050  */
1051 void dvca_mime_callback(char *name, char *filename, char *partnum, char *disp,
1052                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1053                 char *cbid, void *cbuserdata) {
1054
1055         struct vCard *v;
1056         char displayname[256];
1057         int displayname_len;
1058         char emailaddr[256];
1059         int i;
1060         int has_commas = 0;
1061
1062         if ( (strcasecmp(cbtype, "text/vcard")) && (strcasecmp(cbtype, "text/x-vcard")) ) {
1063                 return;
1064         }
1065
1066         v = vcard_load(content);
1067         if (v == NULL) return;
1068
1069         extract_friendly_name(displayname, sizeof displayname, v);
1070         extract_inet_email_addrs(emailaddr, sizeof emailaddr, NULL, 0, v, 0);
1071
1072         displayname_len = strlen(displayname);
1073         for (i=0; i<displayname_len; ++i) {
1074                 if (displayname[i] == '\"') displayname[i] = ' ';
1075                 if (displayname[i] == ';') displayname[i] = ',';
1076                 if (displayname[i] == ',') has_commas = 1;
1077         }
1078         striplt(displayname);
1079
1080         cprintf("%s%s%s <%s>\n",
1081                 (has_commas ? "\"" : ""),
1082                 displayname,
1083                 (has_commas ? "\"" : ""),
1084                 emailaddr
1085         );
1086
1087         vcard_free(v);
1088 }
1089
1090
1091 /*
1092  * Back end callback function for cmd_dvca()
1093  *
1094  * It's basically just passed a list of message numbers, which we're going
1095  * to fetch off the disk and then pass along to the MIME parser via another
1096  * layer of callback...
1097  */
1098 void dvca_callback(long msgnum, void *userdata) {
1099         struct CtdlMessage *msg = NULL;
1100
1101         msg = CtdlFetchMessage(msgnum, 1);
1102         if (msg == NULL) return;
1103         mime_parser(msg->cm_fields['M'],
1104                 NULL,
1105                 *dvca_mime_callback,    /* callback function */
1106                 NULL, NULL,
1107                 NULL,                   /* user data */
1108                 0
1109         );
1110         CtdlFreeMessage(msg);
1111 }
1112
1113
1114 /*
1115  * Dump VCard Addresses
1116  */
1117 void cmd_dvca(char *argbuf)
1118 {
1119         if (CtdlAccessCheck(ac_logged_in)) return;
1120
1121         cprintf("%d addresses:\n", LISTING_FOLLOWS);
1122         CtdlForEachMessage(MSGS_ALL, 0, NULL, NULL, NULL, dvca_callback, NULL);
1123         cprintf("000\n");
1124 }
1125
1126
1127 /*
1128  * Query Directory
1129  */
1130 void cmd_qdir(char *argbuf) {
1131         char citadel_addr[256];
1132         char internet_addr[256];
1133
1134         if (CtdlAccessCheck(ac_logged_in)) return;
1135
1136         extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr);
1137
1138         if (CtdlDirectoryLookup(citadel_addr, internet_addr, sizeof citadel_addr) != 0) {
1139                 cprintf("%d %s was not found.\n",
1140                         ERROR + NO_SUCH_USER, internet_addr);
1141                 return;
1142         }
1143
1144         cprintf("%d %s\n", CIT_OK, citadel_addr);
1145 }
1146
1147 /*
1148  * Query Directory, in fact an alias to match postfix tcp auth.
1149  */
1150 void check_get(void) {
1151         char internet_addr[256];
1152
1153         char cmdbuf[SIZ];
1154
1155         time(&CC->lastcmd);
1156         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
1157         if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
1158                 syslog(LOG_CRIT, "vcard client disconnected: ending session.\n");
1159                 CC->kill_me = KILLME_CLIENT_DISCONNECTED;
1160                 return;
1161         }
1162         syslog(LOG_INFO, ": %s\n", cmdbuf);
1163         while (strlen(cmdbuf) < 3) strcat(cmdbuf, " ");
1164         syslog(LOG_INFO, "[ %s]\n", cmdbuf);
1165         
1166         if (strncasecmp(cmdbuf, "GET ", 4)==0)
1167         {
1168                 struct recptypes *rcpt;
1169                 char *argbuf = &cmdbuf[4];
1170                 
1171                 extract_token(internet_addr, argbuf, 0, '|', sizeof internet_addr);
1172                 rcpt = validate_recipients(internet_addr, NULL, CHECK_EXISTANCE);
1173                 if ((rcpt != NULL)&&
1174                         (
1175                          (*rcpt->recp_local != '\0')||
1176                          (*rcpt->recp_room != '\0')||
1177                          (*rcpt->recp_ignet != '\0')))
1178                 {
1179
1180                         cprintf("200 OK %s\n", internet_addr);
1181                         syslog(LOG_INFO, "sending 200 OK for the room %s\n", rcpt->display_recp);
1182                 }
1183                 else 
1184                 {
1185                         cprintf("500 REJECT noone here by that name.\n");
1186                         
1187                         syslog(LOG_INFO, "sending 500 REJECT noone here by that name: %s\n", internet_addr);
1188                 }
1189                 if (rcpt != NULL) 
1190                         free_recipients(rcpt);
1191         }
1192         else 
1193         {
1194                 cprintf("500 REJECT invalid Query.\n");
1195                 
1196                 syslog(LOG_INFO, "sending 500 REJECT invalid Query: %s\n", internet_addr);
1197         }
1198 }
1199
1200 void check_get_greeting(void) {
1201 /* dummy function, we have no greeting in this verry simple protocol. */
1202 }
1203
1204
1205 /*
1206  * We don't know if the Contacts room exists so we just create it at login
1207  */
1208 void vcard_CtdlCreateRoom(void)
1209 {
1210         struct ctdlroom qr;
1211         visit vbuf;
1212
1213         /* Create the calendar room if it doesn't already exist */
1214         CtdlCreateRoom(USERCONTACTSROOM, 4, "", 0, 1, 0, VIEW_ADDRESSBOOK);
1215
1216         /* Set expiration policy to manual; otherwise objects will be lost! */
1217         if (CtdlGetRoomLock(&qr, USERCONTACTSROOM)) {
1218                 syslog(LOG_ERR, "Couldn't get the user CONTACTS room!\n");
1219                 return;
1220         }
1221         qr.QRep.expire_mode = EXPIRE_MANUAL;
1222         qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
1223         CtdlPutRoomLock(&qr);
1224
1225         /* Set the view to a calendar view */
1226         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1227         vbuf.v_view = 2;        /* 2 = address book view */
1228         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1229
1230         return;
1231 }
1232
1233
1234
1235
1236 /*
1237  * When a user logs in...
1238  */
1239 void vcard_session_login_hook(void) {
1240         struct vCard *v = NULL;
1241         struct CitContext *CCC = CC;            /* put this on the stack, just for speed */
1242
1243 #ifdef HAVE_LDAP
1244         /*
1245          * Is this an LDAP session?  If so, copy various LDAP attributes from the directory entry
1246          * into the user's vCard.
1247          */
1248         if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
1249                 v = vcard_get_user(&CCC->user);
1250                 if (v) {
1251                         if (Ctdl_LDAP_to_vCard(CCC->ldap_dn, v)) {
1252                                 vcard_write_user(&CCC->user, v);
1253                         }
1254                 }
1255         }
1256 #endif
1257
1258         /*
1259          * Extract from the user's vCard, any Internet email addresses and the user's real name.
1260          * These are inserted into the session data for various message entry commands to use.
1261          */
1262         v = vcard_get_user(&CCC->user);
1263         if (v) {
1264                 extract_inet_email_addrs(CCC->cs_inet_email, sizeof CCC->cs_inet_email,
1265                                         CCC->cs_inet_other_emails, sizeof CCC->cs_inet_other_emails,
1266                                         v, 1
1267                 );
1268                 extract_friendly_name(CCC->cs_inet_fn, sizeof CCC->cs_inet_fn, v);
1269                 vcard_free(v);
1270         }
1271
1272         /*
1273          * Create the user's 'Contacts' room (personal address book) if it doesn't already exist.
1274          */
1275         vcard_CtdlCreateRoom();
1276 }
1277
1278
1279 /* 
1280  * Turn an arbitrary RFC822 address into a struct vCard for possible
1281  * inclusion into an address book.
1282  */
1283 struct vCard *vcard_new_from_rfc822_addr(char *addr) {
1284         struct vCard *v;
1285         char user[256], node[256], name[256], email[256], n[256], uid[256];
1286         int i;
1287
1288         v = vcard_new();
1289         if (v == NULL) return(NULL);
1290
1291         process_rfc822_addr(addr, user, node, name);
1292         vcard_set_prop(v, "fn", name, 0);
1293
1294         vcard_fn_to_n(n, name, sizeof n);
1295         vcard_set_prop(v, "n", n, 0);
1296
1297         snprintf(email, sizeof email, "%s@%s", user, node);
1298         vcard_set_prop(v, "email;internet", email, 0);
1299
1300         snprintf(uid, sizeof uid, "collected: %s %s@%s", name, user, node);
1301         for (i=0; uid[i]; ++i) {
1302                 if (isspace(uid[i])) uid[i] = '_';
1303                 uid[i] = tolower(uid[i]);
1304         }
1305         vcard_set_prop(v, "UID", uid, 0);
1306
1307         return(v);
1308 }
1309
1310
1311
1312 /*
1313  * This is called by store_harvested_addresses() to remove from the
1314  * list any addresses we already have in our address book.
1315  */
1316 void strip_addresses_already_have(long msgnum, void *userdata) {
1317         char *collected_addresses;
1318         struct CtdlMessage *msg = NULL;
1319         struct vCard *v;
1320         char *value = NULL;
1321         int i, j;
1322         char addr[256], user[256], node[256], name[256];
1323
1324         collected_addresses = (char *)userdata;
1325
1326         msg = CtdlFetchMessage(msgnum, 1);
1327         if (msg == NULL) return;
1328         v = vcard_load(msg->cm_fields['M']);
1329         CtdlFreeMessage(msg);
1330
1331         i = 0;
1332         while (value = vcard_get_prop(v, "email", 1, i++, 0), value != NULL) {
1333
1334                 for (j=0; j<num_tokens(collected_addresses, ','); ++j) {
1335                         extract_token(addr, collected_addresses, j, ',', sizeof addr);
1336
1337                         /* Remove the address if we already have it! */
1338                         process_rfc822_addr(addr, user, node, name);
1339                         snprintf(addr, sizeof addr, "%s@%s", user, node);
1340                         if (!strcasecmp(value, addr)) {
1341                                 remove_token(collected_addresses, j, ',');
1342                         }
1343                 }
1344
1345         }
1346
1347         vcard_free(v);
1348 }
1349
1350
1351
1352 /*
1353  * Back end function for store_harvested_addresses()
1354  */
1355 void store_this_ha(struct addresses_to_be_filed *aptr) {
1356         struct CtdlMessage *vmsg = NULL;
1357         char *ser = NULL;
1358         struct vCard *v = NULL;
1359         char recipient[256];
1360         int i;
1361
1362         /* First remove any addresses we already have in the address book */
1363         CtdlUserGoto(aptr->roomname, 0, 0, NULL, NULL);
1364         CtdlForEachMessage(MSGS_ALL, 0, NULL, "[Tt][Ee][Xx][Tt]/.*[Vv][Cc][Aa][Rr][Dd]$", NULL,
1365                 strip_addresses_already_have, aptr->collected_addresses);
1366
1367         if (!IsEmptyStr(aptr->collected_addresses))
1368            for (i=0; i<num_tokens(aptr->collected_addresses, ','); ++i) {
1369
1370                 /* Make a vCard out of each address */
1371                 extract_token(recipient, aptr->collected_addresses, i, ',', sizeof recipient);
1372                 striplt(recipient);
1373                 v = vcard_new_from_rfc822_addr(recipient);
1374                 if (v != NULL) {
1375                         vmsg = malloc(sizeof(struct CtdlMessage));
1376                         memset(vmsg, 0, sizeof(struct CtdlMessage));
1377                         vmsg->cm_magic = CTDLMESSAGE_MAGIC;
1378                         vmsg->cm_anon_type = MES_NORMAL;
1379                         vmsg->cm_format_type = FMT_RFC822;
1380                         vmsg->cm_fields['A'] = strdup("Citadel");
1381                         vmsg->cm_fields['E'] =  strdup(vcard_get_prop(v, "UID", 1, 0, 0));
1382                         ser = vcard_serialize(v);
1383                         if (ser != NULL) {
1384                                 vmsg->cm_fields['M'] = malloc(strlen(ser) + 1024);
1385                                 sprintf(vmsg->cm_fields['M'],
1386                                         "Content-type: " VCARD_MIME_TYPE
1387                                         "\r\n\r\n%s\r\n", ser);
1388                                 free(ser);
1389                         }
1390                         vcard_free(v);
1391
1392                         syslog(LOG_DEBUG, "Adding contact: %s\n", recipient);
1393                         CtdlSubmitMsg(vmsg, NULL, aptr->roomname, QP_EADDR);
1394                         CtdlFreeMessage(vmsg);
1395                 }
1396         }
1397
1398         free(aptr->roomname);
1399         free(aptr->collected_addresses);
1400         free(aptr);
1401 }
1402
1403
1404 /*
1405  * When a user sends a message, we may harvest one or more email addresses
1406  * from the recipient list to be added to the user's address book.  But we
1407  * want to do this asynchronously so it doesn't keep the user waiting.
1408  */
1409 void store_harvested_addresses(void) {
1410
1411         struct addresses_to_be_filed *aptr = NULL;
1412
1413         if (atbf == NULL) return;
1414
1415         begin_critical_section(S_ATBF);
1416         while (atbf != NULL) {
1417                 aptr = atbf;
1418                 atbf = atbf->next;
1419                 end_critical_section(S_ATBF);
1420                 store_this_ha(aptr);
1421                 begin_critical_section(S_ATBF);
1422         }
1423         end_critical_section(S_ATBF);
1424 }
1425
1426
1427 /* 
1428  * Function to output vCard data as plain text.  Nobody uses MSG0 anymore, so
1429  * really this is just so we expose the vCard data to the full text indexer.
1430  */
1431 void vcard_fixed_output(char *ptr, int len) {
1432         char *serialized_vcard;
1433         struct vCard *v;
1434         char *key, *value;
1435         int i = 0;
1436
1437         serialized_vcard = malloc(len + 1);
1438         safestrncpy(serialized_vcard, ptr, len+1);
1439         v = vcard_load(serialized_vcard);
1440         free(serialized_vcard);
1441
1442         i = 0;
1443         while (key = vcard_get_prop(v, "", 0, i, 1), key != NULL) {
1444                 value = vcard_get_prop(v, "", 0, i++, 0);
1445                 cprintf("%s\n", value);
1446         }
1447
1448         vcard_free(v);
1449 }
1450
1451
1452 const char *CitadelServiceDICT_TCP="DICT_TCP";
1453
1454 CTDL_MODULE_INIT(vcard)
1455 {
1456         struct ctdlroom qr;
1457         char filename[256];
1458         FILE *fp;
1459         int rv = 0;
1460
1461         if (!threading)
1462         {
1463                 CtdlRegisterSessionHook(vcard_session_login_hook, EVT_LOGIN);
1464                 CtdlRegisterMessageHook(vcard_upload_beforesave, EVT_BEFORESAVE);
1465                 CtdlRegisterMessageHook(vcard_upload_aftersave, EVT_AFTERSAVE);
1466                 CtdlRegisterDeleteHook(vcard_delete_remove);
1467                 CtdlRegisterProtoHook(cmd_regi, "REGI", "Enter registration info");
1468                 CtdlRegisterProtoHook(cmd_greg, "GREG", "Get registration info");
1469                 CtdlRegisterProtoHook(cmd_igab, "IGAB", "Initialize Global Address Book");
1470                 CtdlRegisterProtoHook(cmd_qdir, "QDIR", "Query Directory");
1471                 CtdlRegisterProtoHook(cmd_gvsn, "GVSN", "Get Valid Screen Names");
1472                 CtdlRegisterProtoHook(cmd_gvea, "GVEA", "Get Valid Email Addresses");
1473                 CtdlRegisterProtoHook(cmd_dvca, "DVCA", "Dump VCard Addresses");
1474                 CtdlRegisterUserHook(vcard_newuser, EVT_NEWUSER);
1475                 CtdlRegisterUserHook(vcard_purge, EVT_PURGEUSER);
1476                 CtdlRegisterNetprocHook(vcard_extract_from_network);
1477                 CtdlRegisterSessionHook(store_harvested_addresses, EVT_TIMER);
1478                 CtdlRegisterFixedOutputHook("text/x-vcard", vcard_fixed_output);
1479                 CtdlRegisterFixedOutputHook("text/vcard", vcard_fixed_output);
1480
1481                 /* Create the Global ADdress Book room if necessary */
1482                 CtdlCreateRoom(ADDRESS_BOOK_ROOM, 3, "", 0, 1, 0, VIEW_ADDRESSBOOK);
1483
1484                 /* Set expiration policy to manual; otherwise objects will be lost! */
1485                 if (!CtdlGetRoomLock(&qr, ADDRESS_BOOK_ROOM)) {
1486                         qr.QRep.expire_mode = EXPIRE_MANUAL;
1487                         qr.QRdefaultview = VIEW_ADDRESSBOOK;    /* 2 = address book view */
1488                         CtdlPutRoomLock(&qr);
1489
1490                         /*
1491                          * Also make sure it has a netconfig file, so the networker runs
1492                          * on this room even if we don't share it with any other nodes.
1493                          * This allows the CANCEL messages (i.e. "Purge this vCard") to be
1494                          * purged.
1495                          */
1496                         assoc_file_name(filename, sizeof filename, &qr, ctdl_netcfg_dir);
1497                         fp = fopen(filename, "a");
1498                         if (fp != NULL) fclose(fp);
1499                         rv = chown(filename, CTDLUID, (-1));
1500                         if (rv == -1)
1501                                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
1502                                        filename, strerror(errno));
1503                 }
1504
1505                 /* for postfix tcpdict */
1506                 CtdlRegisterServiceHook(config.c_pftcpdict_port,        /* Postfix */
1507                                         NULL,
1508                                         check_get_greeting,
1509                                         check_get,
1510                                         NULL,
1511                                         CitadelServiceDICT_TCP);
1512         }
1513         
1514         /* return our module name for the log */
1515         return "vcard";
1516 }