Cleaning the API a bit more.
[citadel.git] / citadel / internet_addressing.c
1 /*
2  * $Id$
3  *
4  * This file contains functions which handle the mapping of Internet addresses
5  * to users on the Citadel system.
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <ctype.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <errno.h>
17 #include <sys/types.h>
18
19 #if TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # if HAVE_SYS_TIME_H
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 #include <sys/wait.h>
31 #include <string.h>
32 #include <limits.h>
33 #include <libcitadel.h>
34 #include "citadel.h"
35 #include "server.h"
36 #include "sysdep_decls.h"
37 #include "citserver.h"
38 #include "support.h"
39 #include "config.h"
40 #include "msgbase.h"
41 #include "internet_addressing.h"
42 #include "user_ops.h"
43 #include "room_ops.h"
44 #include "parsedate.h"
45 #include "database.h"
46
47 #include "ctdl_module.h"
48
49 #ifndef HAVE_SNPRINTF
50 #include "snprintf.h"
51 #endif
52
53
54 #ifdef HAVE_ICONV
55 #include <iconv.h>
56
57 #if 0
58 /* This is the non-define version in case of s.b. needing to debug */
59 inline void FindNextEnd (char *bptr, char *end)
60 {
61         /* Find the next ?Q? */
62         end = strchr(bptr + 2, '?');
63         if (end == NULL) return NULL;
64         if (((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && 
65             (*(end + 2) == '?')) {
66                 /* skip on to the end of the cluster, the next ?= */
67                 end = strstr(end + 3, "?=");
68         }
69         else
70                 /* sort of half valid encoding, try to find an end. */
71                 end = strstr(bptr, "?=");
72 }
73 #endif
74
75 #define FindNextEnd(bptr, end) { \
76         end = strchr(bptr + 2, '?'); \
77         if (end != NULL) { \
78                 if (((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && (*(end + 2) == '?')) { \
79                         end = strstr(end + 3, "?="); \
80                 } else end = strstr(bptr, "?="); \
81         } \
82 }
83
84 /*
85  * Handle subjects with RFC2047 encoding such as:
86  * =?koi8-r?B?78bP0s3Mxc7JxSDXz9rE1dvO2c3JINvB0sHNySDP?=
87  */
88 void utf8ify_rfc822_string(char *buf) {
89         char *start, *end, *next, *nextend, *ptr;
90         char newbuf[1024];
91         char charset[128];
92         char encoding[16];
93         char istr[1024];
94         iconv_t ic = (iconv_t)(-1) ;
95         char *ibuf;                     /**< Buffer of characters to be converted */
96         char *obuf;                     /**< Buffer for converted characters */
97         size_t ibuflen;                 /**< Length of input buffer */
98         size_t obuflen;                 /**< Length of output buffer */
99         char *isav;                     /**< Saved pointer to input buffer */
100         char *osav;                     /**< Saved pointer to output buffer */
101         int passes = 0;
102         int i, len, delta;
103         int illegal_non_rfc2047_encoding = 0;
104
105         /* Sometimes, badly formed messages contain strings which were simply
106          *  written out directly in some foreign character set instead of
107          *  using RFC2047 encoding.  This is illegal but we will attempt to
108          *  handle it anyway by converting from a user-specified default
109          *  charset to UTF-8 if we see any nonprintable characters.
110          */
111         len = strlen(buf);
112         for (i=0; i<len; ++i) {
113                 if ((buf[i] < 32) || (buf[i] > 126)) {
114                         illegal_non_rfc2047_encoding = 1;
115                         i = len; ///< take a shortcut, it won't be more than one.
116                 }
117         }
118         if (illegal_non_rfc2047_encoding) {
119                 const char *default_header_charset = "iso-8859-1";
120                 if ( (strcasecmp(default_header_charset, "UTF-8")) && (strcasecmp(default_header_charset, "us-ascii")) ) {
121                         ctdl_iconv_open("UTF-8", default_header_charset, &ic);
122                         if (ic != (iconv_t)(-1) ) {
123                                 ibuf = malloc(1024);
124                                 isav = ibuf;
125                                 safestrncpy(ibuf, buf, 1024);
126                                 ibuflen = strlen(ibuf);
127                                 obuflen = 1024;
128                                 obuf = (char *) malloc(obuflen);
129                                 osav = obuf;
130                                 iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
131                                 osav[1024-obuflen] = 0;
132                                 strcpy(buf, osav);
133                                 free(osav);
134                                 iconv_close(ic);
135                                 free(isav);
136                         }
137                 }
138         }
139
140         /* pre evaluate the first pair */
141         nextend = end = NULL;
142         len = strlen(buf);
143         start = strstr(buf, "=?");
144         if (start != NULL) 
145                 FindNextEnd (start, end);
146
147         while ((start != NULL) && (end != NULL))
148         {
149                 next = strstr(end, "=?");
150                 if (next != NULL)
151                         FindNextEnd(next, nextend);
152                 if (nextend == NULL)
153                         next = NULL;
154
155                 /* did we find two partitions */
156                 if ((next != NULL) && 
157                     ((next - end) > 2))
158                 {
159                         ptr = end + 2;
160                         while ((ptr < next) && 
161                                (isspace(*ptr) ||
162                                 (*ptr == '\r') ||
163                                 (*ptr == '\n') || 
164                                 (*ptr == '\t')))
165                                 ptr ++;
166                         /* did we find a gab just filled with blanks? */
167                         if (ptr == next)
168                         {
169                                 memmove (end + 2,
170                                          next,
171                                          len - (next - start));
172
173                                 /* now terminate the gab at the end */
174                                 delta = (next - end) - 2;
175                                 len -= delta;
176                                 buf[len] = '\0';
177
178                                 /* move next to its new location. */
179                                 next -= delta;
180                                 nextend -= delta;
181                         }
182                 }
183                 /* our next-pair is our new first pair now. */
184                 start = next;
185                 end = nextend;
186         }
187
188         /* Now we handle foreign character sets properly encoded
189          * in RFC2047 format.
190          */
191         start = strstr(buf, "=?");
192         FindNextEnd((start != NULL)? start : buf, end);
193         while (start != NULL && end != NULL && end > start)
194         {
195                 extract_token(charset, start, 1, '?', sizeof charset);
196                 extract_token(encoding, start, 2, '?', sizeof encoding);
197                 extract_token(istr, start, 3, '?', sizeof istr);
198
199                 ibuf = malloc(1024);
200                 isav = ibuf;
201                 if (!strcasecmp(encoding, "B")) {       /**< base64 */
202                         ibuflen = CtdlDecodeBase64(ibuf, istr, strlen(istr));
203                 }
204                 else if (!strcasecmp(encoding, "Q")) {  /**< quoted-printable */
205                         size_t len;
206                         long pos;
207                         
208                         len = strlen(istr);
209                         pos = 0;
210                         while (pos < len)
211                         {
212                                 if (istr[pos] == '_') istr[pos] = ' ';
213                                 pos++;
214                         }
215
216                         ibuflen = CtdlDecodeQuotedPrintable(ibuf, istr, len);
217                 }
218                 else {
219                         strcpy(ibuf, istr);             /**< unknown encoding */
220                         ibuflen = strlen(istr);
221                 }
222
223                 ctdl_iconv_open("UTF-8", charset, &ic);
224                 if (ic != (iconv_t)(-1) ) {
225                         obuflen = 1024;
226                         obuf = (char *) malloc(obuflen);
227                         osav = obuf;
228                         iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
229                         osav[1024-obuflen] = 0;
230
231                         end = start;
232                         end++;
233                         strcpy(start, "");
234                         remove_token(end, 0, '?');
235                         remove_token(end, 0, '?');
236                         remove_token(end, 0, '?');
237                         remove_token(end, 0, '?');
238                         strcpy(end, &end[1]);
239
240                         snprintf(newbuf, sizeof newbuf, "%s%s%s", buf, osav, end);
241                         strcpy(buf, newbuf);
242                         free(osav);
243                         iconv_close(ic);
244                 }
245                 else {
246                         end = start;
247                         end++;
248                         strcpy(start, "");
249                         remove_token(end, 0, '?');
250                         remove_token(end, 0, '?');
251                         remove_token(end, 0, '?');
252                         remove_token(end, 0, '?');
253                         strcpy(end, &end[1]);
254
255                         snprintf(newbuf, sizeof newbuf, "%s(unreadable)%s", buf, end);
256                         strcpy(buf, newbuf);
257                 }
258
259                 free(isav);
260
261                 /*
262                  * Since spammers will go to all sorts of absurd lengths to get their
263                  * messages through, there are LOTS of corrupt headers out there.
264                  * So, prevent a really badly formed RFC2047 header from throwing
265                  * this function into an infinite loop.
266                  */
267                 ++passes;
268                 if (passes > 20) return;
269
270                 start = strstr(buf, "=?");
271                 FindNextEnd((start != NULL)? start : buf, end);
272         }
273
274 }
275 #else
276 inline void utf8ify_rfc822_string(char *a){};
277
278 #endif
279
280
281
282 struct trynamebuf {
283         char buffer1[SIZ];
284         char buffer2[SIZ];
285 };
286
287 char *inetcfg = NULL;
288 struct spamstrings_t *spamstrings = NULL;
289
290
291 /*
292  * Return nonzero if the supplied name is an alias for this host.
293  */
294 int CtdlHostAlias(char *fqdn) {
295         int config_lines;
296         int i;
297         char buf[256];
298         char host[256], type[256];
299         int found = 0;
300
301         if (fqdn == NULL) return(hostalias_nomatch);
302         if (IsEmptyStr(fqdn)) return(hostalias_nomatch);
303         if (!strcasecmp(fqdn, "localhost")) return(hostalias_localhost);
304         if (!strcasecmp(fqdn, config.c_fqdn)) return(hostalias_localhost);
305         if (!strcasecmp(fqdn, config.c_nodename)) return(hostalias_localhost);
306         if (inetcfg == NULL) return(hostalias_nomatch);
307
308         config_lines = num_tokens(inetcfg, '\n');
309         for (i=0; i<config_lines; ++i) {
310                 extract_token(buf, inetcfg, i, '\n', sizeof buf);
311                 extract_token(host, buf, 0, '|', sizeof host);
312                 extract_token(type, buf, 1, '|', sizeof type);
313
314                 found = 0;
315
316                 /* Process these in a specific order, in case there are multiple matches.
317                  * We want directory to override masq, for example.
318                  */
319
320                 if ( (!strcasecmp(type, "masqdomain")) && (!strcasecmp(fqdn, host))) {
321                         found = hostalias_masq;
322                 }
323                 if ( (!strcasecmp(type, "localhost")) && (!strcasecmp(fqdn, host))) {
324                         found = hostalias_localhost;
325                 }
326                 if ( (!strcasecmp(type, "directory")) && (!strcasecmp(fqdn, host))) {
327                         found = hostalias_directory;
328                 }
329
330                 if (found) return(found);
331         }
332
333         return(hostalias_nomatch);
334 }
335
336
337
338
339
340
341
342 /*
343  * Return 0 if a given string fuzzy-matches a Citadel user account
344  *
345  * FIXME ... this needs to be updated to handle aliases.
346  */
347 int fuzzy_match(struct ctdluser *us, char *matchstring) {
348         int a;
349         long len;
350
351         if ( (!strncasecmp(matchstring, "cit", 3)) 
352            && (atol(&matchstring[3]) == us->usernum)) {
353                 return 0;
354         }
355
356         len = strlen(matchstring);
357         for (a=0; !IsEmptyStr(&us->fullname[a]); ++a) {
358                 if (!strncasecmp(&us->fullname[a],
359                    matchstring, len)) {
360                         return 0;
361                 }
362         }
363         return -1;
364 }
365
366
367 /*
368  * Unfold a multi-line field into a single line, removing multi-whitespaces
369  */
370 void unfold_rfc822_field(char *field) {
371         int i;
372         int quote = 0;
373
374         striplt(field);         /* remove leading/trailing whitespace */
375
376         /* convert non-space whitespace to spaces, and remove double blanks */
377         for (i=0; i<strlen(field); ++i) {
378                 if (field[i]=='\"') quote = 1 - quote;
379                 if (!quote) {
380                         if (isspace(field[i])) field[i] = ' ';
381                         while (isspace(field[i]) && isspace(field[i+1])) {
382                                 strcpy(&field[i+1], &field[i+2]);
383                         }
384                 }
385         }
386 }
387
388
389
390 /*
391  * Split an RFC822-style address into userid, host, and full name
392  *
393  */
394 void process_rfc822_addr(const char *rfc822, char *user, char *node, char *name)
395 {
396         int a;
397
398         strcpy(user, "");
399         strcpy(node, config.c_fqdn);
400         strcpy(name, "");
401
402         if (rfc822 == NULL) return;
403
404         /* extract full name - first, it's From minus <userid> */
405         strcpy(name, rfc822);
406         stripout(name, '<', '>');
407
408         /* strip anything to the left of a bang */
409         while ((!IsEmptyStr(name)) && (haschar(name, '!') > 0))
410                 strcpy(name, &name[1]);
411
412         /* and anything to the right of a @ or % */
413         for (a = 0; a < strlen(name); ++a) {
414                 if (name[a] == '@')
415                         name[a] = 0;
416                 if (name[a] == '%')
417                         name[a] = 0;
418         }
419
420         /* but if there are parentheses, that changes the rules... */
421         if ((haschar(rfc822, '(') == 1) && (haschar(rfc822, ')') == 1)) {
422                 strcpy(name, rfc822);
423                 stripallbut(name, '(', ')');
424         }
425
426         /* but if there are a set of quotes, that supersedes everything */
427         if (haschar(rfc822, 34) == 2) {
428                 strcpy(name, rfc822);
429                 while ((!IsEmptyStr(name)) && (name[0] != 34)) {
430                         strcpy(&name[0], &name[1]);
431                 }
432                 strcpy(&name[0], &name[1]);
433                 for (a = 0; a < strlen(name); ++a)
434                         if (name[a] == 34)
435                                 name[a] = 0;
436         }
437         /* extract user id */
438         strcpy(user, rfc822);
439
440         /* first get rid of anything in parens */
441         stripout(user, '(', ')');
442
443         /* if there's a set of angle brackets, strip it down to that */
444         if ((haschar(user, '<') == 1) && (haschar(user, '>') == 1)) {
445                 stripallbut(user, '<', '>');
446         }
447
448         /* strip anything to the left of a bang */
449         while ((!IsEmptyStr(user)) && (haschar(user, '!') > 0))
450                 strcpy(user, &user[1]);
451
452         /* and anything to the right of a @ or % */
453         for (a = 0; a < strlen(user); ++a) {
454                 if (user[a] == '@')
455                         user[a] = 0;
456                 if (user[a] == '%')
457                         user[a] = 0;
458         }
459
460
461         /* extract node name */
462         strcpy(node, rfc822);
463
464         /* first get rid of anything in parens */
465         stripout(node, '(', ')');
466
467         /* if there's a set of angle brackets, strip it down to that */
468         if ((haschar(node, '<') == 1) && (haschar(node, '>') == 1)) {
469                 stripallbut(node, '<', '>');
470         }
471
472         /* If no node specified, tack ours on instead */
473         if (
474                 (haschar(node, '@')==0)
475                 && (haschar(node, '%')==0)
476                 && (haschar(node, '!')==0)
477         ) {
478                 strcpy(node, config.c_nodename);
479         }
480
481         else {
482
483                 /* strip anything to the left of a @ */
484                 while ((!IsEmptyStr(node)) && (haschar(node, '@') > 0))
485                         strcpy(node, &node[1]);
486         
487                 /* strip anything to the left of a % */
488                 while ((!IsEmptyStr(node)) && (haschar(node, '%') > 0))
489                         strcpy(node, &node[1]);
490         
491                 /* reduce multiple system bang paths to node!user */
492                 while ((!IsEmptyStr(node)) && (haschar(node, '!') > 1))
493                         strcpy(node, &node[1]);
494         
495                 /* now get rid of the user portion of a node!user string */
496                 for (a = 0; a < strlen(node); ++a)
497                         if (node[a] == '!')
498                                 node[a] = 0;
499         }
500
501         /* strip leading and trailing spaces in all strings */
502         striplt(user);
503         striplt(node);
504         striplt(name);
505
506         /* If we processed a string that had the address in angle brackets
507          * but no name outside the brackets, we now have an empty name.  In
508          * this case, use the user portion of the address as the name.
509          */
510         if ((IsEmptyStr(name)) && (!IsEmptyStr(user))) {
511                 strcpy(name, user);
512         }
513 }
514
515
516
517 /*
518  * convert_field() is a helper function for convert_internet_message().
519  * Given start/end positions for an rfc822 field, it converts it to a Citadel
520  * field if it wants to, and unfolds it if necessary.
521  *
522  * Returns 1 if the field was converted and inserted into the Citadel message
523  * structure, implying that the source field should be removed from the
524  * message text.
525  */
526 int convert_field(struct CtdlMessage *msg, int beg, int end) {
527         char *rfc822;
528         char *key, *value;
529         int i;
530         int colonpos = (-1);
531         int processed = 0;
532         char buf[SIZ];
533         char user[1024];
534         char node[1024];
535         char name[1024];
536         char addr[1024];
537         time_t parsed_date;
538
539         rfc822 = msg->cm_fields['M'];   /* M field contains rfc822 text */
540         for (i = end; i >= beg; --i) {
541                 if (rfc822[i] == ':') colonpos = i;
542         }
543
544         if (colonpos < 0) return(0);    /* no colon? not a valid header line */
545
546         key = malloc((end - beg) + 2);
547         safestrncpy(key, &rfc822[beg], (end-beg)+1);
548         key[colonpos - beg] = 0;
549         value = &key[(colonpos - beg) + 1];
550         unfold_rfc822_field(value);
551
552         /*
553          * Here's the big rfc822-to-citadel loop.
554          */
555
556         /* Date/time is converted into a unix timestamp.  If the conversion
557          * fails, we replace it with the time the message arrived locally.
558          */
559         if (!strcasecmp(key, "Date")) {
560                 parsed_date = parsedate(value);
561                 if (parsed_date < 0L) parsed_date = time(NULL);
562                 snprintf(buf, sizeof buf, "%ld", (long)parsed_date );
563                 if (msg->cm_fields['T'] == NULL)
564                         msg->cm_fields['T'] = strdup(buf);
565                 processed = 1;
566         }
567
568         else if (!strcasecmp(key, "From")) {
569                 process_rfc822_addr(value, user, node, name);
570                 CtdlLogPrintf(CTDL_DEBUG, "Converted to <%s@%s> (%s)\n", user, node, name);
571                 snprintf(addr, sizeof addr, "%s@%s", user, node);
572                 if (msg->cm_fields['A'] == NULL)
573                         msg->cm_fields['A'] = strdup(name);
574                 processed = 1;
575                 if (msg->cm_fields['F'] == NULL)
576                         msg->cm_fields['F'] = strdup(addr);
577                 processed = 1;
578         }
579
580         else if (!strcasecmp(key, "Subject")) {
581                 if (msg->cm_fields['U'] == NULL)
582                         msg->cm_fields['U'] = strdup(value);
583                 processed = 1;
584         }
585
586         else if (!strcasecmp(key, "List-ID")) {
587                 if (msg->cm_fields['L'] == NULL)
588                         msg->cm_fields['L'] = strdup(value);
589                 processed = 1;
590         }
591
592         else if (!strcasecmp(key, "To")) {
593                 if (msg->cm_fields['R'] == NULL)
594                         msg->cm_fields['R'] = strdup(value);
595                 processed = 1;
596         }
597
598         else if (!strcasecmp(key, "CC")) {
599                 if (msg->cm_fields['Y'] == NULL)
600                         msg->cm_fields['Y'] = strdup(value);
601                 processed = 1;
602         }
603
604         else if (!strcasecmp(key, "Message-ID")) {
605                 if (msg->cm_fields['I'] != NULL) {
606                         CtdlLogPrintf(CTDL_WARNING, "duplicate message id\n");
607                 }
608
609                 if (msg->cm_fields['I'] == NULL) {
610                         msg->cm_fields['I'] = strdup(value);
611
612                         /* Strip angle brackets */
613                         while (haschar(msg->cm_fields['I'], '<') > 0) {
614                                 strcpy(&msg->cm_fields['I'][0],
615                                         &msg->cm_fields['I'][1]);
616                         }
617                         for (i = 0; i<strlen(msg->cm_fields['I']); ++i)
618                                 if (msg->cm_fields['I'][i] == '>')
619                                         msg->cm_fields['I'][i] = 0;
620                 }
621
622                 processed = 1;
623         }
624
625         else if (!strcasecmp(key, "Return-Path")) {
626                 if (msg->cm_fields['P'] == NULL)
627                         msg->cm_fields['P'] = strdup(value);
628                 processed = 1;
629         }
630
631         else if (!strcasecmp(key, "Envelope-To")) {
632                 if (msg->cm_fields['V'] == NULL)
633                         msg->cm_fields['V'] = strdup(value);
634                 processed = 1;
635         }
636
637         else if (!strcasecmp(key, "References")) {
638                 if (msg->cm_fields['W'] != NULL) {
639                         free(msg->cm_fields['W']);
640                 }
641                 msg->cm_fields['W'] = strdup(value);
642                 processed = 1;
643         }
644
645         else if (!strcasecmp(key, "In-reply-to")) {
646                 if (msg->cm_fields['W'] == NULL) {              /* References: supersedes In-reply-to: */
647                         msg->cm_fields['W'] = strdup(value);
648                 }
649                 processed = 1;
650         }
651
652
653
654         /* Clean up and move on. */
655         free(key);      /* Don't free 'value', it's actually the same buffer */
656         return(processed);
657 }
658
659
660 /*
661  * Convert RFC822 references format (References) to Citadel references format (Weferences)
662  */
663 void convert_references_to_wefewences(char *str) {
664         int bracket_nesting = 0;
665         char *ptr = str;
666         char *moveptr = NULL;
667         char ch;
668
669         while(*ptr) {
670                 ch = *ptr;
671                 if (ch == '>') {
672                         --bracket_nesting;
673                         if (bracket_nesting < 0) bracket_nesting = 0;
674                 }
675                 if ((ch == '>') && (bracket_nesting == 0) && (*(ptr+1)) && (ptr>str) ) {
676                         *ptr = '|';
677                         ++ptr;
678                 }
679                 else if (bracket_nesting > 0) {
680                         ++ptr;
681                 }
682                 else {
683                         moveptr = ptr;
684                         while (*moveptr) {
685                                 *moveptr = *(moveptr+1);
686                                 ++moveptr;
687                         }
688                 }
689                 if (ch == '<') ++bracket_nesting;
690         }
691
692 }
693
694
695 /*
696  * Convert an RFC822 message (headers + body) to a CtdlMessage structure.
697  * NOTE: the supplied buffer becomes part of the CtdlMessage structure, and
698  * will be deallocated when CtdlFreeMessage() is called.  Therefore, the
699  * supplied buffer should be DEREFERENCED.  It should not be freed or used
700  * again.
701  */
702 struct CtdlMessage *convert_internet_message(char *rfc822) {
703
704         struct CtdlMessage *msg;
705         int pos, beg, end, msglen;
706         int done;
707         char buf[SIZ];
708         int converted;
709
710         msg = malloc(sizeof(struct CtdlMessage));
711         if (msg == NULL) return msg;
712
713         memset(msg, 0, sizeof(struct CtdlMessage));
714         msg->cm_magic = CTDLMESSAGE_MAGIC;      /* self check */
715         msg->cm_anon_type = 0;                  /* never anonymous */
716         msg->cm_format_type = FMT_RFC822;       /* internet message */
717         msg->cm_fields['M'] = rfc822;
718
719         pos = 0;
720         done = 0;
721
722         while (!done) {
723
724                 /* Locate beginning and end of field, keeping in mind that
725                  * some fields might be multiline
726                  */
727                 beg = pos;
728                 end = (-1);
729
730                 msglen = strlen(rfc822);        
731                 while ( (end < 0) && (done == 0) ) {
732
733                         if ((rfc822[pos]=='\n')
734                            && (!isspace(rfc822[pos+1]))) {
735                                 end = pos;
736                         }
737
738                         /* done with headers? */
739                         if (   (rfc822[pos]=='\n')
740                            && ( (rfc822[pos+1]=='\n')
741                               ||(rfc822[pos+1]=='\r')) ) {
742                                 end = pos;
743                                 done = 1;
744                         }
745
746                         if (pos >= (msglen-1) ) {
747                                 end = pos;
748                                 done = 1;
749                         }
750
751                         ++pos;
752
753                 }
754
755                 /* At this point we have a field.  Are we interested in it? */
756                 converted = convert_field(msg, beg, end);
757
758                 /* Strip the field out of the RFC822 header if we used it */
759                 if (converted) {
760                         strcpy(&rfc822[beg], &rfc822[pos]);
761                         pos = beg;
762                 }
763
764                 /* If we've hit the end of the message, bail out */
765                 if (pos > strlen(rfc822)) done = 1;
766         }
767
768         /* Follow-up sanity checks... */
769
770         /* If there's no timestamp on this message, set it to now. */
771         if (msg->cm_fields['T'] == NULL) {
772                 snprintf(buf, sizeof buf, "%ld", (long)time(NULL));
773                 msg->cm_fields['T'] = strdup(buf);
774         }
775
776         /* If a W (references, or rather, Wefewences) field is present, we
777          * have to convert it from RFC822 format to Citadel format.
778          */
779         if (msg->cm_fields['W'] != NULL) {
780                 convert_references_to_wefewences(msg->cm_fields['W']);
781         }
782
783         return msg;
784 }
785
786
787
788 /*
789  * Look for a particular header field in an RFC822 message text.  If the
790  * requested field is found, it is unfolded (if necessary) and returned to
791  * the caller.  The field name is stripped out, leaving only its contents.
792  * The caller is responsible for freeing the returned buffer.  If the requested
793  * field is not present, or anything else goes wrong, it returns NULL.
794  */
795 char *rfc822_fetch_field(char *rfc822, char *fieldname) {
796         char *fieldbuf = NULL;
797         char *end_of_headers;
798         char *field_start;
799         char *ptr;
800         char *cont;
801         char fieldhdr[SIZ];
802
803         /* Should never happen, but sometimes we get stupid */
804         if (rfc822 == NULL) return(NULL);
805         if (fieldname == NULL) return(NULL);
806
807         snprintf(fieldhdr, sizeof fieldhdr, "%s:", fieldname);
808
809         /* Locate the end of the headers, so we don't run past that point */
810         end_of_headers = bmstrcasestr(rfc822, "\n\r\n");
811         if (end_of_headers == NULL) {
812                 end_of_headers = bmstrcasestr(rfc822, "\n\n");
813         }
814         if (end_of_headers == NULL) return (NULL);
815
816         field_start = bmstrcasestr(rfc822, fieldhdr);
817         if (field_start == NULL) return(NULL);
818         if (field_start > end_of_headers) return(NULL);
819
820         fieldbuf = malloc(SIZ);
821         strcpy(fieldbuf, "");
822
823         ptr = field_start;
824         ptr = memreadline(ptr, fieldbuf, SIZ-strlen(fieldbuf) );
825         while ( (isspace(ptr[0])) && (ptr < end_of_headers) ) {
826                 strcat(fieldbuf, " ");
827                 cont = &fieldbuf[strlen(fieldbuf)];
828                 ptr = memreadline(ptr, cont, SIZ-strlen(fieldbuf) );
829                 striplt(cont);
830         }
831
832         strcpy(fieldbuf, &fieldbuf[strlen(fieldhdr)]);
833         striplt(fieldbuf);
834
835         return(fieldbuf);
836 }
837
838
839
840 /*****************************************************************************
841  *                      DIRECTORY MANAGEMENT FUNCTIONS                       *
842  *****************************************************************************/
843
844 /*
845  * Generate the index key for an Internet e-mail address to be looked up
846  * in the database.
847  */
848 void directory_key(char *key, char *addr) {
849         int i;
850         int keylen = 0;
851
852         for (i=0; !IsEmptyStr(&addr[i]); ++i) {
853                 if (!isspace(addr[i])) {
854                         key[keylen++] = tolower(addr[i]);
855                 }
856         }
857         key[keylen++] = 0;
858
859         CtdlLogPrintf(CTDL_DEBUG, "Directory key is <%s>\n", key);
860 }
861
862
863
864 /* Return nonzero if the supplied address is in a domain we keep in
865  * the directory
866  */
867 int IsDirectory(char *addr, int allow_masq_domains) {
868         char domain[256];
869         int h;
870
871         extract_token(domain, addr, 1, '@', sizeof domain);
872         striplt(domain);
873
874         h = CtdlHostAlias(domain);
875
876         if ( (h == hostalias_masq) && allow_masq_domains)
877                 return(1);
878         
879         if ( (h == hostalias_localhost) || (h == hostalias_directory) ) {
880                 return(1);
881         }
882         else {
883                 return(0);
884         }
885 }
886
887
888 /*
889  * Initialize the directory database (erasing anything already there)
890  */
891 void CtdlDirectoryInit(void) {
892         cdb_trunc(CDB_DIRECTORY);
893 }
894
895
896 /*
897  * Add an Internet e-mail address to the directory for a user
898  */
899 void CtdlDirectoryAddUser(char *internet_addr, char *citadel_addr) {
900         char key[SIZ];
901
902         if (IsDirectory(internet_addr, 0) == 0) return;
903         CtdlLogPrintf(CTDL_DEBUG, "Create directory entry: %s --> %s\n", internet_addr, citadel_addr);
904         directory_key(key, internet_addr);
905         cdb_store(CDB_DIRECTORY, key, strlen(key), citadel_addr, strlen(citadel_addr)+1 );
906 }
907
908
909 /*
910  * Delete an Internet e-mail address from the directory.
911  *
912  * (NOTE: we don't actually use or need the citadel_addr variable; it's merely
913  * here because the callback API expects to be able to send it.)
914  */
915 void CtdlDirectoryDelUser(char *internet_addr, char *citadel_addr) {
916         char key[SIZ];
917
918         CtdlLogPrintf(CTDL_DEBUG, "Delete directory entry: %s --> %s\n", internet_addr, citadel_addr);
919         directory_key(key, internet_addr);
920         cdb_delete(CDB_DIRECTORY, key, strlen(key) );
921 }
922
923
924 /*
925  * Look up an Internet e-mail address in the directory.
926  * On success: returns 0, and Citadel address stored in 'target'
927  * On failure: returns nonzero
928  */
929 int CtdlDirectoryLookup(char *target, char *internet_addr, size_t targbuflen) {
930         struct cdbdata *cdbrec;
931         char key[SIZ];
932
933         /* Dump it in there unchanged, just for kicks */
934         safestrncpy(target, internet_addr, targbuflen);
935
936         /* Only do lookups for addresses with hostnames in them */
937         if (num_tokens(internet_addr, '@') != 2) return(-1);
938
939         /* Only do lookups for domains in the directory */
940         if (IsDirectory(internet_addr, 0) == 0) return(-1);
941
942         directory_key(key, internet_addr);
943         cdbrec = cdb_fetch(CDB_DIRECTORY, key, strlen(key) );
944         if (cdbrec != NULL) {
945                 safestrncpy(target, cdbrec->ptr, targbuflen);
946                 cdb_free(cdbrec);
947                 return(0);
948         }
949
950         return(-1);
951 }
952
953
954 /*
955  * Harvest any email addresses that someone might want to have in their
956  * "collected addresses" book.
957  */
958 char *harvest_collected_addresses(struct CtdlMessage *msg) {
959         char *coll = NULL;
960         char addr[256];
961         char user[256], node[256], name[256];
962         int is_harvestable;
963         int i, j, h;
964         int field = 0;
965
966         if (msg == NULL) return(NULL);
967
968         is_harvestable = 1;
969         strcpy(addr, "");       
970         if (msg->cm_fields['A'] != NULL) {
971                 strcat(addr, msg->cm_fields['A']);
972         }
973         if (msg->cm_fields['F'] != NULL) {
974                 strcat(addr, " <");
975                 strcat(addr, msg->cm_fields['F']);
976                 strcat(addr, ">");
977                 if (IsDirectory(msg->cm_fields['F'], 0)) {
978                         is_harvestable = 0;
979                 }
980         }
981
982         if (is_harvestable) {
983                 coll = strdup(addr);
984         }
985         else {
986                 coll = strdup("");
987         }
988
989         if (coll == NULL) return(NULL);
990
991         /* Scan both the R (To) and Y (CC) fields */
992         for (i = 0; i < 2; ++i) {
993                 if (i == 0) field = 'R' ;
994                 if (i == 1) field = 'Y' ;
995
996                 if (msg->cm_fields[field] != NULL) {
997                         for (j=0; j<num_tokens(msg->cm_fields[field], ','); ++j) {
998                                 extract_token(addr, msg->cm_fields[field], j, ',', sizeof addr);
999                                 if (strstr(addr, "=?") != NULL)
1000                                         utf8ify_rfc822_string(addr);
1001                                 process_rfc822_addr(addr, user, node, name);
1002                                 h = CtdlHostAlias(node);
1003                                 if ( (h != hostalias_localhost) && (h != hostalias_directory) ) {
1004                                         coll = realloc(coll, strlen(coll) + strlen(addr) + 4);
1005                                         if (coll == NULL) return(NULL);
1006                                         if (!IsEmptyStr(coll)) {
1007                                                 strcat(coll, ",");
1008                                         }
1009                                         striplt(addr);
1010                                         strcat(coll, addr);
1011                                 }
1012                         }
1013                 }
1014         }
1015
1016         if (IsEmptyStr(coll)) {
1017                 free(coll);
1018                 return(NULL);
1019         }
1020         return(coll);
1021 }