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