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