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