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