removed some old cruft
[citadel.git] / citadel / internet_addressing.c
1 /*
2  * This file contains functions which handle the mapping of Internet addresses
3  * to users on the Citadel system.
4  *
5  * Copyright (c) 1987-2017 by the citadel.org team
6  *
7  * This program is open source software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 3.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15
16 #include "sysdep.h"
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <fcntl.h>
21 #include <ctype.h>
22 #include <signal.h>
23 #include <pwd.h>
24 #include <errno.h>
25 #include <sys/types.h>
26 #include <time.h>
27 #include <sys/wait.h>
28 #include <string.h>
29 #include <limits.h>
30 #include <libcitadel.h>
31 #include "citadel.h"
32 #include "server.h"
33 #include "sysdep_decls.h"
34 #include "citserver.h"
35 #include "support.h"
36 #include "config.h"
37 #include "msgbase.h"
38 #include "internet_addressing.h"
39 #include "user_ops.h"
40 #include "room_ops.h"
41 #include "parsedate.h"
42 #include "database.h"
43 #include "ctdl_module.h"
44 #ifdef HAVE_ICONV
45 #include <iconv.h>
46
47 #if 0
48 /* This is the non-define version in case it is needed for debugging */
49 inline void FindNextEnd (char *bptr, char *end)
50 {
51         /* Find the next ?Q? */
52         end = strchr(bptr + 2, '?');
53         if (end == NULL) return NULL;
54         if (((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && 
55             (*(end + 2) == '?')) {
56                 /* skip on to the end of the cluster, the next ?= */
57                 end = strstr(end + 3, "?=");
58         }
59         else
60                 /* sort of half valid encoding, try to find an end. */
61                 end = strstr(bptr, "?=");
62 }
63 #endif
64
65 #define FindNextEnd(bptr, end) { \
66         end = strchr(bptr + 2, '?'); \
67         if (end != NULL) { \
68                 if (((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && (*(end + 2) == '?')) { \
69                         end = strstr(end + 3, "?="); \
70                 } else end = strstr(bptr, "?="); \
71         } \
72 }
73
74 /*
75  * Handle subjects with RFC2047 encoding such as:
76  * =?koi8-r?B?78bP0s3Mxc7JxSDXz9rE1dvO2c3JINvB0sHNySDP?=
77  */
78 void utf8ify_rfc822_string(char *buf) {
79         char *start, *end, *next, *nextend, *ptr;
80         char newbuf[1024];
81         char charset[128];
82         char encoding[16];
83         char istr[1024];
84         iconv_t ic = (iconv_t)(-1) ;
85         char *ibuf;                     // Buffer of characters to be converted
86         char *obuf;                     // Buffer for converted characters
87         size_t ibuflen;                 // Length of input buffer
88         size_t obuflen;                 // Length of output buffer
89         char *isav;                     // Saved pointer to input buffer
90         char *osav;                     // Saved pointer to output buffer
91         int passes = 0;
92         int i, len, delta;
93         int illegal_non_rfc2047_encoding = 0;
94
95         /* Sometimes, badly formed messages contain strings which were simply
96          *  written out directly in some foreign character set instead of
97          *  using RFC2047 encoding.  This is illegal but we will attempt to
98          *  handle it anyway by converting from a user-specified default
99          *  charset to UTF-8 if we see any nonprintable characters.
100          */
101         len = strlen(buf);
102         for (i=0; i<len; ++i) {
103                 if ((buf[i] < 32) || (buf[i] > 126)) {
104                         illegal_non_rfc2047_encoding = 1;
105                         i = len;        // take a shortcut, it won't be more than one.
106                 }
107         }
108         if (illegal_non_rfc2047_encoding) {
109                 const char *default_header_charset = "iso-8859-1";
110                 if ( (strcasecmp(default_header_charset, "UTF-8")) && (strcasecmp(default_header_charset, "us-ascii")) ) {
111                         ctdl_iconv_open("UTF-8", default_header_charset, &ic);
112                         if (ic != (iconv_t)(-1) ) {
113                                 ibuf = malloc(1024);
114                                 isav = ibuf;
115                                 safestrncpy(ibuf, buf, 1024);
116                                 ibuflen = strlen(ibuf);
117                                 obuflen = 1024;
118                                 obuf = (char *) malloc(obuflen);
119                                 osav = obuf;
120                                 iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
121                                 osav[1024-obuflen] = 0;
122                                 strcpy(buf, osav);
123                                 free(osav);
124                                 iconv_close(ic);
125                                 free(isav);
126                         }
127                 }
128         }
129
130         /* pre evaluate the first pair */
131         nextend = end = NULL;
132         len = strlen(buf);
133         start = strstr(buf, "=?");
134         if (start != NULL) 
135                 FindNextEnd (start, end);
136
137         while ((start != NULL) && (end != NULL))
138         {
139                 next = strstr(end, "=?");
140                 if (next != NULL)
141                         FindNextEnd(next, nextend);
142                 if (nextend == NULL)
143                         next = NULL;
144
145                 /* did we find two partitions */
146                 if ((next != NULL) && 
147                     ((next - end) > 2))
148                 {
149                         ptr = end + 2;
150                         while ((ptr < next) && 
151                                (isspace(*ptr) ||
152                                 (*ptr == '\r') ||
153                                 (*ptr == '\n') || 
154                                 (*ptr == '\t')))
155                                 ptr ++;
156                         /* did we find a gab just filled with blanks? */
157                         if (ptr == next)
158                         {
159                                 memmove (end + 2,
160                                          next,
161                                          len - (next - start));
162
163                                 /* now terminate the gab at the end */
164                                 delta = (next - end) - 2;
165                                 len -= delta;
166                                 buf[len] = '\0';
167
168                                 /* move next to its new location. */
169                                 next -= delta;
170                                 nextend -= delta;
171                         }
172                 }
173                 /* our next-pair is our new first pair now. */
174                 start = next;
175                 end = nextend;
176         }
177
178         /* Now we handle foreign character sets properly encoded
179          * in RFC2047 format.
180          */
181         start = strstr(buf, "=?");
182         FindNextEnd((start != NULL)? start : buf, end);
183         while (start != NULL && end != NULL && end > start)
184         {
185                 extract_token(charset, start, 1, '?', sizeof charset);
186                 extract_token(encoding, start, 2, '?', sizeof encoding);
187                 extract_token(istr, start, 3, '?', sizeof istr);
188
189                 ibuf = malloc(1024);
190                 isav = ibuf;
191                 if (!strcasecmp(encoding, "B")) {       // base64
192                         ibuflen = CtdlDecodeBase64(ibuf, istr, strlen(istr));
193                 }
194                 else if (!strcasecmp(encoding, "Q")) {  // quoted-printable
195                         size_t len;
196                         unsigned long pos;
197                         
198                         len = strlen(istr);
199                         pos = 0;
200                         while (pos < len)
201                         {
202                                 if (istr[pos] == '_') istr[pos] = ' ';
203                                 pos++;
204                         }
205
206                         ibuflen = CtdlDecodeQuotedPrintable(ibuf, istr, len);
207                 }
208                 else {
209                         strcpy(ibuf, istr);             // unknown encoding
210                         ibuflen = strlen(istr);
211                 }
212
213                 ctdl_iconv_open("UTF-8", charset, &ic);
214                 if (ic != (iconv_t)(-1) ) {
215                         obuflen = 1024;
216                         obuf = (char *) malloc(obuflen);
217                         osav = obuf;
218                         iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
219                         osav[1024-obuflen] = 0;
220
221                         end = start;
222                         end++;
223                         strcpy(start, "");
224                         remove_token(end, 0, '?');
225                         remove_token(end, 0, '?');
226                         remove_token(end, 0, '?');
227                         remove_token(end, 0, '?');
228                         strcpy(end, &end[1]);
229
230                         snprintf(newbuf, sizeof newbuf, "%s%s%s", buf, osav, end);
231                         strcpy(buf, newbuf);
232                         free(osav);
233                         iconv_close(ic);
234                 }
235                 else {
236                         end = start;
237                         end++;
238                         strcpy(start, "");
239                         remove_token(end, 0, '?');
240                         remove_token(end, 0, '?');
241                         remove_token(end, 0, '?');
242                         remove_token(end, 0, '?');
243                         strcpy(end, &end[1]);
244
245                         snprintf(newbuf, sizeof newbuf, "%s(unreadable)%s", buf, end);
246                         strcpy(buf, newbuf);
247                 }
248
249                 free(isav);
250
251                 /*
252                  * Since spammers will go to all sorts of absurd lengths to get their
253                  * messages through, there are LOTS of corrupt headers out there.
254                  * So, prevent a really badly formed RFC2047 header from throwing
255                  * this function into an infinite loop.
256                  */
257                 ++passes;
258                 if (passes > 20) return;
259
260                 start = strstr(buf, "=?");
261                 FindNextEnd((start != NULL)? start : buf, end);
262         }
263
264 }
265 #else
266 inline void utf8ify_rfc822_string(char *a){};
267
268 #endif
269
270
271 struct trynamebuf {
272         char buffer1[SIZ];
273         char buffer2[SIZ];
274 };
275
276 char *inetcfg = NULL;
277
278 /*
279  * Return nonzero if the supplied name is an alias for this host.
280  */
281 int CtdlHostAlias(char *fqdn) {
282         int config_lines;
283         int i;
284         char buf[256];
285         char host[256], type[256];
286         int found = 0;
287
288         if (fqdn == NULL)                                       return(hostalias_nomatch);
289         if (IsEmptyStr(fqdn))                                   return(hostalias_nomatch);
290         if (!strcasecmp(fqdn, "localhost"))                     return(hostalias_localhost);
291         if (!strcasecmp(fqdn, CtdlGetConfigStr("c_fqdn")))      return(hostalias_localhost);
292         if (!strcasecmp(fqdn, CtdlGetConfigStr("c_nodename")))  return(hostalias_localhost);
293         if (inetcfg == NULL)                                    return(hostalias_nomatch);
294
295         config_lines = num_tokens(inetcfg, '\n');
296         for (i=0; i<config_lines; ++i) {
297                 extract_token(buf, inetcfg, i, '\n', sizeof buf);
298                 extract_token(host, buf, 0, '|', sizeof host);
299                 extract_token(type, buf, 1, '|', sizeof type);
300
301                 found = 0;
302
303                 /* Process these in a specific order, in case there are multiple matches.
304                  * We want localhost to override masq, for example.
305                  */
306
307                 if ( (!strcasecmp(type, "masqdomain")) && (!strcasecmp(fqdn, host))) {
308                         found = hostalias_masq;
309                 }
310
311                 if ( (!strcasecmp(type, "localhost")) && (!strcasecmp(fqdn, host))) {
312                         found = hostalias_localhost;
313                 }
314
315                 // "directory" used to be a distributed version of "localhost" but they're both the same now
316                 if ( (!strcasecmp(type, "directory")) && (!strcasecmp(fqdn, host))) {
317                         found = hostalias_localhost;
318                 }
319
320                 if (found) return(found);
321         }
322         return(hostalias_nomatch);
323 }
324
325
326 /*
327  * Determine whether a given Internet address belongs to the current user
328  */
329 int CtdlIsMe(char *addr, int addr_buf_len)
330 {
331         recptypes *recp;
332         int i;
333
334         recp = validate_recipients(addr, NULL, 0);
335         if (recp == NULL) return(0);
336
337         if (recp->num_local == 0) {
338                 free_recipients(recp);
339                 return(0);
340         }
341
342         for (i=0; i<recp->num_local; ++i) {
343                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
344                 if (!strcasecmp(addr, CC->user.fullname)) {
345                         free_recipients(recp);
346                         return(1);
347                 }
348         }
349
350         free_recipients(recp);
351         return(0);
352 }
353
354
355 /* If the last item in a list of recipients was truncated to a partial address,
356  * remove it completely in order to avoid choking libSieve
357  */
358 void sanitize_truncated_recipient(char *str)
359 {
360         if (!str) return;
361         if (num_tokens(str, ',') < 2) return;
362
363         int len = strlen(str);
364         if (len < 900) return;
365         if (len > 998) str[998] = 0;
366
367         char *cptr = strrchr(str, ',');
368         if (!cptr) return;
369
370         char *lptr = strchr(cptr, '<');
371         char *rptr = strchr(cptr, '>');
372
373         if ( (lptr) && (rptr) && (rptr > lptr) ) return;
374
375         *cptr = 0;
376 }
377
378
379 /*
380  * This function is self explanatory.
381  * (What can I say, I'm in a weird mood today...)
382  */
383 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
384 {
385         unsigned int i;
386
387         for (i = 0; i < strlen(name); ++i) {
388                 if (name[i] == '@') {
389                         while (isspace(name[i - 1]) && i > 0) {
390                                 strcpy(&name[i - 1], &name[i]);
391                                 --i;
392                         }
393                         while (isspace(name[i + 1])) {
394                                 strcpy(&name[i + 1], &name[i + 2]);
395                         }
396                 }
397         }
398 }
399
400
401 /*
402  * Aliasing for network mail.
403  */
404 int alias(char *name)
405 {                               /* process alias and routing info for mail */
406         FILE *fp;
407         int a, i;
408         char aaa[SIZ], bbb[SIZ];
409         char *ignetcfg = NULL;
410         char *ignetmap = NULL;
411         int at = 0;
412         char node[64];
413         char testnode[64];
414         char buf[SIZ];
415
416         char original_name[256];
417         safestrncpy(original_name, name, sizeof original_name);
418
419         striplt(name);
420         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
421         stripallbut(name, '<', '>');
422
423         fp = fopen(file_mail_aliases, "r");             // when are we going to get rid of this?
424         if (fp == NULL) {
425                 fp = fopen("/dev/null", "r");
426         }
427         if (fp == NULL) {
428                 return (MES_ERROR);
429         }
430         strcpy(aaa, "");
431         strcpy(bbb, "");
432         while (fgets(aaa, sizeof aaa, fp) != NULL) {
433                 while (isspace(name[0]))
434                         strcpy(name, &name[1]);
435                 aaa[strlen(aaa) - 1] = 0;
436                 strcpy(bbb, "");
437                 for (a = 0; aaa[a] != '\0'; ++a) {
438                         if (aaa[a] == ',') {
439                                 strcpy(bbb, &aaa[a + 1]);
440                                 aaa[a] = 0;
441                                 break;
442                         }
443                 }
444                 if (!strcasecmp(name, aaa))
445                         strcpy(name, bbb);
446         }
447         fclose(fp);
448
449         /* Hit the email address directory */
450         if (CtdlDirectoryLookup(aaa, name, sizeof aaa) == 0) {
451                 strcpy(name, aaa);
452         }
453
454         if (strcasecmp(original_name, name)) {
455                 syslog(LOG_INFO, "internet_addressing: %s is being forwarded to %s", original_name, name);
456         }
457
458         /* Change "user @ xxx" to "user" if xxx is an alias for this host */
459         for (a=0; name[a] != '\0'; ++a) {
460                 if (name[a] == '@') {
461                         if (CtdlHostAlias(&name[a+1]) == hostalias_localhost) {
462                                 name[a] = 0;
463                                 syslog(LOG_DEBUG, "internet_addressing: changed to <%s>", name);
464                                 break;
465                         }
466                 }
467         }
468
469         /* determine local or remote type, see citadel.h */
470         at = haschar(name, '@');
471         if (at == 0) return(MES_LOCAL);         /* no @'s - local address */
472         if (at > 1) return(MES_ERROR);          /* >1 @'s - invalid address */
473         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
474
475         /* figure out the delivery mode */
476         extract_token(node, name, 1, '@', sizeof node);
477
478         /* If there are one or more dots in the nodename, we assume that it
479          * is an FQDN and will attempt SMTP delivery to the Internet.
480          */
481         if (haschar(node, '.') > 0) {
482                 return(MES_INTERNET);
483         }
484
485         /* Otherwise we look in the IGnet maps for a valid Citadel node.
486          * Try directly-connected nodes first...
487          */
488         ignetcfg = CtdlGetSysConfig(IGNETCFG);
489         for (i=0; i<num_tokens(ignetcfg, '\n'); ++i) {
490                 extract_token(buf, ignetcfg, i, '\n', sizeof buf);
491                 extract_token(testnode, buf, 0, '|', sizeof testnode);
492                 if (!strcasecmp(node, testnode)) {
493                         free(ignetcfg);
494                         return(MES_IGNET);
495                 }
496         }
497         free(ignetcfg);
498
499         /*
500          * Then try nodes that are two or more hops away.
501          */
502         ignetmap = CtdlGetSysConfig(IGNETMAP);
503         for (i=0; i<num_tokens(ignetmap, '\n'); ++i) {
504                 extract_token(buf, ignetmap, i, '\n', sizeof buf);
505                 extract_token(testnode, buf, 0, '|', sizeof testnode);
506                 if (!strcasecmp(node, testnode)) {
507                         free(ignetmap);
508                         return(MES_IGNET);
509                 }
510         }
511         free(ignetmap);
512
513         /* If we get to this point it's an invalid node name */
514         return (MES_ERROR);
515 }
516
517
518 /*
519  * Validate recipients, count delivery types and errors, and handle aliasing
520  * FIXME check for dupes!!!!!
521  *
522  * Returns 0 if all addresses are ok, ret->num_error = -1 if no addresses 
523  * were specified, or the number of addresses found invalid.
524  *
525  * Caller needs to free the result using free_recipients()
526  */
527 recptypes *validate_recipients(const char *supplied_recipients, const char *RemoteIdentifier, int Flags)
528 {
529         struct CitContext *CCC = CC;
530         recptypes *ret;
531         char *recipients = NULL;
532         char *org_recp;
533         char this_recp[256];
534         char this_recp_cooked[256];
535         char append[SIZ];
536         long len;
537         int num_recps = 0;
538         int i, j;
539         int mailtype;
540         int invalid;
541         struct ctdluser tempUS;
542         struct ctdlroom tempQR;
543         struct ctdlroom tempQR2;
544         int err = 0;
545         char errmsg[SIZ];
546         int in_quotes = 0;
547
548         /* Initialize */
549         ret = (recptypes *) malloc(sizeof(recptypes));
550         if (ret == NULL) return(NULL);
551
552         /* Set all strings to null and numeric values to zero */
553         memset(ret, 0, sizeof(recptypes));
554
555         if (supplied_recipients == NULL) {
556                 recipients = strdup("");
557         }
558         else {
559                 recipients = strdup(supplied_recipients);
560         }
561
562         /* Allocate some memory.  Yes, this allocates 500% more memory than we will
563          * actually need, but it's healthier for the heap than doing lots of tiny
564          * realloc() calls instead.
565          */
566         len = strlen(recipients) + 1024;
567         ret->errormsg = malloc(len);
568         ret->recp_local = malloc(len);
569         ret->recp_internet = malloc(len);
570         ret->recp_ignet = malloc(len);
571         ret->recp_room = malloc(len);
572         ret->display_recp = malloc(len);
573         ret->recp_orgroom = malloc(len);
574         org_recp = malloc(len);
575
576         ret->errormsg[0] = 0;
577         ret->recp_local[0] = 0;
578         ret->recp_internet[0] = 0;
579         ret->recp_ignet[0] = 0;
580         ret->recp_room[0] = 0;
581         ret->recp_orgroom[0] = 0;
582         ret->display_recp[0] = 0;
583
584         ret->recptypes_magic = RECPTYPES_MAGIC;
585
586         /* Change all valid separator characters to commas */
587         for (i=0; !IsEmptyStr(&recipients[i]); ++i) {
588                 if ((recipients[i] == ';') || (recipients[i] == '|')) {
589                         recipients[i] = ',';
590                 }
591         }
592
593         /* Now start extracting recipients... */
594
595         while (!IsEmptyStr(recipients)) {
596                 for (i=0; i<=strlen(recipients); ++i) {
597                         if (recipients[i] == '\"') in_quotes = 1 - in_quotes;
598                         if ( ( (recipients[i] == ',') && (!in_quotes) ) || (recipients[i] == 0) ) {
599                                 safestrncpy(this_recp, recipients, i+1);
600                                 this_recp[i] = 0;
601                                 if (recipients[i] == ',') {
602                                         strcpy(recipients, &recipients[i+1]);
603                                 }
604                                 else {
605                                         strcpy(recipients, "");
606                                 }
607                                 break;
608                         }
609                 }
610
611                 striplt(this_recp);
612                 if (IsEmptyStr(this_recp))
613                         break;
614                 syslog(LOG_DEBUG, "internet_addressing: evaluating recipient #%d: %s", num_recps, this_recp);
615                 ++num_recps;
616
617                 strcpy(org_recp, this_recp);
618                 alias(this_recp);
619                 alias(this_recp);
620                 mailtype = alias(this_recp);
621
622                 for (j = 0; !IsEmptyStr(&this_recp[j]); ++j) {
623                         if (this_recp[j]=='_') {
624                                 this_recp_cooked[j] = ' ';
625                         }
626                         else {
627                                 this_recp_cooked[j] = this_recp[j];
628                         }
629                 }
630                 this_recp_cooked[j] = '\0';
631                 invalid = 0;
632                 errmsg[0] = 0;
633                 switch(mailtype) {
634                 case MES_LOCAL:
635                         if (!strcasecmp(this_recp, "sysop")) {
636                                 ++ret->num_room;
637                                 strcpy(this_recp, CtdlGetConfigStr("c_aideroom"));
638                                 if (!IsEmptyStr(ret->recp_room)) {
639                                         strcat(ret->recp_room, "|");
640                                 }
641                                 strcat(ret->recp_room, this_recp);
642                         }
643                         else if ( (!strncasecmp(this_recp, "room_", 5))
644                                   && (!CtdlGetRoom(&tempQR, &this_recp_cooked[5])) ) {
645
646                                 /* Save room so we can restore it later */
647                                 tempQR2 = CCC->room;
648                                 CCC->room = tempQR;
649                                         
650                                 /* Check permissions to send mail to this room */
651                                 err = CtdlDoIHavePermissionToPostInThisRoom(
652                                         errmsg, 
653                                         sizeof errmsg, 
654                                         RemoteIdentifier,
655                                         Flags,
656                                         0                       /* 0 = not a reply */
657                                         );
658                                 if (err)
659                                 {
660                                         ++ret->num_error;
661                                         invalid = 1;
662                                 } 
663                                 else {
664                                         ++ret->num_room;
665                                         if (!IsEmptyStr(ret->recp_room)) {
666                                                 strcat(ret->recp_room, "|");
667                                         }
668                                         strcat(ret->recp_room, &this_recp_cooked[5]);
669
670                                         if (!IsEmptyStr(ret->recp_orgroom)) {
671                                                 strcat(ret->recp_orgroom, "|");
672                                         }
673                                         strcat(ret->recp_orgroom, org_recp);
674
675                                 }
676                                         
677                                 /* Restore room in case something needs it */
678                                 CCC->room = tempQR2;
679
680                         }
681                         else if (CtdlGetUser(&tempUS, this_recp) == 0) {
682                                 ++ret->num_local;
683                                 strcpy(this_recp, tempUS.fullname);
684                                 if (!IsEmptyStr(ret->recp_local)) {
685                                         strcat(ret->recp_local, "|");
686                                 }
687                                 strcat(ret->recp_local, this_recp);
688                         }
689                         else if (CtdlGetUser(&tempUS, this_recp_cooked) == 0) {
690                                 ++ret->num_local;
691                                 strcpy(this_recp, tempUS.fullname);
692                                 if (!IsEmptyStr(ret->recp_local)) {
693                                         strcat(ret->recp_local, "|");
694                                 }
695                                 strcat(ret->recp_local, this_recp);
696                         }
697                         else {
698                                 ++ret->num_error;
699                                 invalid = 1;
700                         }
701                         break;
702                 case MES_INTERNET:
703                         /* Yes, you're reading this correctly: if the target
704                          * domain points back to the local system,
705                          * the address is invalid.  That's
706                          * because if the address were valid, we would have
707                          * already translated it to a local address by now.
708                          */
709                         if (IsDirectory(this_recp, 0)) {
710                                 ++ret->num_error;
711                                 invalid = 1;
712                         }
713                         else {
714                                 ++ret->num_internet;
715                                 if (!IsEmptyStr(ret->recp_internet)) {
716                                         strcat(ret->recp_internet, "|");
717                                 }
718                                 strcat(ret->recp_internet, this_recp);
719                         }
720                         break;
721                 case MES_IGNET:
722                         ++ret->num_ignet;
723                         if (!IsEmptyStr(ret->recp_ignet)) {
724                                 strcat(ret->recp_ignet, "|");
725                         }
726                         strcat(ret->recp_ignet, this_recp);
727                         break;
728                 case MES_ERROR:
729                         ++ret->num_error;
730                         invalid = 1;
731                         break;
732                 }
733                 if (invalid) {
734                         if (IsEmptyStr(errmsg)) {
735                                 snprintf(append, sizeof append, "Invalid recipient: %s", this_recp);
736                         }
737                         else {
738                                 snprintf(append, sizeof append, "%s", errmsg);
739                         }
740                         if ( (strlen(ret->errormsg) + strlen(append) + 3) < SIZ) {
741                                 if (!IsEmptyStr(ret->errormsg)) {
742                                         strcat(ret->errormsg, "; ");
743                                 }
744                                 strcat(ret->errormsg, append);
745                         }
746                 }
747                 else {
748                         if (IsEmptyStr(ret->display_recp)) {
749                                 strcpy(append, this_recp);
750                         }
751                         else {
752                                 snprintf(append, sizeof append, ", %s", this_recp);
753                         }
754                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
755                                 strcat(ret->display_recp, append);
756                         }
757                 }
758         }
759         free(org_recp);
760
761         if ((ret->num_local + ret->num_internet + ret->num_ignet +
762              ret->num_room + ret->num_error) == 0) {
763                 ret->num_error = (-1);
764                 strcpy(ret->errormsg, "No recipients specified.");
765         }
766
767         syslog(LOG_DEBUG, "internet_addressing: validate_recipients() = %d local, %d room, %d SMTP, %d IGnet, %d error",
768                 ret->num_local, ret->num_room, ret->num_internet, ret->num_ignet, ret->num_error
769         );
770
771         free(recipients);
772         return(ret);
773 }
774
775
776 /*
777  * Destructor for recptypes
778  */
779 void free_recipients(recptypes *valid) {
780
781         if (valid == NULL) {
782                 return;
783         }
784
785         if (valid->recptypes_magic != RECPTYPES_MAGIC) {
786                 syslog(LOG_ERR, "internet_addressing: attempt to call free_recipients() on some other data type!");
787                 abort();
788         }
789
790         if (valid->errormsg != NULL)            free(valid->errormsg);
791         if (valid->recp_local != NULL)          free(valid->recp_local);
792         if (valid->recp_internet != NULL)       free(valid->recp_internet);
793         if (valid->recp_ignet != NULL)          free(valid->recp_ignet);
794         if (valid->recp_room != NULL)           free(valid->recp_room);
795         if (valid->recp_orgroom != NULL)        free(valid->recp_orgroom);
796         if (valid->display_recp != NULL)        free(valid->display_recp);
797         if (valid->bounce_to != NULL)           free(valid->bounce_to);
798         if (valid->envelope_from != NULL)       free(valid->envelope_from);
799         if (valid->sending_room != NULL)        free(valid->sending_room);
800         free(valid);
801 }
802
803
804 char *qp_encode_email_addrs(char *source)
805 {
806         char *user, *node, *name;
807         const char headerStr[] = "=?UTF-8?Q?";
808         char *Encoded;
809         char *EncodedName;
810         char *nPtr;
811         int need_to_encode = 0;
812         long SourceLen;
813         long EncodedMaxLen;
814         long nColons = 0;
815         long *AddrPtr;
816         long *AddrUtf8;
817         long nAddrPtrMax = 50;
818         long nmax;
819         int InQuotes = 0;
820         int i, n;
821
822         if (source == NULL) return source;
823         if (IsEmptyStr(source)) return source;
824         syslog(LOG_DEBUG, "internet_addressing: qp_encode_email_addrs <%s>", source);
825
826         AddrPtr = malloc (sizeof (long) * nAddrPtrMax);
827         AddrUtf8 = malloc (sizeof (long) * nAddrPtrMax);
828         memset(AddrUtf8, 0, sizeof (long) * nAddrPtrMax);
829         *AddrPtr = 0;
830         i = 0;
831         while (!IsEmptyStr (&source[i])) {
832                 if (nColons >= nAddrPtrMax){
833                         long *ptr;
834
835                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
836                         memcpy (ptr, AddrPtr, sizeof (long) * nAddrPtrMax);
837                         free (AddrPtr), AddrPtr = ptr;
838
839                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
840                         memset(&ptr[nAddrPtrMax], 0, 
841                                sizeof (long) * nAddrPtrMax);
842
843                         memcpy (ptr, AddrUtf8, sizeof (long) * nAddrPtrMax);
844                         free (AddrUtf8), AddrUtf8 = ptr;
845                         nAddrPtrMax *= 2;                               
846                 }
847                 if (((unsigned char) source[i] < 32) || 
848                     ((unsigned char) source[i] > 126)) {
849                         need_to_encode = 1;
850                         AddrUtf8[nColons] = 1;
851                 }
852                 if (source[i] == '"')
853                         InQuotes = !InQuotes;
854                 if (!InQuotes && source[i] == ',') {
855                         AddrPtr[nColons] = i;
856                         nColons++;
857                 }
858                 i++;
859         }
860         if (need_to_encode == 0) {
861                 free(AddrPtr);
862                 free(AddrUtf8);
863                 return source;
864         }
865
866         SourceLen = i;
867         EncodedMaxLen = nColons * (sizeof(headerStr) + 3) + SourceLen * 3;
868         Encoded = (char*) malloc (EncodedMaxLen);
869
870         for (i = 0; i < nColons; i++) {
871                 source[AddrPtr[i]++] = '\0';
872         }
873         /* TODO: if libidn, this might get larger*/
874         user = malloc(SourceLen + 1);
875         node = malloc(SourceLen + 1);
876         name = malloc(SourceLen + 1);
877
878         nPtr = Encoded;
879         *nPtr = '\0';
880         for (i = 0; i < nColons && nPtr != NULL; i++) {
881                 nmax = EncodedMaxLen - (nPtr - Encoded);
882                 if (AddrUtf8[i]) {
883                         process_rfc822_addr(&source[AddrPtr[i]], 
884                                             user,
885                                             node,
886                                             name);
887                         /* TODO: libIDN here ! */
888                         if (IsEmptyStr(name)) {
889                                 n = snprintf(nPtr, nmax, 
890                                              (i==0)?"%s@%s" : ",%s@%s",
891                                              user, node);
892                         }
893                         else {
894                                 EncodedName = rfc2047encode(name, strlen(name));                        
895                                 n = snprintf(nPtr, nmax, 
896                                              (i==0)?"%s <%s@%s>" : ",%s <%s@%s>",
897                                              EncodedName, user, node);
898                                 free(EncodedName);
899                         }
900                 }
901                 else { 
902                         n = snprintf(nPtr, nmax, 
903                                      (i==0)?"%s" : ",%s",
904                                      &source[AddrPtr[i]]);
905                 }
906                 if (n > 0 )
907                         nPtr += n;
908                 else { 
909                         char *ptr, *nnPtr;
910                         ptr = (char*) malloc(EncodedMaxLen * 2);
911                         memcpy(ptr, Encoded, EncodedMaxLen);
912                         nnPtr = ptr + (nPtr - Encoded), nPtr = nnPtr;
913                         free(Encoded), Encoded = ptr;
914                         EncodedMaxLen *= 2;
915                         i--; /* do it once more with properly lengthened buffer */
916                 }
917         }
918         for (i = 0; i < nColons; i++)
919                 source[--AddrPtr[i]] = ',';
920
921         free(user);
922         free(node);
923         free(name);
924         free(AddrUtf8);
925         free(AddrPtr);
926         return Encoded;
927 }
928
929
930 /*
931  * Unfold a multi-line field into a single line, removing multi-whitespaces
932  */
933 void unfold_rfc822_field(char **field, char **FieldEnd) 
934 {
935         int quote = 0;
936         char *pField = *field;
937         char *sField;
938         char *pFieldEnd = *FieldEnd;
939
940         while (isspace(*pField))
941                 pField++;
942         /* remove leading/trailing whitespace */
943         ;
944
945         while (isspace(*pFieldEnd))
946                 pFieldEnd --;
947
948         *FieldEnd = pFieldEnd;
949         /* convert non-space whitespace to spaces, and remove double blanks */
950         for (sField = *field = pField; 
951              sField < pFieldEnd; 
952              pField++, sField++)
953         {
954                 if ((*sField=='\r') || (*sField=='\n'))
955                 {
956                         int Offset = 1;
957                         while (((*(sField + Offset) == '\r') ||
958                                 (*(sField + Offset) == '\n') ||
959                                 (isspace(*(sField + Offset)))) && 
960                                (sField + Offset < pFieldEnd))
961                                 Offset ++;
962                         sField += Offset;
963                         *pField = *sField;
964                 }
965                 else {
966                         if (*sField=='\"') quote = 1 - quote;
967                         if (!quote) {
968                                 if (isspace(*sField))
969                                 {
970                                         *pField = ' ';
971                                         pField++;
972                                         sField++;
973                                         
974                                         while ((sField < pFieldEnd) && 
975                                                isspace(*sField))
976                                                 sField++;
977                                         *pField = *sField;
978                                 }
979                                 else *pField = *sField;
980                         }
981                         else *pField = *sField;
982                 }
983         }
984         *pField = '\0';
985         *FieldEnd = pField - 1;
986 }
987
988
989 /*
990  * Split an RFC822-style address into userid, host, and full name
991  *
992  */
993 void process_rfc822_addr(const char *rfc822, char *user, char *node, char *name)
994 {
995         int a;
996
997         strcpy(user, "");
998         strcpy(node, CtdlGetConfigStr("c_fqdn"));
999         strcpy(name, "");
1000
1001         if (rfc822 == NULL) return;
1002
1003         /* extract full name - first, it's From minus <userid> */
1004         strcpy(name, rfc822);
1005         stripout(name, '<', '>');
1006
1007         /* strip anything to the left of a bang */
1008         while ((!IsEmptyStr(name)) && (haschar(name, '!') > 0))
1009                 strcpy(name, &name[1]);
1010
1011         /* and anything to the right of a @ or % */
1012         for (a = 0; name[a] != '\0'; ++a) {
1013                 if (name[a] == '@') {
1014                         name[a] = 0;
1015                         break;
1016                 }
1017                 if (name[a] == '%') {
1018                         name[a] = 0;
1019                         break;
1020                 }
1021         }
1022
1023         /* but if there are parentheses, that changes the rules... */
1024         if ((haschar(rfc822, '(') == 1) && (haschar(rfc822, ')') == 1)) {
1025                 strcpy(name, rfc822);
1026                 stripallbut(name, '(', ')');
1027         }
1028
1029         /* but if there are a set of quotes, that supersedes everything */
1030         if (haschar(rfc822, 34) == 2) {
1031                 strcpy(name, rfc822);
1032                 while ((!IsEmptyStr(name)) && (name[0] != 34)) {
1033                         strcpy(&name[0], &name[1]);
1034                 }
1035                 strcpy(&name[0], &name[1]);
1036                 for (a = 0; name[a] != '\0'; ++a)
1037                         if (name[a] == 34) {
1038                                 name[a] = 0;
1039                                 break;
1040                         }
1041         }
1042         /* extract user id */
1043         strcpy(user, rfc822);
1044
1045         /* first get rid of anything in parens */
1046         stripout(user, '(', ')');
1047
1048         /* if there's a set of angle brackets, strip it down to that */
1049         if ((haschar(user, '<') == 1) && (haschar(user, '>') == 1)) {
1050                 stripallbut(user, '<', '>');
1051         }
1052
1053         /* strip anything to the left of a bang */
1054         while ((!IsEmptyStr(user)) && (haschar(user, '!') > 0))
1055                 strcpy(user, &user[1]);
1056
1057         /* and anything to the right of a @ or % */
1058         for (a = 0; user[a] != '\0'; ++a) {
1059                 if (user[a] == '@') {
1060                         user[a] = 0;
1061                         break;
1062                 }
1063                 if (user[a] == '%') {
1064                         user[a] = 0;
1065                         break;
1066                 }
1067         }
1068
1069
1070         /* extract node name */
1071         strcpy(node, rfc822);
1072
1073         /* first get rid of anything in parens */
1074         stripout(node, '(', ')');
1075
1076         /* if there's a set of angle brackets, strip it down to that */
1077         if ((haschar(node, '<') == 1) && (haschar(node, '>') == 1)) {
1078                 stripallbut(node, '<', '>');
1079         }
1080
1081         /* If no node specified, tack ours on instead */
1082         if (
1083                 (haschar(node, '@')==0)
1084                 && (haschar(node, '%')==0)
1085                 && (haschar(node, '!')==0)
1086         ) {
1087                 strcpy(node, CtdlGetConfigStr("c_nodename"));
1088         }
1089
1090         else {
1091
1092                 /* strip anything to the left of a @ */
1093                 while ((!IsEmptyStr(node)) && (haschar(node, '@') > 0))
1094                         strcpy(node, &node[1]);
1095         
1096                 /* strip anything to the left of a % */
1097                 while ((!IsEmptyStr(node)) && (haschar(node, '%') > 0))
1098                         strcpy(node, &node[1]);
1099         
1100                 /* reduce multiple system bang paths to node!user */
1101                 while ((!IsEmptyStr(node)) && (haschar(node, '!') > 1))
1102                         strcpy(node, &node[1]);
1103         
1104                 /* now get rid of the user portion of a node!user string */
1105                 for (a = 0; node[a] != '\0'; ++a)
1106                         if (node[a] == '!') {
1107                                 node[a] = 0;
1108                                 break;
1109                         }
1110         }
1111
1112         /* strip leading and trailing spaces in all strings */
1113         striplt(user);
1114         striplt(node);
1115         striplt(name);
1116
1117         /* If we processed a string that had the address in angle brackets
1118          * but no name outside the brackets, we now have an empty name.  In
1119          * this case, use the user portion of the address as the name.
1120          */
1121         if ((IsEmptyStr(name)) && (!IsEmptyStr(user))) {
1122                 strcpy(name, user);
1123         }
1124 }
1125
1126
1127 /*
1128  * convert_field() is a helper function for convert_internet_message().
1129  * Given start/end positions for an rfc822 field, it converts it to a Citadel
1130  * field if it wants to, and unfolds it if necessary.
1131  *
1132  * Returns 1 if the field was converted and inserted into the Citadel message
1133  * structure, implying that the source field should be removed from the
1134  * message text.
1135  */
1136 int convert_field(struct CtdlMessage *msg, const char *beg, const char *end) {
1137         char *key, *value, *valueend;
1138         long len;
1139         const char *pos;
1140         int i;
1141         const char *colonpos = NULL;
1142         int processed = 0;
1143         char user[1024];
1144         char node[1024];
1145         char name[1024];
1146         char addr[1024];
1147         time_t parsed_date;
1148         long valuelen;
1149
1150         for (pos = end; pos >= beg; pos--) {
1151                 if (*pos == ':') colonpos = pos;
1152         }
1153
1154         if (colonpos == NULL) return(0);        /* no colon? not a valid header line */
1155
1156         len = end - beg;
1157         key = malloc(len + 2);
1158         memcpy(key, beg, len + 1);
1159         key[len] = '\0';
1160         valueend = key + len;
1161         * ( key + (colonpos - beg) ) = '\0';
1162         value = &key[(colonpos - beg) + 1];
1163 /*      printf("Header: [%s]\nValue: [%s]\n", key, value); */
1164         unfold_rfc822_field(&value, &valueend);
1165         valuelen = valueend - value + 1;
1166 /*      printf("UnfoldedValue: [%s]\n", value); */
1167
1168         /*
1169          * Here's the big rfc822-to-citadel loop.
1170          */
1171
1172         /* Date/time is converted into a unix timestamp.  If the conversion
1173          * fails, we replace it with the time the message arrived locally.
1174          */
1175         if (!strcasecmp(key, "Date")) {
1176                 parsed_date = parsedate(value);
1177                 if (parsed_date < 0L) parsed_date = time(NULL);
1178
1179                 if (CM_IsEmpty(msg, eTimestamp))
1180                         CM_SetFieldLONG(msg, eTimestamp, parsed_date);
1181                 processed = 1;
1182         }
1183
1184         else if (!strcasecmp(key, "From")) {
1185                 process_rfc822_addr(value, user, node, name);
1186                 syslog(LOG_DEBUG, "internet_addressing: converted to <%s@%s> (%s)", user, node, name);
1187                 snprintf(addr, sizeof(addr), "%s@%s", user, node);
1188                 if (CM_IsEmpty(msg, eAuthor) && !IsEmptyStr(name))
1189                         CM_SetField(msg, eAuthor, name, strlen(name));
1190                 if (CM_IsEmpty(msg, erFc822Addr) && !IsEmptyStr(addr))
1191                         CM_SetField(msg, erFc822Addr, addr, strlen(addr));
1192                 processed = 1;
1193         }
1194
1195         else if (!strcasecmp(key, "Subject")) {
1196                 if (CM_IsEmpty(msg, eMsgSubject))
1197                         CM_SetField(msg, eMsgSubject, value, valuelen);
1198                 processed = 1;
1199         }
1200
1201         else if (!strcasecmp(key, "List-ID")) {
1202                 if (CM_IsEmpty(msg, eListID))
1203                         CM_SetField(msg, eListID, value, valuelen);
1204                 processed = 1;
1205         }
1206
1207         else if (!strcasecmp(key, "To")) {
1208                 if (CM_IsEmpty(msg, eRecipient))
1209                         CM_SetField(msg, eRecipient, value, valuelen);
1210                 processed = 1;
1211         }
1212
1213         else if (!strcasecmp(key, "CC")) {
1214                 if (CM_IsEmpty(msg, eCarbonCopY))
1215                         CM_SetField(msg, eCarbonCopY, value, valuelen);
1216                 processed = 1;
1217         }
1218
1219         else if (!strcasecmp(key, "Message-ID")) {
1220                 if (!CM_IsEmpty(msg, emessageId)) {
1221                         syslog(LOG_WARNING, "internet_addressing: duplicate message id");
1222                 }
1223                 else {
1224                         char *pValue;
1225                         long pValueLen;
1226
1227                         pValue = value;
1228                         pValueLen = valuelen;
1229                         /* Strip angle brackets */
1230                         while (haschar(pValue, '<') > 0) {
1231                                 pValue ++;
1232                                 pValueLen --;
1233                         }
1234
1235                         for (i = 0; i <= pValueLen; ++i)
1236                                 if (pValue[i] == '>') {
1237                                         pValueLen = i;
1238                                         break;
1239                                 }
1240
1241                         CM_SetField(msg, emessageId, pValue, pValueLen);
1242                 }
1243
1244                 processed = 1;
1245         }
1246
1247         else if (!strcasecmp(key, "Return-Path")) {
1248                 if (CM_IsEmpty(msg, eMessagePath))
1249                         CM_SetField(msg, eMessagePath, value, valuelen);
1250                 processed = 1;
1251         }
1252
1253         else if (!strcasecmp(key, "Envelope-To")) {
1254                 if (CM_IsEmpty(msg, eenVelopeTo))
1255                         CM_SetField(msg, eenVelopeTo, value, valuelen);
1256                 processed = 1;
1257         }
1258
1259         else if (!strcasecmp(key, "References")) {
1260                 CM_SetField(msg, eWeferences, value, valuelen);
1261                 processed = 1;
1262         }
1263
1264         else if (!strcasecmp(key, "Reply-To")) {
1265                 CM_SetField(msg, eReplyTo, value, valuelen);
1266                 processed = 1;
1267         }
1268
1269         else if (!strcasecmp(key, "In-reply-to")) {
1270                 if (CM_IsEmpty(msg, eWeferences)) /* References: supersedes In-reply-to: */
1271                         CM_SetField(msg, eWeferences, value, valuelen);
1272                 processed = 1;
1273         }
1274
1275
1276
1277         /* Clean up and move on. */
1278         free(key);      /* Don't free 'value', it's actually the same buffer */
1279         return processed;
1280 }
1281
1282
1283 /*
1284  * Convert RFC822 references format (References) to Citadel references format (Weferences)
1285  */
1286 void convert_references_to_wefewences(char *str) {
1287         int bracket_nesting = 0;
1288         char *ptr = str;
1289         char *moveptr = NULL;
1290         char ch;
1291
1292         while(*ptr) {
1293                 ch = *ptr;
1294                 if (ch == '>') {
1295                         --bracket_nesting;
1296                         if (bracket_nesting < 0) bracket_nesting = 0;
1297                 }
1298                 if ((ch == '>') && (bracket_nesting == 0) && (*(ptr+1)) && (ptr>str) ) {
1299                         *ptr = '|';
1300                         ++ptr;
1301                 }
1302                 else if (bracket_nesting > 0) {
1303                         ++ptr;
1304                 }
1305                 else {
1306                         moveptr = ptr;
1307                         while (*moveptr) {
1308                                 *moveptr = *(moveptr+1);
1309                                 ++moveptr;
1310                         }
1311                 }
1312                 if (ch == '<') ++bracket_nesting;
1313         }
1314
1315 }
1316
1317
1318 /*
1319  * Convert an RFC822 message (headers + body) to a CtdlMessage structure.
1320  * NOTE: the supplied buffer becomes part of the CtdlMessage structure, and
1321  * will be deallocated when CM_Free() is called.  Therefore, the
1322  * supplied buffer should be DEREFERENCED.  It should not be freed or used
1323  * again.
1324  */
1325 struct CtdlMessage *convert_internet_message(char *rfc822) {
1326         StrBuf *RFCBuf = NewStrBufPlain(rfc822, -1);
1327         free (rfc822);
1328         return convert_internet_message_buf(&RFCBuf);
1329 }
1330
1331
1332 struct CtdlMessage *convert_internet_message_buf(StrBuf **rfc822)
1333 {
1334         struct CtdlMessage *msg;
1335         const char *pos, *beg, *end, *totalend;
1336         int done, alldone = 0;
1337         int converted;
1338         StrBuf *OtherHeaders;
1339
1340         msg = malloc(sizeof(struct CtdlMessage));
1341         if (msg == NULL) return msg;
1342
1343         memset(msg, 0, sizeof(struct CtdlMessage));
1344         msg->cm_magic = CTDLMESSAGE_MAGIC;      /* self check */
1345         msg->cm_anon_type = 0;                  /* never anonymous */
1346         msg->cm_format_type = FMT_RFC822;       /* internet message */
1347
1348         pos = ChrPtr(*rfc822);
1349         totalend = pos + StrLength(*rfc822);
1350         done = 0;
1351         OtherHeaders = NewStrBufPlain(NULL, StrLength(*rfc822));
1352
1353         while (!alldone) {
1354
1355                 /* Locate beginning and end of field, keeping in mind that
1356                  * some fields might be multiline
1357                  */
1358                 end = beg = pos;
1359
1360                 while ((end < totalend) && 
1361                        (end == beg) && 
1362                        (done == 0) ) 
1363                 {
1364
1365                         if ( (*pos=='\n') && ((*(pos+1))!=0x20) && ((*(pos+1))!=0x09) )
1366                         {
1367                                 end = pos;
1368                         }
1369
1370                         /* done with headers? */
1371                         if ((*pos=='\n') &&
1372                             ( (*(pos+1)=='\n') ||
1373                               (*(pos+1)=='\r')) ) 
1374                         {
1375                                 alldone = 1;
1376                         }
1377
1378                         if (pos >= (totalend - 1) )
1379                         {
1380                                 end = pos;
1381                                 done = 1;
1382                         }
1383
1384                         ++pos;
1385
1386                 }
1387
1388                 /* At this point we have a field.  Are we interested in it? */
1389                 converted = convert_field(msg, beg, end);
1390
1391                 /* Strip the field out of the RFC822 header if we used it */
1392                 if (!converted) {
1393                         StrBufAppendBufPlain(OtherHeaders, beg, end - beg, 0);
1394                         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
1395                 }
1396
1397                 /* If we've hit the end of the message, bail out */
1398                 if (pos >= totalend)
1399                         alldone = 1;
1400         }
1401         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
1402         if (pos < totalend)
1403                 StrBufAppendBufPlain(OtherHeaders, pos, totalend - pos, 0);
1404         FreeStrBuf(rfc822);
1405         CM_SetAsFieldSB(msg, eMesageText, &OtherHeaders);
1406
1407         /* Follow-up sanity checks... */
1408
1409         /* If there's no timestamp on this message, set it to now. */
1410         if (CM_IsEmpty(msg, eTimestamp)) {
1411                 CM_SetFieldLONG(msg, eTimestamp, time(NULL));
1412         }
1413
1414         /* If a W (references, or rather, Wefewences) field is present, we
1415          * have to convert it from RFC822 format to Citadel format.
1416          */
1417         if (!CM_IsEmpty(msg, eWeferences)) {
1418                 /// todo: API!
1419                 convert_references_to_wefewences(msg->cm_fields[eWeferences]);
1420         }
1421
1422         return msg;
1423 }
1424
1425
1426 /*
1427  * Look for a particular header field in an RFC822 message text.  If the
1428  * requested field is found, it is unfolded (if necessary) and returned to
1429  * the caller.  The field name is stripped out, leaving only its contents.
1430  * The caller is responsible for freeing the returned buffer.  If the requested
1431  * field is not present, or anything else goes wrong, it returns NULL.
1432  */
1433 char *rfc822_fetch_field(const char *rfc822, const char *fieldname) {
1434         char *fieldbuf = NULL;
1435         const char *end_of_headers;
1436         const char *field_start;
1437         const char *ptr;
1438         char *cont;
1439         char fieldhdr[SIZ];
1440
1441         /* Should never happen, but sometimes we get stupid */
1442         if (rfc822 == NULL) return(NULL);
1443         if (fieldname == NULL) return(NULL);
1444
1445         snprintf(fieldhdr, sizeof fieldhdr, "%s:", fieldname);
1446
1447         /* Locate the end of the headers, so we don't run past that point */
1448         end_of_headers = cbmstrcasestr(rfc822, "\n\r\n");
1449         if (end_of_headers == NULL) {
1450                 end_of_headers = cbmstrcasestr(rfc822, "\n\n");
1451         }
1452         if (end_of_headers == NULL) return (NULL);
1453
1454         field_start = cbmstrcasestr(rfc822, fieldhdr);
1455         if (field_start == NULL) return(NULL);
1456         if (field_start > end_of_headers) return(NULL);
1457
1458         fieldbuf = malloc(SIZ);
1459         strcpy(fieldbuf, "");
1460
1461         ptr = field_start;
1462         ptr = cmemreadline(ptr, fieldbuf, SIZ-strlen(fieldbuf) );
1463         while ( (isspace(ptr[0])) && (ptr < end_of_headers) ) {
1464                 strcat(fieldbuf, " ");
1465                 cont = &fieldbuf[strlen(fieldbuf)];
1466                 ptr = cmemreadline(ptr, cont, SIZ-strlen(fieldbuf) );
1467                 striplt(cont);
1468         }
1469
1470         strcpy(fieldbuf, &fieldbuf[strlen(fieldhdr)]);
1471         striplt(fieldbuf);
1472
1473         return(fieldbuf);
1474 }
1475
1476
1477 /*****************************************************************************
1478  *                      DIRECTORY MANAGEMENT FUNCTIONS                       *
1479  *****************************************************************************/
1480
1481 /*
1482  * Generate the index key for an Internet e-mail address to be looked up
1483  * in the database.
1484  */
1485 void directory_key(char *key, char *addr) {
1486         int i;
1487         int keylen = 0;
1488
1489         for (i=0; !IsEmptyStr(&addr[i]); ++i) {
1490                 if (!isspace(addr[i])) {
1491                         key[keylen++] = tolower(addr[i]);
1492                 }
1493         }
1494         key[keylen++] = 0;
1495
1496         syslog(LOG_DEBUG, "internet_addressing: directory key is <%s>", key);
1497 }
1498
1499
1500 /* Return nonzero if the supplied address is in one of "our" domains
1501  */
1502 int IsDirectory(char *addr, int allow_masq_domains) {
1503         char domain[256];
1504         int h;
1505
1506         extract_token(domain, addr, 1, '@', sizeof domain);
1507         striplt(domain);
1508
1509         h = CtdlHostAlias(domain);
1510
1511         if ( (h == hostalias_masq) && allow_masq_domains)
1512                 return(1);
1513         
1514         if (h == hostalias_localhost) {
1515                 return(1);
1516         }
1517         else {
1518                 return(0);
1519         }
1520 }
1521
1522
1523 /*
1524  * Add an Internet e-mail address to the directory for a user
1525  */
1526 int CtdlDirectoryAddUser(char *internet_addr, char *citadel_addr) {
1527         char key[SIZ];
1528
1529         if (IsDirectory(internet_addr, 0) == 0) {
1530                 return 0;
1531         }
1532         syslog(LOG_DEBUG, "internet_addressing: create directory entry: %s --> %s", internet_addr, citadel_addr);
1533         directory_key(key, internet_addr);
1534         cdb_store(CDB_DIRECTORY, key, strlen(key), citadel_addr, strlen(citadel_addr)+1 );
1535         return 1;
1536 }
1537
1538
1539 /*
1540  * Delete an Internet e-mail address from the directory.
1541  *
1542  * (NOTE: we don't actually use or need the citadel_addr variable; it's merely
1543  * here because the callback API expects to be able to send it.)
1544  */
1545 int CtdlDirectoryDelUser(char *internet_addr, char *citadel_addr) {
1546         char key[SIZ];
1547         
1548         syslog(LOG_DEBUG, "internet_addressing: delete directory entry: %s --> %s", internet_addr, citadel_addr);
1549         directory_key(key, internet_addr);
1550         return cdb_delete(CDB_DIRECTORY, key, strlen(key) ) == 0;
1551 }
1552
1553
1554 /*
1555  * Look up an Internet e-mail address in the directory.
1556  * On success: returns 0, and Citadel address stored in 'target'
1557  * On failure: returns nonzero
1558  */
1559 int CtdlDirectoryLookup(char *target, char *internet_addr, size_t targbuflen) {
1560         struct cdbdata *cdbrec;
1561         char key[SIZ];
1562
1563         /* Dump it in there unchanged, just for kicks */
1564         safestrncpy(target, internet_addr, targbuflen);
1565
1566         /* Only do lookups for addresses with hostnames in them */
1567         if (num_tokens(internet_addr, '@') != 2) return(-1);
1568
1569         /* Only do lookups for domains in the directory */
1570         if (IsDirectory(internet_addr, 0) == 0) return(-1);
1571
1572         directory_key(key, internet_addr);
1573         cdbrec = cdb_fetch(CDB_DIRECTORY, key, strlen(key) );
1574         if (cdbrec != NULL) {
1575                 safestrncpy(target, cdbrec->ptr, targbuflen);
1576                 cdb_free(cdbrec);
1577                 return(0);
1578         }
1579
1580         return(-1);
1581 }
1582
1583
1584 /*
1585  * Harvest any email addresses that someone might want to have in their
1586  * "collected addresses" book.
1587  */
1588 char *harvest_collected_addresses(struct CtdlMessage *msg) {
1589         char *coll = NULL;
1590         char addr[256];
1591         char user[256], node[256], name[256];
1592         int is_harvestable;
1593         int i, j, h;
1594         eMsgField field = 0;
1595
1596         if (msg == NULL) return(NULL);
1597
1598         is_harvestable = 1;
1599         strcpy(addr, "");       
1600         if (!CM_IsEmpty(msg, eAuthor)) {
1601                 strcat(addr, msg->cm_fields[eAuthor]);
1602         }
1603         if (!CM_IsEmpty(msg, erFc822Addr)) {
1604                 strcat(addr, " <");
1605                 strcat(addr, msg->cm_fields[erFc822Addr]);
1606                 strcat(addr, ">");
1607                 if (IsDirectory(msg->cm_fields[erFc822Addr], 0)) {
1608                         is_harvestable = 0;
1609                 }
1610         }
1611
1612         if (is_harvestable) {
1613                 coll = strdup(addr);
1614         }
1615         else {
1616                 coll = strdup("");
1617         }
1618
1619         if (coll == NULL) return(NULL);
1620
1621         /* Scan both the R (To) and Y (CC) fields */
1622         for (i = 0; i < 2; ++i) {
1623                 if (i == 0) field = eRecipient;
1624                 if (i == 1) field = eCarbonCopY;
1625
1626                 if (!CM_IsEmpty(msg, field)) {
1627                         for (j=0; j<num_tokens(msg->cm_fields[field], ','); ++j) {
1628                                 extract_token(addr, msg->cm_fields[field], j, ',', sizeof addr);
1629                                 if (strstr(addr, "=?") != NULL)
1630                                         utf8ify_rfc822_string(addr);
1631                                 process_rfc822_addr(addr, user, node, name);
1632                                 h = CtdlHostAlias(node);
1633                                 if (h != hostalias_localhost) {
1634                                         coll = realloc(coll, strlen(coll) + strlen(addr) + 4);
1635                                         if (coll == NULL) return(NULL);
1636                                         if (!IsEmptyStr(coll)) {
1637                                                 strcat(coll, ",");
1638                                         }
1639                                         striplt(addr);
1640                                         strcat(coll, addr);
1641                                 }
1642                         }
1643                 }
1644         }
1645
1646         if (IsEmptyStr(coll)) {
1647                 free(coll);
1648                 return(NULL);
1649         }
1650         return(coll);
1651 }
1652
1653
1654 /*
1655  * Helper function for CtdlRebuildDirectoryIndex()
1656  *
1657  * Call this function as a ForEachUser backend in order to queue up
1658  * user names, or call it with a null user to make it do the processing.
1659  * This allows us to maintain the list as a static instead of passing
1660  * pointers around.
1661  */
1662 void CtdlRebuildDirectoryIndex_backend(struct ctdluser *usbuf, void *data) {
1663
1664         struct crdib {
1665                 char name[64];
1666                 char emails[512];
1667         };
1668
1669         static struct crdib *e = NULL;
1670         static int num_e = 0;
1671         static int alloc_e = 0;
1672
1673         /* this is the calling mode where we add a user */
1674
1675         if (usbuf != NULL) {
1676                 if (num_e >= alloc_e) {
1677                         if (alloc_e == 0) {
1678                                 alloc_e = 100;
1679                                 e = malloc(sizeof(struct crdib) * alloc_e);
1680                         }
1681                         else {
1682                                 alloc_e *= 2;
1683                                 e = realloc(e, (sizeof(struct crdib) * alloc_e));
1684                         }
1685                 }
1686                 strcpy(e[num_e].name, usbuf->fullname);
1687                 strcpy(e[num_e].emails, usbuf->emailaddrs);
1688                 ++num_e;
1689                 return;
1690         }
1691
1692         /* this is the calling mode where we do the processing */
1693
1694         int i, j;
1695         for (i=0; i<num_e; ++i) {
1696                 if ( (!IsEmptyStr(e[i].name)) && (!IsEmptyStr(e[i].emails)) ) {
1697                         for (j=0; j<num_tokens(e[i].emails, '|'); ++j) {
1698                                 char one_email[512];
1699                                 extract_token(one_email, e[i].emails, j, '|', sizeof one_email);
1700                                 CtdlDirectoryAddUser(one_email, e[i].name);
1701                         }
1702                 }
1703         }
1704         free(e);
1705         num_e = 0;
1706         alloc_e = 0;
1707         return;
1708 }
1709
1710
1711 /*
1712  * Initialize the directory database (erasing anything already there)
1713  */
1714 void CtdlRebuildDirectoryIndex(void) {
1715         syslog(LOG_INFO, "internet_addressing: rebuilding email address directory index");
1716         cdb_trunc(CDB_DIRECTORY);
1717         ForEachUser(CtdlRebuildDirectoryIndex_backend, NULL);
1718         CtdlRebuildDirectoryIndex_backend(NULL, NULL);
1719 }
1720
1721
1722 /*
1723  * Configure Internet email addresses for a user account, updating the Directory Index in the process
1724  */
1725 void CtdlSetEmailAddressesForUser(char *requested_user, char *new_emailaddrs)
1726 {
1727         struct ctdluser usbuf;
1728         int i;
1729         char buf[SIZ];
1730
1731         if (CtdlGetUserLock(&usbuf, requested_user) != 0) {     // We are relying on the fact that the DirectoryIndex functions don't lock.
1732                 return;                                         // Silently fail here if we can't acquire a lock on the user record.
1733         }
1734
1735         syslog(LOG_DEBUG, "internet_addressing: setting email addresses for <%s> to <%s>", usbuf.fullname, new_emailaddrs);
1736
1737         /* Delete all of the existing directory index records for the user (easier this way) */
1738         for (i=0; i<num_tokens(usbuf.emailaddrs, '|'); ++i) {
1739                 extract_token(buf, usbuf.emailaddrs, i, '|', sizeof buf);
1740                 CtdlDirectoryDelUser(buf, requested_user);
1741         }
1742
1743         strcpy(usbuf.emailaddrs, new_emailaddrs);               // make it official.
1744
1745         /* Index all of the new email addresses (they've already been sanitized) */
1746         for (i=0; i<num_tokens(usbuf.emailaddrs, '|'); ++i) {
1747                 extract_token(buf, usbuf.emailaddrs, i, '|', sizeof buf);
1748                 CtdlDirectoryAddUser(buf, requested_user);
1749         }
1750
1751         CtdlPutUserLock(&usbuf);
1752 }