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