02ba8dfe3e0987f764334aadb9fdf8ac0709f1b8
[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-2018 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         /* If we get to this point it's an invalid node name */
486         return (MES_ERROR);
487 }
488
489
490 /*
491  * Validate recipients, count delivery types and errors, and handle aliasing
492  * FIXME check for dupes!!!!!
493  *
494  * Returns 0 if all addresses are ok, ret->num_error = -1 if no addresses 
495  * were specified, or the number of addresses found invalid.
496  *
497  * Caller needs to free the result using free_recipients()
498  */
499 recptypes *validate_recipients(const char *supplied_recipients, const char *RemoteIdentifier, int Flags)
500 {
501         struct CitContext *CCC = CC;
502         recptypes *ret;
503         char *recipients = NULL;
504         char *org_recp;
505         char this_recp[256];
506         char this_recp_cooked[256];
507         char append[SIZ];
508         long len;
509         int num_recps = 0;
510         int i, j;
511         int mailtype;
512         int invalid;
513         struct ctdluser tempUS;
514         struct ctdlroom tempQR;
515         struct ctdlroom tempQR2;
516         int err = 0;
517         char errmsg[SIZ];
518         int in_quotes = 0;
519
520         /* Initialize */
521         ret = (recptypes *) malloc(sizeof(recptypes));
522         if (ret == NULL) return(NULL);
523
524         /* Set all strings to null and numeric values to zero */
525         memset(ret, 0, sizeof(recptypes));
526
527         if (supplied_recipients == NULL) {
528                 recipients = strdup("");
529         }
530         else {
531                 recipients = strdup(supplied_recipients);
532         }
533
534         /* Allocate some memory.  Yes, this allocates 500% more memory than we will
535          * actually need, but it's healthier for the heap than doing lots of tiny
536          * realloc() calls instead.
537          */
538         len = strlen(recipients) + 1024;
539         ret->errormsg = malloc(len);
540         ret->recp_local = malloc(len);
541         ret->recp_internet = malloc(len);
542         ret->recp_room = malloc(len);
543         ret->display_recp = malloc(len);
544         ret->recp_orgroom = malloc(len);
545         org_recp = malloc(len);
546
547         ret->errormsg[0] = 0;
548         ret->recp_local[0] = 0;
549         ret->recp_internet[0] = 0;
550         ret->recp_room[0] = 0;
551         ret->recp_orgroom[0] = 0;
552         ret->display_recp[0] = 0;
553
554         ret->recptypes_magic = RECPTYPES_MAGIC;
555
556         /* Change all valid separator characters to commas */
557         for (i=0; !IsEmptyStr(&recipients[i]); ++i) {
558                 if ((recipients[i] == ';') || (recipients[i] == '|')) {
559                         recipients[i] = ',';
560                 }
561         }
562
563         /* Now start extracting recipients... */
564
565         while (!IsEmptyStr(recipients)) {
566                 for (i=0; i<=strlen(recipients); ++i) {
567                         if (recipients[i] == '\"') in_quotes = 1 - in_quotes;
568                         if ( ( (recipients[i] == ',') && (!in_quotes) ) || (recipients[i] == 0) ) {
569                                 safestrncpy(this_recp, recipients, i+1);
570                                 this_recp[i] = 0;
571                                 if (recipients[i] == ',') {
572                                         strcpy(recipients, &recipients[i+1]);
573                                 }
574                                 else {
575                                         strcpy(recipients, "");
576                                 }
577                                 break;
578                         }
579                 }
580
581                 striplt(this_recp);
582                 if (IsEmptyStr(this_recp))
583                         break;
584                 syslog(LOG_DEBUG, "internet_addressing: evaluating recipient #%d: %s", num_recps, this_recp);
585                 ++num_recps;
586
587                 strcpy(org_recp, this_recp);
588                 alias(this_recp);
589                 alias(this_recp);
590                 mailtype = alias(this_recp);
591
592                 for (j = 0; !IsEmptyStr(&this_recp[j]); ++j) {
593                         if (this_recp[j]=='_') {
594                                 this_recp_cooked[j] = ' ';
595                         }
596                         else {
597                                 this_recp_cooked[j] = this_recp[j];
598                         }
599                 }
600                 this_recp_cooked[j] = '\0';
601                 invalid = 0;
602                 errmsg[0] = 0;
603                 switch(mailtype) {
604                 case MES_LOCAL:
605                         if (!strcasecmp(this_recp, "sysop")) {
606                                 ++ret->num_room;
607                                 strcpy(this_recp, CtdlGetConfigStr("c_aideroom"));
608                                 if (!IsEmptyStr(ret->recp_room)) {
609                                         strcat(ret->recp_room, "|");
610                                 }
611                                 strcat(ret->recp_room, this_recp);
612                         }
613                         else if ( (!strncasecmp(this_recp, "room_", 5))
614                                   && (!CtdlGetRoom(&tempQR, &this_recp_cooked[5])) ) {
615
616                                 /* Save room so we can restore it later */
617                                 tempQR2 = CCC->room;
618                                 CCC->room = tempQR;
619                                         
620                                 /* Check permissions to send mail to this room */
621                                 err = CtdlDoIHavePermissionToPostInThisRoom(
622                                         errmsg, 
623                                         sizeof errmsg, 
624                                         RemoteIdentifier,
625                                         Flags,
626                                         0                       /* 0 = not a reply */
627                                         );
628                                 if (err)
629                                 {
630                                         ++ret->num_error;
631                                         invalid = 1;
632                                 } 
633                                 else {
634                                         ++ret->num_room;
635                                         if (!IsEmptyStr(ret->recp_room)) {
636                                                 strcat(ret->recp_room, "|");
637                                         }
638                                         strcat(ret->recp_room, &this_recp_cooked[5]);
639
640                                         if (!IsEmptyStr(ret->recp_orgroom)) {
641                                                 strcat(ret->recp_orgroom, "|");
642                                         }
643                                         strcat(ret->recp_orgroom, org_recp);
644
645                                 }
646                                         
647                                 /* Restore room in case something needs it */
648                                 CCC->room = tempQR2;
649
650                         }
651                         else if (CtdlGetUser(&tempUS, this_recp) == 0) {
652                                 ++ret->num_local;
653                                 strcpy(this_recp, tempUS.fullname);
654                                 if (!IsEmptyStr(ret->recp_local)) {
655                                         strcat(ret->recp_local, "|");
656                                 }
657                                 strcat(ret->recp_local, this_recp);
658                         }
659                         else if (CtdlGetUser(&tempUS, this_recp_cooked) == 0) {
660                                 ++ret->num_local;
661                                 strcpy(this_recp, tempUS.fullname);
662                                 if (!IsEmptyStr(ret->recp_local)) {
663                                         strcat(ret->recp_local, "|");
664                                 }
665                                 strcat(ret->recp_local, this_recp);
666                         }
667                         else {
668                                 ++ret->num_error;
669                                 invalid = 1;
670                         }
671                         break;
672                 case MES_INTERNET:
673                         /* Yes, you're reading this correctly: if the target
674                          * domain points back to the local system,
675                          * the address is invalid.  That's
676                          * because if the address were valid, we would have
677                          * already translated it to a local address by now.
678                          */
679                         if (IsDirectory(this_recp, 0)) {
680                                 ++ret->num_error;
681                                 invalid = 1;
682                         }
683                         else {
684                                 ++ret->num_internet;
685                                 if (!IsEmptyStr(ret->recp_internet)) {
686                                         strcat(ret->recp_internet, "|");
687                                 }
688                                 strcat(ret->recp_internet, this_recp);
689                         }
690                         break;
691                 case MES_ERROR:
692                         ++ret->num_error;
693                         invalid = 1;
694                         break;
695                 }
696                 if (invalid) {
697                         if (IsEmptyStr(errmsg)) {
698                                 snprintf(append, sizeof append, "Invalid recipient: %s", this_recp);
699                         }
700                         else {
701                                 snprintf(append, sizeof append, "%s", errmsg);
702                         }
703                         if ( (strlen(ret->errormsg) + strlen(append) + 3) < SIZ) {
704                                 if (!IsEmptyStr(ret->errormsg)) {
705                                         strcat(ret->errormsg, "; ");
706                                 }
707                                 strcat(ret->errormsg, append);
708                         }
709                 }
710                 else {
711                         if (IsEmptyStr(ret->display_recp)) {
712                                 strcpy(append, this_recp);
713                         }
714                         else {
715                                 snprintf(append, sizeof append, ", %s", this_recp);
716                         }
717                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
718                                 strcat(ret->display_recp, append);
719                         }
720                 }
721         }
722         free(org_recp);
723
724         if ( (ret->num_local + ret->num_internet + ret->num_room + ret->num_error) == 0)
725         {
726                 ret->num_error = (-1);
727                 strcpy(ret->errormsg, "No recipients specified.");
728         }
729
730         syslog(LOG_DEBUG, "internet_addressing: validate_recipients() = %d local, %d room, %d SMTP, %d error",
731                 ret->num_local, ret->num_room, ret->num_internet, ret->num_error
732         );
733
734         free(recipients);
735         return(ret);
736 }
737
738
739 /*
740  * Destructor for recptypes
741  */
742 void free_recipients(recptypes *valid) {
743
744         if (valid == NULL) {
745                 return;
746         }
747
748         if (valid->recptypes_magic != RECPTYPES_MAGIC) {
749                 syslog(LOG_ERR, "internet_addressing: attempt to call free_recipients() on some other data type!");
750                 abort();
751         }
752
753         if (valid->errormsg != NULL)            free(valid->errormsg);
754         if (valid->recp_local != NULL)          free(valid->recp_local);
755         if (valid->recp_internet != NULL)       free(valid->recp_internet);
756         if (valid->recp_room != NULL)           free(valid->recp_room);
757         if (valid->recp_orgroom != NULL)        free(valid->recp_orgroom);
758         if (valid->display_recp != NULL)        free(valid->display_recp);
759         if (valid->bounce_to != NULL)           free(valid->bounce_to);
760         if (valid->envelope_from != NULL)       free(valid->envelope_from);
761         if (valid->sending_room != NULL)        free(valid->sending_room);
762         free(valid);
763 }
764
765
766 char *qp_encode_email_addrs(char *source)
767 {
768         char *user, *node, *name;
769         const char headerStr[] = "=?UTF-8?Q?";
770         char *Encoded;
771         char *EncodedName;
772         char *nPtr;
773         int need_to_encode = 0;
774         long SourceLen;
775         long EncodedMaxLen;
776         long nColons = 0;
777         long *AddrPtr;
778         long *AddrUtf8;
779         long nAddrPtrMax = 50;
780         long nmax;
781         int InQuotes = 0;
782         int i, n;
783
784         if (source == NULL) return source;
785         if (IsEmptyStr(source)) return source;
786         syslog(LOG_DEBUG, "internet_addressing: qp_encode_email_addrs <%s>", source);
787
788         AddrPtr = malloc (sizeof (long) * nAddrPtrMax);
789         AddrUtf8 = malloc (sizeof (long) * nAddrPtrMax);
790         memset(AddrUtf8, 0, sizeof (long) * nAddrPtrMax);
791         *AddrPtr = 0;
792         i = 0;
793         while (!IsEmptyStr (&source[i])) {
794                 if (nColons >= nAddrPtrMax){
795                         long *ptr;
796
797                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
798                         memcpy (ptr, AddrPtr, sizeof (long) * nAddrPtrMax);
799                         free (AddrPtr), AddrPtr = ptr;
800
801                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
802                         memset(&ptr[nAddrPtrMax], 0, 
803                                sizeof (long) * nAddrPtrMax);
804
805                         memcpy (ptr, AddrUtf8, sizeof (long) * nAddrPtrMax);
806                         free (AddrUtf8), AddrUtf8 = ptr;
807                         nAddrPtrMax *= 2;                               
808                 }
809                 if (((unsigned char) source[i] < 32) || 
810                     ((unsigned char) source[i] > 126)) {
811                         need_to_encode = 1;
812                         AddrUtf8[nColons] = 1;
813                 }
814                 if (source[i] == '"')
815                         InQuotes = !InQuotes;
816                 if (!InQuotes && source[i] == ',') {
817                         AddrPtr[nColons] = i;
818                         nColons++;
819                 }
820                 i++;
821         }
822         if (need_to_encode == 0) {
823                 free(AddrPtr);
824                 free(AddrUtf8);
825                 return source;
826         }
827
828         SourceLen = i;
829         EncodedMaxLen = nColons * (sizeof(headerStr) + 3) + SourceLen * 3;
830         Encoded = (char*) malloc (EncodedMaxLen);
831
832         for (i = 0; i < nColons; i++) {
833                 source[AddrPtr[i]++] = '\0';
834         }
835         /* TODO: if libidn, this might get larger*/
836         user = malloc(SourceLen + 1);
837         node = malloc(SourceLen + 1);
838         name = malloc(SourceLen + 1);
839
840         nPtr = Encoded;
841         *nPtr = '\0';
842         for (i = 0; i < nColons && nPtr != NULL; i++) {
843                 nmax = EncodedMaxLen - (nPtr - Encoded);
844                 if (AddrUtf8[i]) {
845                         process_rfc822_addr(&source[AddrPtr[i]], 
846                                             user,
847                                             node,
848                                             name);
849                         /* TODO: libIDN here ! */
850                         if (IsEmptyStr(name)) {
851                                 n = snprintf(nPtr, nmax, 
852                                              (i==0)?"%s@%s" : ",%s@%s",
853                                              user, node);
854                         }
855                         else {
856                                 EncodedName = rfc2047encode(name, strlen(name));                        
857                                 n = snprintf(nPtr, nmax, 
858                                              (i==0)?"%s <%s@%s>" : ",%s <%s@%s>",
859                                              EncodedName, user, node);
860                                 free(EncodedName);
861                         }
862                 }
863                 else { 
864                         n = snprintf(nPtr, nmax, 
865                                      (i==0)?"%s" : ",%s",
866                                      &source[AddrPtr[i]]);
867                 }
868                 if (n > 0 )
869                         nPtr += n;
870                 else { 
871                         char *ptr, *nnPtr;
872                         ptr = (char*) malloc(EncodedMaxLen * 2);
873                         memcpy(ptr, Encoded, EncodedMaxLen);
874                         nnPtr = ptr + (nPtr - Encoded), nPtr = nnPtr;
875                         free(Encoded), Encoded = ptr;
876                         EncodedMaxLen *= 2;
877                         i--; /* do it once more with properly lengthened buffer */
878                 }
879         }
880         for (i = 0; i < nColons; i++)
881                 source[--AddrPtr[i]] = ',';
882
883         free(user);
884         free(node);
885         free(name);
886         free(AddrUtf8);
887         free(AddrPtr);
888         return Encoded;
889 }
890
891
892 /*
893  * Unfold a multi-line field into a single line, removing multi-whitespaces
894  */
895 void unfold_rfc822_field(char **field, char **FieldEnd) 
896 {
897         int quote = 0;
898         char *pField = *field;
899         char *sField;
900         char *pFieldEnd = *FieldEnd;
901
902         while (isspace(*pField))
903                 pField++;
904         /* remove leading/trailing whitespace */
905         ;
906
907         while (isspace(*pFieldEnd))
908                 pFieldEnd --;
909
910         *FieldEnd = pFieldEnd;
911         /* convert non-space whitespace to spaces, and remove double blanks */
912         for (sField = *field = pField; 
913              sField < pFieldEnd; 
914              pField++, sField++)
915         {
916                 if ((*sField=='\r') || (*sField=='\n'))
917                 {
918                         int Offset = 1;
919                         while (((*(sField + Offset) == '\r') ||
920                                 (*(sField + Offset) == '\n') ||
921                                 (isspace(*(sField + Offset)))) && 
922                                (sField + Offset < pFieldEnd))
923                                 Offset ++;
924                         sField += Offset;
925                         *pField = *sField;
926                 }
927                 else {
928                         if (*sField=='\"') quote = 1 - quote;
929                         if (!quote) {
930                                 if (isspace(*sField))
931                                 {
932                                         *pField = ' ';
933                                         pField++;
934                                         sField++;
935                                         
936                                         while ((sField < pFieldEnd) && 
937                                                isspace(*sField))
938                                                 sField++;
939                                         *pField = *sField;
940                                 }
941                                 else *pField = *sField;
942                         }
943                         else *pField = *sField;
944                 }
945         }
946         *pField = '\0';
947         *FieldEnd = pField - 1;
948 }
949
950
951 /*
952  * Split an RFC822-style address into userid, host, and full name
953  *
954  */
955 void process_rfc822_addr(const char *rfc822, char *user, char *node, char *name)
956 {
957         int a;
958
959         strcpy(user, "");
960         strcpy(node, CtdlGetConfigStr("c_fqdn"));
961         strcpy(name, "");
962
963         if (rfc822 == NULL) return;
964
965         /* extract full name - first, it's From minus <userid> */
966         strcpy(name, rfc822);
967         stripout(name, '<', '>');
968
969         /* strip anything to the left of a bang */
970         while ((!IsEmptyStr(name)) && (haschar(name, '!') > 0))
971                 strcpy(name, &name[1]);
972
973         /* and anything to the right of a @ or % */
974         for (a = 0; name[a] != '\0'; ++a) {
975                 if (name[a] == '@') {
976                         name[a] = 0;
977                         break;
978                 }
979                 if (name[a] == '%') {
980                         name[a] = 0;
981                         break;
982                 }
983         }
984
985         /* but if there are parentheses, that changes the rules... */
986         if ((haschar(rfc822, '(') == 1) && (haschar(rfc822, ')') == 1)) {
987                 strcpy(name, rfc822);
988                 stripallbut(name, '(', ')');
989         }
990
991         /* but if there are a set of quotes, that supersedes everything */
992         if (haschar(rfc822, 34) == 2) {
993                 strcpy(name, rfc822);
994                 while ((!IsEmptyStr(name)) && (name[0] != 34)) {
995                         strcpy(&name[0], &name[1]);
996                 }
997                 strcpy(&name[0], &name[1]);
998                 for (a = 0; name[a] != '\0'; ++a)
999                         if (name[a] == 34) {
1000                                 name[a] = 0;
1001                                 break;
1002                         }
1003         }
1004         /* extract user id */
1005         strcpy(user, rfc822);
1006
1007         /* first get rid of anything in parens */
1008         stripout(user, '(', ')');
1009
1010         /* if there's a set of angle brackets, strip it down to that */
1011         if ((haschar(user, '<') == 1) && (haschar(user, '>') == 1)) {
1012                 stripallbut(user, '<', '>');
1013         }
1014
1015         /* strip anything to the left of a bang */
1016         while ((!IsEmptyStr(user)) && (haschar(user, '!') > 0))
1017                 strcpy(user, &user[1]);
1018
1019         /* and anything to the right of a @ or % */
1020         for (a = 0; user[a] != '\0'; ++a) {
1021                 if (user[a] == '@') {
1022                         user[a] = 0;
1023                         break;
1024                 }
1025                 if (user[a] == '%') {
1026                         user[a] = 0;
1027                         break;
1028                 }
1029         }
1030
1031
1032         /* extract node name */
1033         strcpy(node, rfc822);
1034
1035         /* first get rid of anything in parens */
1036         stripout(node, '(', ')');
1037
1038         /* if there's a set of angle brackets, strip it down to that */
1039         if ((haschar(node, '<') == 1) && (haschar(node, '>') == 1)) {
1040                 stripallbut(node, '<', '>');
1041         }
1042
1043         /* If no node specified, tack ours on instead */
1044         if (
1045                 (haschar(node, '@')==0)
1046                 && (haschar(node, '%')==0)
1047                 && (haschar(node, '!')==0)
1048         ) {
1049                 strcpy(node, CtdlGetConfigStr("c_nodename"));
1050         }
1051
1052         else {
1053
1054                 /* strip anything to the left of a @ */
1055                 while ((!IsEmptyStr(node)) && (haschar(node, '@') > 0))
1056                         strcpy(node, &node[1]);
1057         
1058                 /* strip anything to the left of a % */
1059                 while ((!IsEmptyStr(node)) && (haschar(node, '%') > 0))
1060                         strcpy(node, &node[1]);
1061         
1062                 /* reduce multiple system bang paths to node!user */
1063                 while ((!IsEmptyStr(node)) && (haschar(node, '!') > 1))
1064                         strcpy(node, &node[1]);
1065         
1066                 /* now get rid of the user portion of a node!user string */
1067                 for (a = 0; node[a] != '\0'; ++a)
1068                         if (node[a] == '!') {
1069                                 node[a] = 0;
1070                                 break;
1071                         }
1072         }
1073
1074         /* strip leading and trailing spaces in all strings */
1075         striplt(user);
1076         striplt(node);
1077         striplt(name);
1078
1079         /* If we processed a string that had the address in angle brackets
1080          * but no name outside the brackets, we now have an empty name.  In
1081          * this case, use the user portion of the address as the name.
1082          */
1083         if ((IsEmptyStr(name)) && (!IsEmptyStr(user))) {
1084                 strcpy(name, user);
1085         }
1086 }
1087
1088
1089 /*
1090  * convert_field() is a helper function for convert_internet_message().
1091  * Given start/end positions for an rfc822 field, it converts it to a Citadel
1092  * field if it wants to, and unfolds it if necessary.
1093  *
1094  * Returns 1 if the field was converted and inserted into the Citadel message
1095  * structure, implying that the source field should be removed from the
1096  * message text.
1097  */
1098 int convert_field(struct CtdlMessage *msg, const char *beg, const char *end) {
1099         char *key, *value, *valueend;
1100         long len;
1101         const char *pos;
1102         int i;
1103         const char *colonpos = NULL;
1104         int processed = 0;
1105         char user[1024];
1106         char node[1024];
1107         char name[1024];
1108         char addr[1024];
1109         time_t parsed_date;
1110         long valuelen;
1111
1112         for (pos = end; pos >= beg; pos--) {
1113                 if (*pos == ':') colonpos = pos;
1114         }
1115
1116         if (colonpos == NULL) return(0);        /* no colon? not a valid header line */
1117
1118         len = end - beg;
1119         key = malloc(len + 2);
1120         memcpy(key, beg, len + 1);
1121         key[len] = '\0';
1122         valueend = key + len;
1123         * ( key + (colonpos - beg) ) = '\0';
1124         value = &key[(colonpos - beg) + 1];
1125 /*      printf("Header: [%s]\nValue: [%s]\n", key, value); */
1126         unfold_rfc822_field(&value, &valueend);
1127         valuelen = valueend - value + 1;
1128 /*      printf("UnfoldedValue: [%s]\n", value); */
1129
1130         /*
1131          * Here's the big rfc822-to-citadel loop.
1132          */
1133
1134         /* Date/time is converted into a unix timestamp.  If the conversion
1135          * fails, we replace it with the time the message arrived locally.
1136          */
1137         if (!strcasecmp(key, "Date")) {
1138                 parsed_date = parsedate(value);
1139                 if (parsed_date < 0L) parsed_date = time(NULL);
1140
1141                 if (CM_IsEmpty(msg, eTimestamp))
1142                         CM_SetFieldLONG(msg, eTimestamp, parsed_date);
1143                 processed = 1;
1144         }
1145
1146         else if (!strcasecmp(key, "From")) {
1147                 process_rfc822_addr(value, user, node, name);
1148                 syslog(LOG_DEBUG, "internet_addressing: converted to <%s@%s> (%s)", user, node, name);
1149                 snprintf(addr, sizeof(addr), "%s@%s", user, node);
1150                 if (CM_IsEmpty(msg, eAuthor) && !IsEmptyStr(name))
1151                         CM_SetField(msg, eAuthor, name, strlen(name));
1152                 if (CM_IsEmpty(msg, erFc822Addr) && !IsEmptyStr(addr))
1153                         CM_SetField(msg, erFc822Addr, addr, strlen(addr));
1154                 processed = 1;
1155         }
1156
1157         else if (!strcasecmp(key, "Subject")) {
1158                 if (CM_IsEmpty(msg, eMsgSubject))
1159                         CM_SetField(msg, eMsgSubject, value, valuelen);
1160                 processed = 1;
1161         }
1162
1163         else if (!strcasecmp(key, "List-ID")) {
1164                 if (CM_IsEmpty(msg, eListID))
1165                         CM_SetField(msg, eListID, value, valuelen);
1166                 processed = 1;
1167         }
1168
1169         else if (!strcasecmp(key, "To")) {
1170                 if (CM_IsEmpty(msg, eRecipient))
1171                         CM_SetField(msg, eRecipient, value, valuelen);
1172                 processed = 1;
1173         }
1174
1175         else if (!strcasecmp(key, "CC")) {
1176                 if (CM_IsEmpty(msg, eCarbonCopY))
1177                         CM_SetField(msg, eCarbonCopY, value, valuelen);
1178                 processed = 1;
1179         }
1180
1181         else if (!strcasecmp(key, "Message-ID")) {
1182                 if (!CM_IsEmpty(msg, emessageId)) {
1183                         syslog(LOG_WARNING, "internet_addressing: duplicate message id");
1184                 }
1185                 else {
1186                         char *pValue;
1187                         long pValueLen;
1188
1189                         pValue = value;
1190                         pValueLen = valuelen;
1191                         /* Strip angle brackets */
1192                         while (haschar(pValue, '<') > 0) {
1193                                 pValue ++;
1194                                 pValueLen --;
1195                         }
1196
1197                         for (i = 0; i <= pValueLen; ++i)
1198                                 if (pValue[i] == '>') {
1199                                         pValueLen = i;
1200                                         break;
1201                                 }
1202
1203                         CM_SetField(msg, emessageId, pValue, pValueLen);
1204                 }
1205
1206                 processed = 1;
1207         }
1208
1209         else if (!strcasecmp(key, "Return-Path")) {
1210                 if (CM_IsEmpty(msg, eMessagePath))
1211                         CM_SetField(msg, eMessagePath, value, valuelen);
1212                 processed = 1;
1213         }
1214
1215         else if (!strcasecmp(key, "Envelope-To")) {
1216                 if (CM_IsEmpty(msg, eenVelopeTo))
1217                         CM_SetField(msg, eenVelopeTo, value, valuelen);
1218                 processed = 1;
1219         }
1220
1221         else if (!strcasecmp(key, "References")) {
1222                 CM_SetField(msg, eWeferences, value, valuelen);
1223                 processed = 1;
1224         }
1225
1226         else if (!strcasecmp(key, "Reply-To")) {
1227                 CM_SetField(msg, eReplyTo, value, valuelen);
1228                 processed = 1;
1229         }
1230
1231         else if (!strcasecmp(key, "In-reply-to")) {
1232                 if (CM_IsEmpty(msg, eWeferences)) /* References: supersedes In-reply-to: */
1233                         CM_SetField(msg, eWeferences, value, valuelen);
1234                 processed = 1;
1235         }
1236
1237
1238
1239         /* Clean up and move on. */
1240         free(key);      /* Don't free 'value', it's actually the same buffer */
1241         return processed;
1242 }
1243
1244
1245 /*
1246  * Convert RFC822 references format (References) to Citadel references format (Weferences)
1247  */
1248 void convert_references_to_wefewences(char *str) {
1249         int bracket_nesting = 0;
1250         char *ptr = str;
1251         char *moveptr = NULL;
1252         char ch;
1253
1254         while(*ptr) {
1255                 ch = *ptr;
1256                 if (ch == '>') {
1257                         --bracket_nesting;
1258                         if (bracket_nesting < 0) bracket_nesting = 0;
1259                 }
1260                 if ((ch == '>') && (bracket_nesting == 0) && (*(ptr+1)) && (ptr>str) ) {
1261                         *ptr = '|';
1262                         ++ptr;
1263                 }
1264                 else if (bracket_nesting > 0) {
1265                         ++ptr;
1266                 }
1267                 else {
1268                         moveptr = ptr;
1269                         while (*moveptr) {
1270                                 *moveptr = *(moveptr+1);
1271                                 ++moveptr;
1272                         }
1273                 }
1274                 if (ch == '<') ++bracket_nesting;
1275         }
1276
1277 }
1278
1279
1280 /*
1281  * Convert an RFC822 message (headers + body) to a CtdlMessage structure.
1282  * NOTE: the supplied buffer becomes part of the CtdlMessage structure, and
1283  * will be deallocated when CM_Free() is called.  Therefore, the
1284  * supplied buffer should be DEREFERENCED.  It should not be freed or used
1285  * again.
1286  */
1287 struct CtdlMessage *convert_internet_message(char *rfc822) {
1288         StrBuf *RFCBuf = NewStrBufPlain(rfc822, -1);
1289         free (rfc822);
1290         return convert_internet_message_buf(&RFCBuf);
1291 }
1292
1293
1294 struct CtdlMessage *convert_internet_message_buf(StrBuf **rfc822)
1295 {
1296         struct CtdlMessage *msg;
1297         const char *pos, *beg, *end, *totalend;
1298         int done, alldone = 0;
1299         int converted;
1300         StrBuf *OtherHeaders;
1301
1302         msg = malloc(sizeof(struct CtdlMessage));
1303         if (msg == NULL) return msg;
1304
1305         memset(msg, 0, sizeof(struct CtdlMessage));
1306         msg->cm_magic = CTDLMESSAGE_MAGIC;      /* self check */
1307         msg->cm_anon_type = 0;                  /* never anonymous */
1308         msg->cm_format_type = FMT_RFC822;       /* internet message */
1309
1310         pos = ChrPtr(*rfc822);
1311         totalend = pos + StrLength(*rfc822);
1312         done = 0;
1313         OtherHeaders = NewStrBufPlain(NULL, StrLength(*rfc822));
1314
1315         while (!alldone) {
1316
1317                 /* Locate beginning and end of field, keeping in mind that
1318                  * some fields might be multiline
1319                  */
1320                 end = beg = pos;
1321
1322                 while ((end < totalend) && 
1323                        (end == beg) && 
1324                        (done == 0) ) 
1325                 {
1326
1327                         if ( (*pos=='\n') && ((*(pos+1))!=0x20) && ((*(pos+1))!=0x09) )
1328                         {
1329                                 end = pos;
1330                         }
1331
1332                         /* done with headers? */
1333                         if ((*pos=='\n') &&
1334                             ( (*(pos+1)=='\n') ||
1335                               (*(pos+1)=='\r')) ) 
1336                         {
1337                                 alldone = 1;
1338                         }
1339
1340                         if (pos >= (totalend - 1) )
1341                         {
1342                                 end = pos;
1343                                 done = 1;
1344                         }
1345
1346                         ++pos;
1347
1348                 }
1349
1350                 /* At this point we have a field.  Are we interested in it? */
1351                 converted = convert_field(msg, beg, end);
1352
1353                 /* Strip the field out of the RFC822 header if we used it */
1354                 if (!converted) {
1355                         StrBufAppendBufPlain(OtherHeaders, beg, end - beg, 0);
1356                         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
1357                 }
1358
1359                 /* If we've hit the end of the message, bail out */
1360                 if (pos >= totalend)
1361                         alldone = 1;
1362         }
1363         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
1364         if (pos < totalend)
1365                 StrBufAppendBufPlain(OtherHeaders, pos, totalend - pos, 0);
1366         FreeStrBuf(rfc822);
1367         CM_SetAsFieldSB(msg, eMesageText, &OtherHeaders);
1368
1369         /* Follow-up sanity checks... */
1370
1371         /* If there's no timestamp on this message, set it to now. */
1372         if (CM_IsEmpty(msg, eTimestamp)) {
1373                 CM_SetFieldLONG(msg, eTimestamp, time(NULL));
1374         }
1375
1376         /* If a W (references, or rather, Wefewences) field is present, we
1377          * have to convert it from RFC822 format to Citadel format.
1378          */
1379         if (!CM_IsEmpty(msg, eWeferences)) {
1380                 /// todo: API!
1381                 convert_references_to_wefewences(msg->cm_fields[eWeferences]);
1382         }
1383
1384         return msg;
1385 }
1386
1387
1388 /*
1389  * Look for a particular header field in an RFC822 message text.  If the
1390  * requested field is found, it is unfolded (if necessary) and returned to
1391  * the caller.  The field name is stripped out, leaving only its contents.
1392  * The caller is responsible for freeing the returned buffer.  If the requested
1393  * field is not present, or anything else goes wrong, it returns NULL.
1394  */
1395 char *rfc822_fetch_field(const char *rfc822, const char *fieldname) {
1396         char *fieldbuf = NULL;
1397         const char *end_of_headers;
1398         const char *field_start;
1399         const char *ptr;
1400         char *cont;
1401         char fieldhdr[SIZ];
1402
1403         /* Should never happen, but sometimes we get stupid */
1404         if (rfc822 == NULL) return(NULL);
1405         if (fieldname == NULL) return(NULL);
1406
1407         snprintf(fieldhdr, sizeof fieldhdr, "%s:", fieldname);
1408
1409         /* Locate the end of the headers, so we don't run past that point */
1410         end_of_headers = cbmstrcasestr(rfc822, "\n\r\n");
1411         if (end_of_headers == NULL) {
1412                 end_of_headers = cbmstrcasestr(rfc822, "\n\n");
1413         }
1414         if (end_of_headers == NULL) return (NULL);
1415
1416         field_start = cbmstrcasestr(rfc822, fieldhdr);
1417         if (field_start == NULL) return(NULL);
1418         if (field_start > end_of_headers) return(NULL);
1419
1420         fieldbuf = malloc(SIZ);
1421         strcpy(fieldbuf, "");
1422
1423         ptr = field_start;
1424         ptr = cmemreadline(ptr, fieldbuf, SIZ-strlen(fieldbuf) );
1425         while ( (isspace(ptr[0])) && (ptr < end_of_headers) ) {
1426                 strcat(fieldbuf, " ");
1427                 cont = &fieldbuf[strlen(fieldbuf)];
1428                 ptr = cmemreadline(ptr, cont, SIZ-strlen(fieldbuf) );
1429                 striplt(cont);
1430         }
1431
1432         strcpy(fieldbuf, &fieldbuf[strlen(fieldhdr)]);
1433         striplt(fieldbuf);
1434
1435         return(fieldbuf);
1436 }
1437
1438
1439 /*****************************************************************************
1440  *                      DIRECTORY MANAGEMENT FUNCTIONS                       *
1441  *****************************************************************************/
1442
1443 /*
1444  * Generate the index key for an Internet e-mail address to be looked up
1445  * in the database.
1446  */
1447 void directory_key(char *key, char *addr) {
1448         int i;
1449         int keylen = 0;
1450
1451         for (i=0; !IsEmptyStr(&addr[i]); ++i) {
1452                 if (!isspace(addr[i])) {
1453                         key[keylen++] = tolower(addr[i]);
1454                 }
1455         }
1456         key[keylen++] = 0;
1457
1458         syslog(LOG_DEBUG, "internet_addressing: directory key is <%s>", key);
1459 }
1460
1461
1462 /* Return nonzero if the supplied address is in one of "our" domains
1463  */
1464 int IsDirectory(char *addr, int allow_masq_domains) {
1465         char domain[256];
1466         int h;
1467
1468         extract_token(domain, addr, 1, '@', sizeof domain);
1469         striplt(domain);
1470
1471         h = CtdlHostAlias(domain);
1472
1473         if ( (h == hostalias_masq) && allow_masq_domains)
1474                 return(1);
1475         
1476         if (h == hostalias_localhost) {
1477                 return(1);
1478         }
1479         else {
1480                 return(0);
1481         }
1482 }
1483
1484
1485 /*
1486  * Add an Internet e-mail address to the directory for a user
1487  */
1488 int CtdlDirectoryAddUser(char *internet_addr, char *citadel_addr) {
1489         char key[SIZ];
1490
1491         if (IsDirectory(internet_addr, 0) == 0) {
1492                 return 0;
1493         }
1494         syslog(LOG_DEBUG, "internet_addressing: create directory entry: %s --> %s", internet_addr, citadel_addr);
1495         directory_key(key, internet_addr);
1496         cdb_store(CDB_DIRECTORY, key, strlen(key), citadel_addr, strlen(citadel_addr)+1 );
1497         return 1;
1498 }
1499
1500
1501 /*
1502  * Delete an Internet e-mail address from the directory.
1503  *
1504  * (NOTE: we don't actually use or need the citadel_addr variable; it's merely
1505  * here because the callback API expects to be able to send it.)
1506  */
1507 int CtdlDirectoryDelUser(char *internet_addr, char *citadel_addr) {
1508         char key[SIZ];
1509         
1510         syslog(LOG_DEBUG, "internet_addressing: delete directory entry: %s --> %s", internet_addr, citadel_addr);
1511         directory_key(key, internet_addr);
1512         return cdb_delete(CDB_DIRECTORY, key, strlen(key) ) == 0;
1513 }
1514
1515
1516 /*
1517  * Look up an Internet e-mail address in the directory.
1518  * On success: returns 0, and Citadel address stored in 'target'
1519  * On failure: returns nonzero
1520  */
1521 int CtdlDirectoryLookup(char *target, char *internet_addr, size_t targbuflen) {
1522         struct cdbdata *cdbrec;
1523         char key[SIZ];
1524
1525         /* Dump it in there unchanged, just for kicks */
1526         safestrncpy(target, internet_addr, targbuflen);
1527
1528         /* Only do lookups for addresses with hostnames in them */
1529         if (num_tokens(internet_addr, '@') != 2) return(-1);
1530
1531         /* Only do lookups for domains in the directory */
1532         if (IsDirectory(internet_addr, 0) == 0) return(-1);
1533
1534         directory_key(key, internet_addr);
1535         cdbrec = cdb_fetch(CDB_DIRECTORY, key, strlen(key) );
1536         if (cdbrec != NULL) {
1537                 safestrncpy(target, cdbrec->ptr, targbuflen);
1538                 cdb_free(cdbrec);
1539                 return(0);
1540         }
1541
1542         return(-1);
1543 }
1544
1545
1546 /*
1547  * Harvest any email addresses that someone might want to have in their
1548  * "collected addresses" book.
1549  */
1550 char *harvest_collected_addresses(struct CtdlMessage *msg) {
1551         char *coll = NULL;
1552         char addr[256];
1553         char user[256], node[256], name[256];
1554         int is_harvestable;
1555         int i, j, h;
1556         eMsgField field = 0;
1557
1558         if (msg == NULL) return(NULL);
1559
1560         is_harvestable = 1;
1561         strcpy(addr, "");       
1562         if (!CM_IsEmpty(msg, eAuthor)) {
1563                 strcat(addr, msg->cm_fields[eAuthor]);
1564         }
1565         if (!CM_IsEmpty(msg, erFc822Addr)) {
1566                 strcat(addr, " <");
1567                 strcat(addr, msg->cm_fields[erFc822Addr]);
1568                 strcat(addr, ">");
1569                 if (IsDirectory(msg->cm_fields[erFc822Addr], 0)) {
1570                         is_harvestable = 0;
1571                 }
1572         }
1573
1574         if (is_harvestable) {
1575                 coll = strdup(addr);
1576         }
1577         else {
1578                 coll = strdup("");
1579         }
1580
1581         if (coll == NULL) return(NULL);
1582
1583         /* Scan both the R (To) and Y (CC) fields */
1584         for (i = 0; i < 2; ++i) {
1585                 if (i == 0) field = eRecipient;
1586                 if (i == 1) field = eCarbonCopY;
1587
1588                 if (!CM_IsEmpty(msg, field)) {
1589                         for (j=0; j<num_tokens(msg->cm_fields[field], ','); ++j) {
1590                                 extract_token(addr, msg->cm_fields[field], j, ',', sizeof addr);
1591                                 if (strstr(addr, "=?") != NULL)
1592                                         utf8ify_rfc822_string(addr);
1593                                 process_rfc822_addr(addr, user, node, name);
1594                                 h = CtdlHostAlias(node);
1595                                 if (h != hostalias_localhost) {
1596                                         coll = realloc(coll, strlen(coll) + strlen(addr) + 4);
1597                                         if (coll == NULL) return(NULL);
1598                                         if (!IsEmptyStr(coll)) {
1599                                                 strcat(coll, ",");
1600                                         }
1601                                         striplt(addr);
1602                                         strcat(coll, addr);
1603                                 }
1604                         }
1605                 }
1606         }
1607
1608         if (IsEmptyStr(coll)) {
1609                 free(coll);
1610                 return(NULL);
1611         }
1612         return(coll);
1613 }
1614
1615
1616 /*
1617  * Helper function for CtdlRebuildDirectoryIndex()
1618  *
1619  * Call this function as a ForEachUser backend in order to queue up
1620  * user names, or call it with a null user to make it do the processing.
1621  * This allows us to maintain the list as a static instead of passing
1622  * pointers around.
1623  */
1624 void CtdlRebuildDirectoryIndex_backend(struct ctdluser *usbuf, void *data) {
1625
1626         struct crdib {
1627                 char name[64];
1628                 char emails[512];
1629         };
1630
1631         static struct crdib *e = NULL;
1632         static int num_e = 0;
1633         static int alloc_e = 0;
1634
1635         /* this is the calling mode where we add a user */
1636
1637         if (usbuf != NULL) {
1638                 if (num_e >= alloc_e) {
1639                         if (alloc_e == 0) {
1640                                 alloc_e = 100;
1641                                 e = malloc(sizeof(struct crdib) * alloc_e);
1642                         }
1643                         else {
1644                                 alloc_e *= 2;
1645                                 e = realloc(e, (sizeof(struct crdib) * alloc_e));
1646                         }
1647                 }
1648                 strcpy(e[num_e].name, usbuf->fullname);
1649                 strcpy(e[num_e].emails, usbuf->emailaddrs);
1650                 ++num_e;
1651                 return;
1652         }
1653
1654         /* this is the calling mode where we do the processing */
1655
1656         int i, j;
1657         for (i=0; i<num_e; ++i) {
1658                 if ( (!IsEmptyStr(e[i].name)) && (!IsEmptyStr(e[i].emails)) ) {
1659                         for (j=0; j<num_tokens(e[i].emails, '|'); ++j) {
1660                                 char one_email[512];
1661                                 extract_token(one_email, e[i].emails, j, '|', sizeof one_email);
1662                                 CtdlDirectoryAddUser(one_email, e[i].name);
1663                         }
1664                 }
1665         }
1666         free(e);
1667         num_e = 0;
1668         alloc_e = 0;
1669         return;
1670 }
1671
1672
1673 /*
1674  * Initialize the directory database (erasing anything already there)
1675  */
1676 void CtdlRebuildDirectoryIndex(void) {
1677         syslog(LOG_INFO, "internet_addressing: rebuilding email address directory index");
1678         cdb_trunc(CDB_DIRECTORY);
1679         ForEachUser(CtdlRebuildDirectoryIndex_backend, NULL);
1680         CtdlRebuildDirectoryIndex_backend(NULL, NULL);
1681 }
1682
1683
1684 /*
1685  * Configure Internet email addresses for a user account, updating the Directory Index in the process
1686  */
1687 void CtdlSetEmailAddressesForUser(char *requested_user, char *new_emailaddrs)
1688 {
1689         struct ctdluser usbuf;
1690         int i;
1691         char buf[SIZ];
1692
1693         if (CtdlGetUserLock(&usbuf, requested_user) != 0) {     // We are relying on the fact that the DirectoryIndex functions don't lock.
1694                 return;                                         // Silently fail here if we can't acquire a lock on the user record.
1695         }
1696
1697         syslog(LOG_DEBUG, "internet_addressing: setting email addresses for <%s> to <%s>", usbuf.fullname, new_emailaddrs);
1698
1699         /* Delete all of the existing directory index records for the user (easier this way) */
1700         for (i=0; i<num_tokens(usbuf.emailaddrs, '|'); ++i) {
1701                 extract_token(buf, usbuf.emailaddrs, i, '|', sizeof buf);
1702                 CtdlDirectoryDelUser(buf, requested_user);
1703         }
1704
1705         strcpy(usbuf.emailaddrs, new_emailaddrs);               // make it official.
1706
1707         /* Index all of the new email addresses (they've already been sanitized) */
1708         for (i=0; i<num_tokens(usbuf.emailaddrs, '|'); ++i) {
1709                 extract_token(buf, usbuf.emailaddrs, i, '|', sizeof buf);
1710                 CtdlDirectoryAddUser(buf, requested_user);
1711         }
1712
1713         CtdlPutUserLock(&usbuf);
1714 }