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