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