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