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