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