* fix off by one while copying email headers
[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, char **FieldEnd) 
371 {
372         int quote = 0;
373         char *pField = *field;
374         char *sField;
375         char *pFieldEnd = *FieldEnd;
376
377         while (isspace(*pField))
378                 pField++;
379         /* remove leading/trailing whitespace */
380         ;
381
382         while (isspace(*pFieldEnd))
383                 pFieldEnd --;
384
385         *FieldEnd = pFieldEnd;
386         /* convert non-space whitespace to spaces, and remove double blanks */
387         for (sField = *field = pField; 
388              sField < pFieldEnd; 
389              pField++, sField++)
390         {
391                 if (*pField=='\"') quote = 1 - quote;
392                 if (!quote) {
393                         if (isspace(*sField))
394                         {
395                                 *pField = ' ';
396                                 pField++;
397                                 sField++;
398                         
399                                 while ((sField < pFieldEnd) && 
400                                        isspace(*sField))
401                                         sField++;
402                         }
403                 }
404                 else *pField = *sField;
405         }
406         *pField = '\0';
407         *FieldEnd = pField - 1;
408 }
409
410
411
412 /*
413  * Split an RFC822-style address into userid, host, and full name
414  *
415  */
416 void process_rfc822_addr(const char *rfc822, char *user, char *node, char *name)
417 {
418         int a;
419
420         strcpy(user, "");
421         strcpy(node, config.c_fqdn);
422         strcpy(name, "");
423
424         if (rfc822 == NULL) return;
425
426         /* extract full name - first, it's From minus <userid> */
427         strcpy(name, rfc822);
428         stripout(name, '<', '>');
429
430         /* strip anything to the left of a bang */
431         while ((!IsEmptyStr(name)) && (haschar(name, '!') > 0))
432                 strcpy(name, &name[1]);
433
434         /* and anything to the right of a @ or % */
435         for (a = 0; a < strlen(name); ++a) {
436                 if (name[a] == '@')
437                         name[a] = 0;
438                 if (name[a] == '%')
439                         name[a] = 0;
440         }
441
442         /* but if there are parentheses, that changes the rules... */
443         if ((haschar(rfc822, '(') == 1) && (haschar(rfc822, ')') == 1)) {
444                 strcpy(name, rfc822);
445                 stripallbut(name, '(', ')');
446         }
447
448         /* but if there are a set of quotes, that supersedes everything */
449         if (haschar(rfc822, 34) == 2) {
450                 strcpy(name, rfc822);
451                 while ((!IsEmptyStr(name)) && (name[0] != 34)) {
452                         strcpy(&name[0], &name[1]);
453                 }
454                 strcpy(&name[0], &name[1]);
455                 for (a = 0; a < strlen(name); ++a)
456                         if (name[a] == 34)
457                                 name[a] = 0;
458         }
459         /* extract user id */
460         strcpy(user, rfc822);
461
462         /* first get rid of anything in parens */
463         stripout(user, '(', ')');
464
465         /* if there's a set of angle brackets, strip it down to that */
466         if ((haschar(user, '<') == 1) && (haschar(user, '>') == 1)) {
467                 stripallbut(user, '<', '>');
468         }
469
470         /* strip anything to the left of a bang */
471         while ((!IsEmptyStr(user)) && (haschar(user, '!') > 0))
472                 strcpy(user, &user[1]);
473
474         /* and anything to the right of a @ or % */
475         for (a = 0; a < strlen(user); ++a) {
476                 if (user[a] == '@')
477                         user[a] = 0;
478                 if (user[a] == '%')
479                         user[a] = 0;
480         }
481
482
483         /* extract node name */
484         strcpy(node, rfc822);
485
486         /* first get rid of anything in parens */
487         stripout(node, '(', ')');
488
489         /* if there's a set of angle brackets, strip it down to that */
490         if ((haschar(node, '<') == 1) && (haschar(node, '>') == 1)) {
491                 stripallbut(node, '<', '>');
492         }
493
494         /* If no node specified, tack ours on instead */
495         if (
496                 (haschar(node, '@')==0)
497                 && (haschar(node, '%')==0)
498                 && (haschar(node, '!')==0)
499         ) {
500                 strcpy(node, config.c_nodename);
501         }
502
503         else {
504
505                 /* strip anything to the left of a @ */
506                 while ((!IsEmptyStr(node)) && (haschar(node, '@') > 0))
507                         strcpy(node, &node[1]);
508         
509                 /* strip anything to the left of a % */
510                 while ((!IsEmptyStr(node)) && (haschar(node, '%') > 0))
511                         strcpy(node, &node[1]);
512         
513                 /* reduce multiple system bang paths to node!user */
514                 while ((!IsEmptyStr(node)) && (haschar(node, '!') > 1))
515                         strcpy(node, &node[1]);
516         
517                 /* now get rid of the user portion of a node!user string */
518                 for (a = 0; a < strlen(node); ++a)
519                         if (node[a] == '!')
520                                 node[a] = 0;
521         }
522
523         /* strip leading and trailing spaces in all strings */
524         striplt(user);
525         striplt(node);
526         striplt(name);
527
528         /* If we processed a string that had the address in angle brackets
529          * but no name outside the brackets, we now have an empty name.  In
530          * this case, use the user portion of the address as the name.
531          */
532         if ((IsEmptyStr(name)) && (!IsEmptyStr(user))) {
533                 strcpy(name, user);
534         }
535 }
536
537
538
539 /*
540  * convert_field() is a helper function for convert_internet_message().
541  * Given start/end positions for an rfc822 field, it converts it to a Citadel
542  * field if it wants to, and unfolds it if necessary.
543  *
544  * Returns 1 if the field was converted and inserted into the Citadel message
545  * structure, implying that the source field should be removed from the
546  * message text.
547  */
548 int convert_field(struct CtdlMessage *msg, const char *beg, const char *end) {
549         char *key, *value, *valueend;
550         long len;
551         const char *pos;
552         int i;
553         const char *colonpos = NULL;
554         int processed = 0;
555         char buf[SIZ];
556         char user[1024];
557         char node[1024];
558         char name[1024];
559         char addr[1024];
560         time_t parsed_date;
561         long valuelen;
562
563         for (pos = end; pos >= beg; pos--) {
564                 if (*pos == ':') colonpos = pos;
565         }
566
567         if (colonpos == NULL) return(0);        /* no colon? not a valid header line */
568
569         len = end - beg;
570         key = malloc(len + 2);
571         memcpy(key, beg, len + 1);
572         key[len] = '\0';
573         valueend = key + len;
574         * ( key + (colonpos - beg) ) = '\0';
575         value = &key[(colonpos - beg) + 1];
576         unfold_rfc822_field(&value, &valueend);
577         valuelen = valueend - value + 1;
578
579         /*
580          * Here's the big rfc822-to-citadel loop.
581          */
582
583         /* Date/time is converted into a unix timestamp.  If the conversion
584          * fails, we replace it with the time the message arrived locally.
585          */
586         if (!strcasecmp(key, "Date")) {
587                 parsed_date = parsedate(value);
588                 if (parsed_date < 0L) parsed_date = time(NULL);
589                 snprintf(buf, sizeof buf, "%ld", (long)parsed_date );
590                 if (msg->cm_fields['T'] == NULL)
591                         msg->cm_fields['T'] = strdup(buf);
592                 processed = 1;
593         }
594
595         else if (!strcasecmp(key, "From")) {
596                 process_rfc822_addr(value, user, node, name);
597                 CtdlLogPrintf(CTDL_DEBUG, "Converted to <%s@%s> (%s)\n", user, node, name);
598                 snprintf(addr, sizeof addr, "%s@%s", user, node);
599                 if (msg->cm_fields['A'] == NULL)
600                         msg->cm_fields['A'] = strdup(name);
601                 processed = 1;
602                 if (msg->cm_fields['F'] == NULL)
603                         msg->cm_fields['F'] = strdup(addr);
604                 processed = 1;
605         }
606
607         else if (!strcasecmp(key, "Subject")) {
608                 if (msg->cm_fields['U'] == NULL)
609                         msg->cm_fields['U'] = strndup(value, valuelen);
610                 processed = 1;
611         }
612
613         else if (!strcasecmp(key, "List-ID")) {
614                 if (msg->cm_fields['L'] == NULL)
615                         msg->cm_fields['L'] = strndup(value, valuelen);
616                 processed = 1;
617         }
618
619         else if (!strcasecmp(key, "To")) {
620                 if (msg->cm_fields['R'] == NULL)
621                         msg->cm_fields['R'] = strndup(value, valuelen);
622                 processed = 1;
623         }
624
625         else if (!strcasecmp(key, "CC")) {
626                 if (msg->cm_fields['Y'] == NULL)
627                         msg->cm_fields['Y'] = strndup(value, valuelen);
628                 processed = 1;
629         }
630
631         else if (!strcasecmp(key, "Message-ID")) {
632                 if (msg->cm_fields['I'] != NULL) {
633                         CtdlLogPrintf(CTDL_WARNING, "duplicate message id\n");
634                 }
635
636                 if (msg->cm_fields['I'] == NULL) {
637                         msg->cm_fields['I'] = strndup(value, valuelen);
638
639                         /* Strip angle brackets */
640                         while (haschar(msg->cm_fields['I'], '<') > 0) {
641                                 strcpy(&msg->cm_fields['I'][0],
642                                         &msg->cm_fields['I'][1]);
643                         }
644                         for (i = 0; i<strlen(msg->cm_fields['I']); ++i)
645                                 if (msg->cm_fields['I'][i] == '>')
646                                         msg->cm_fields['I'][i] = 0;
647                 }
648
649                 processed = 1;
650         }
651
652         else if (!strcasecmp(key, "Return-Path")) {
653                 if (msg->cm_fields['P'] == NULL)
654                         msg->cm_fields['P'] = strndup(value, valuelen);
655                 processed = 1;
656         }
657
658         else if (!strcasecmp(key, "Envelope-To")) {
659                 if (msg->cm_fields['V'] == NULL)
660                         msg->cm_fields['V'] = strndup(value, valuelen);
661                 processed = 1;
662         }
663
664         else if (!strcasecmp(key, "References")) {
665                 if (msg->cm_fields['W'] != NULL) {
666                         free(msg->cm_fields['W']);
667                 }
668                 msg->cm_fields['W'] = strndup(value, valuelen);
669                 processed = 1;
670         }
671
672         else if (!strcasecmp(key, "In-reply-to")) {
673                 if (msg->cm_fields['W'] == NULL) {              /* References: supersedes In-reply-to: */
674                         msg->cm_fields['W'] = strndup(value, valuelen);
675                 }
676                 processed = 1;
677         }
678
679
680
681         /* Clean up and move on. */
682         free(key);      /* Don't free 'value', it's actually the same buffer */
683         return(processed);
684 }
685
686
687 /*
688  * Convert RFC822 references format (References) to Citadel references format (Weferences)
689  */
690 void convert_references_to_wefewences(char *str) {
691         int bracket_nesting = 0;
692         char *ptr = str;
693         char *moveptr = NULL;
694         char ch;
695
696         while(*ptr) {
697                 ch = *ptr;
698                 if (ch == '>') {
699                         --bracket_nesting;
700                         if (bracket_nesting < 0) bracket_nesting = 0;
701                 }
702                 if ((ch == '>') && (bracket_nesting == 0) && (*(ptr+1)) && (ptr>str) ) {
703                         *ptr = '|';
704                         ++ptr;
705                 }
706                 else if (bracket_nesting > 0) {
707                         ++ptr;
708                 }
709                 else {
710                         moveptr = ptr;
711                         while (*moveptr) {
712                                 *moveptr = *(moveptr+1);
713                                 ++moveptr;
714                         }
715                 }
716                 if (ch == '<') ++bracket_nesting;
717         }
718
719 }
720
721
722 /*
723  * Convert an RFC822 message (headers + body) to a CtdlMessage structure.
724  * NOTE: the supplied buffer becomes part of the CtdlMessage structure, and
725  * will be deallocated when CtdlFreeMessage() is called.  Therefore, the
726  * supplied buffer should be DEREFERENCED.  It should not be freed or used
727  * again.
728  */
729 struct CtdlMessage *convert_internet_message(char *rfc822) {
730         StrBuf *RFCBuf = NewStrBufPlain(rfc822, -1);
731         free (rfc822);
732         return convert_internet_message_buf(&RFCBuf);
733 }
734
735
736
737 struct CtdlMessage *convert_internet_message_buf(StrBuf **rfc822)
738 {
739         struct CtdlMessage *msg;
740         const char *pos, *beg, *end, *totalend;
741         int done, alldone = 0;
742         char buf[SIZ];
743         int converted;
744         StrBuf *OtherHeaders;
745
746         msg = malloc(sizeof(struct CtdlMessage));
747         if (msg == NULL) return msg;
748
749         memset(msg, 0, sizeof(struct CtdlMessage));
750         msg->cm_magic = CTDLMESSAGE_MAGIC;      /* self check */
751         msg->cm_anon_type = 0;                  /* never anonymous */
752         msg->cm_format_type = FMT_RFC822;       /* internet message */
753
754         pos = ChrPtr(*rfc822);
755         totalend = pos + StrLength(*rfc822);
756         done = 0;
757         OtherHeaders = NewStrBufPlain(NULL, StrLength(*rfc822));
758
759         while (!alldone) {
760
761                 /* Locate beginning and end of field, keeping in mind that
762                  * some fields might be multiline
763                  */
764                 end = beg = pos;
765
766                 while ((end < totalend) && 
767                        (end == beg) && 
768                        (done == 0) ) 
769                 {
770
771                         if ((*pos=='\n') &&
772                             (!isspace(*(pos+1)))) 
773                         {
774                                 end = pos;
775                         }
776
777                         /* done with headers? */
778                         if ((*pos=='\n') &&
779                             ( (*(pos+1)=='\n') ||
780                               (*(pos+1)=='\r')) ) 
781                         {
782                                 alldone = 1;
783                         }
784
785                         if (pos >= (totalend - 1) )
786                         {
787                                 end = pos;
788                                 done = 1;
789                         }
790
791                         ++pos;
792
793                 }
794
795                 /* At this point we have a field.  Are we interested in it? */
796                 converted = convert_field(msg, beg, end);
797
798                 /* Strip the field out of the RFC822 header if we used it */
799                 if (!converted) {
800                         StrBufAppendBufPlain(OtherHeaders, beg, end - beg, 0);
801                 }
802
803                 /* If we've hit the end of the message, bail out */
804                 if (pos >= totalend)
805                         alldone = 1;
806         }
807         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
808         if (pos < totalend)
809                 StrBufAppendBufPlain(OtherHeaders, pos, totalend - pos, 0);
810         FreeStrBuf(rfc822);
811         msg->cm_fields['M'] = SmashStrBuf(&OtherHeaders);
812
813         /* Follow-up sanity checks... */
814
815         /* If there's no timestamp on this message, set it to now. */
816         if (msg->cm_fields['T'] == NULL) {
817                 snprintf(buf, sizeof buf, "%ld", (long)time(NULL));
818                 msg->cm_fields['T'] = strdup(buf);
819         }
820
821         /* If a W (references, or rather, Wefewences) field is present, we
822          * have to convert it from RFC822 format to Citadel format.
823          */
824         if (msg->cm_fields['W'] != NULL) {
825                 convert_references_to_wefewences(msg->cm_fields['W']);
826         }
827
828         return msg;
829 }
830
831
832
833 /*
834  * Look for a particular header field in an RFC822 message text.  If the
835  * requested field is found, it is unfolded (if necessary) and returned to
836  * the caller.  The field name is stripped out, leaving only its contents.
837  * The caller is responsible for freeing the returned buffer.  If the requested
838  * field is not present, or anything else goes wrong, it returns NULL.
839  */
840 char *rfc822_fetch_field(char *rfc822, const char *fieldname) {
841         char *fieldbuf = NULL;
842         const char *end_of_headers;
843         const char *field_start;
844         const char *ptr;
845         char *cont;
846         char fieldhdr[SIZ];
847
848         /* Should never happen, but sometimes we get stupid */
849         if (rfc822 == NULL) return(NULL);
850         if (fieldname == NULL) return(NULL);
851
852         snprintf(fieldhdr, sizeof fieldhdr, "%s:", fieldname);
853
854         /* Locate the end of the headers, so we don't run past that point */
855         end_of_headers = bmstrcasestr(rfc822, "\n\r\n");
856         if (end_of_headers == NULL) {
857                 end_of_headers = bmstrcasestr(rfc822, "\n\n");
858         }
859         if (end_of_headers == NULL) return (NULL);
860
861         field_start = bmstrcasestr(rfc822, fieldhdr);
862         if (field_start == NULL) return(NULL);
863         if (field_start > end_of_headers) return(NULL);
864
865         fieldbuf = malloc(SIZ);
866         strcpy(fieldbuf, "");
867
868         ptr = field_start;
869         ptr = memreadline(ptr, fieldbuf, SIZ-strlen(fieldbuf) );
870         while ( (isspace(ptr[0])) && (ptr < end_of_headers) ) {
871                 strcat(fieldbuf, " ");
872                 cont = &fieldbuf[strlen(fieldbuf)];
873                 ptr = memreadline(ptr, cont, SIZ-strlen(fieldbuf) );
874                 striplt(cont);
875         }
876
877         strcpy(fieldbuf, &fieldbuf[strlen(fieldhdr)]);
878         striplt(fieldbuf);
879
880         return(fieldbuf);
881 }
882
883
884
885 /*****************************************************************************
886  *                      DIRECTORY MANAGEMENT FUNCTIONS                       *
887  *****************************************************************************/
888
889 /*
890  * Generate the index key for an Internet e-mail address to be looked up
891  * in the database.
892  */
893 void directory_key(char *key, char *addr) {
894         int i;
895         int keylen = 0;
896
897         for (i=0; !IsEmptyStr(&addr[i]); ++i) {
898                 if (!isspace(addr[i])) {
899                         key[keylen++] = tolower(addr[i]);
900                 }
901         }
902         key[keylen++] = 0;
903
904         CtdlLogPrintf(CTDL_DEBUG, "Directory key is <%s>\n", key);
905 }
906
907
908
909 /* Return nonzero if the supplied address is in a domain we keep in
910  * the directory
911  */
912 int IsDirectory(char *addr, int allow_masq_domains) {
913         char domain[256];
914         int h;
915
916         extract_token(domain, addr, 1, '@', sizeof domain);
917         striplt(domain);
918
919         h = CtdlHostAlias(domain);
920
921         if ( (h == hostalias_masq) && allow_masq_domains)
922                 return(1);
923         
924         if ( (h == hostalias_localhost) || (h == hostalias_directory) ) {
925                 return(1);
926         }
927         else {
928                 return(0);
929         }
930 }
931
932
933 /*
934  * Initialize the directory database (erasing anything already there)
935  */
936 void CtdlDirectoryInit(void) {
937         cdb_trunc(CDB_DIRECTORY);
938 }
939
940
941 /*
942  * Add an Internet e-mail address to the directory for a user
943  */
944 void CtdlDirectoryAddUser(char *internet_addr, char *citadel_addr) {
945         char key[SIZ];
946
947         if (IsDirectory(internet_addr, 0) == 0) return;
948         CtdlLogPrintf(CTDL_DEBUG, "Create directory entry: %s --> %s\n", internet_addr, citadel_addr);
949         directory_key(key, internet_addr);
950         cdb_store(CDB_DIRECTORY, key, strlen(key), citadel_addr, strlen(citadel_addr)+1 );
951 }
952
953
954 /*
955  * Delete an Internet e-mail address from the directory.
956  *
957  * (NOTE: we don't actually use or need the citadel_addr variable; it's merely
958  * here because the callback API expects to be able to send it.)
959  */
960 void CtdlDirectoryDelUser(char *internet_addr, char *citadel_addr) {
961         char key[SIZ];
962
963         CtdlLogPrintf(CTDL_DEBUG, "Delete directory entry: %s --> %s\n", internet_addr, citadel_addr);
964         directory_key(key, internet_addr);
965         cdb_delete(CDB_DIRECTORY, key, strlen(key) );
966 }
967
968
969 /*
970  * Look up an Internet e-mail address in the directory.
971  * On success: returns 0, and Citadel address stored in 'target'
972  * On failure: returns nonzero
973  */
974 int CtdlDirectoryLookup(char *target, char *internet_addr, size_t targbuflen) {
975         struct cdbdata *cdbrec;
976         char key[SIZ];
977
978         /* Dump it in there unchanged, just for kicks */
979         safestrncpy(target, internet_addr, targbuflen);
980
981         /* Only do lookups for addresses with hostnames in them */
982         if (num_tokens(internet_addr, '@') != 2) return(-1);
983
984         /* Only do lookups for domains in the directory */
985         if (IsDirectory(internet_addr, 0) == 0) return(-1);
986
987         directory_key(key, internet_addr);
988         cdbrec = cdb_fetch(CDB_DIRECTORY, key, strlen(key) );
989         if (cdbrec != NULL) {
990                 safestrncpy(target, cdbrec->ptr, targbuflen);
991                 cdb_free(cdbrec);
992                 return(0);
993         }
994
995         return(-1);
996 }
997
998
999 /*
1000  * Harvest any email addresses that someone might want to have in their
1001  * "collected addresses" book.
1002  */
1003 char *harvest_collected_addresses(struct CtdlMessage *msg) {
1004         char *coll = NULL;
1005         char addr[256];
1006         char user[256], node[256], name[256];
1007         int is_harvestable;
1008         int i, j, h;
1009         int field = 0;
1010
1011         if (msg == NULL) return(NULL);
1012
1013         is_harvestable = 1;
1014         strcpy(addr, "");       
1015         if (msg->cm_fields['A'] != NULL) {
1016                 strcat(addr, msg->cm_fields['A']);
1017         }
1018         if (msg->cm_fields['F'] != NULL) {
1019                 strcat(addr, " <");
1020                 strcat(addr, msg->cm_fields['F']);
1021                 strcat(addr, ">");
1022                 if (IsDirectory(msg->cm_fields['F'], 0)) {
1023                         is_harvestable = 0;
1024                 }
1025         }
1026
1027         if (is_harvestable) {
1028                 coll = strdup(addr);
1029         }
1030         else {
1031                 coll = strdup("");
1032         }
1033
1034         if (coll == NULL) return(NULL);
1035
1036         /* Scan both the R (To) and Y (CC) fields */
1037         for (i = 0; i < 2; ++i) {
1038                 if (i == 0) field = 'R' ;
1039                 if (i == 1) field = 'Y' ;
1040
1041                 if (msg->cm_fields[field] != NULL) {
1042                         for (j=0; j<num_tokens(msg->cm_fields[field], ','); ++j) {
1043                                 extract_token(addr, msg->cm_fields[field], j, ',', sizeof addr);
1044                                 if (strstr(addr, "=?") != NULL)
1045                                         utf8ify_rfc822_string(addr);
1046                                 process_rfc822_addr(addr, user, node, name);
1047                                 h = CtdlHostAlias(node);
1048                                 if ( (h != hostalias_localhost) && (h != hostalias_directory) ) {
1049                                         coll = realloc(coll, strlen(coll) + strlen(addr) + 4);
1050                                         if (coll == NULL) return(NULL);
1051                                         if (!IsEmptyStr(coll)) {
1052                                                 strcat(coll, ",");
1053                                         }
1054                                         striplt(addr);
1055                                         strcat(coll, addr);
1056                                 }
1057                         }
1058                 }
1059         }
1060
1061         if (IsEmptyStr(coll)) {
1062                 free(coll);
1063                 return(NULL);
1064         }
1065         return(coll);
1066 }