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