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