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