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