030291f6c6412ec2286a356e64b33f986bae71e7
[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         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, -1);
1109                 }
1110                 if (CM_IsEmpty(msg, erFc822Addr) && !IsEmptyStr(addr)) {
1111                         CM_SetField(msg, erFc822Addr, addr, -1);
1112                 }
1113                 processed = 1;
1114         }
1115
1116         else if (!strcasecmp(key, "Subject")) {
1117                 if (CM_IsEmpty(msg, eMsgSubject))
1118                         CM_SetField(msg, eMsgSubject, value, valuelen);
1119                 processed = 1;
1120         }
1121
1122         else if (!strcasecmp(key, "List-ID")) {
1123                 if (CM_IsEmpty(msg, eListID))
1124                         CM_SetField(msg, eListID, value, valuelen);
1125                 processed = 1;
1126         }
1127
1128         else if (!strcasecmp(key, "To")) {
1129                 if (CM_IsEmpty(msg, eRecipient))
1130                         CM_SetField(msg, eRecipient, value, valuelen);
1131                 processed = 1;
1132         }
1133
1134         else if (!strcasecmp(key, "CC")) {
1135                 if (CM_IsEmpty(msg, eCarbonCopY))
1136                         CM_SetField(msg, eCarbonCopY, value, valuelen);
1137                 processed = 1;
1138         }
1139
1140         else if (!strcasecmp(key, "Message-ID")) {
1141                 if (!CM_IsEmpty(msg, emessageId)) {
1142                         syslog(LOG_WARNING, "internet_addressing: duplicate message id");
1143                 }
1144                 else {
1145                         char *pValue;
1146                         long pValueLen;
1147
1148                         pValue = value;
1149                         pValueLen = valuelen;
1150                         /* Strip angle brackets */
1151                         while (haschar(pValue, '<') > 0) {
1152                                 pValue ++;
1153                                 pValueLen --;
1154                         }
1155
1156                         for (i = 0; i <= pValueLen; ++i)
1157                                 if (pValue[i] == '>') {
1158                                         pValueLen = i;
1159                                         break;
1160                                 }
1161
1162                         CM_SetField(msg, emessageId, pValue, pValueLen);
1163                 }
1164
1165                 processed = 1;
1166         }
1167
1168         else if (!strcasecmp(key, "Return-Path")) {
1169                 if (CM_IsEmpty(msg, eMessagePath))
1170                         CM_SetField(msg, eMessagePath, value, valuelen);
1171                 processed = 1;
1172         }
1173
1174         else if (!strcasecmp(key, "Envelope-To")) {
1175                 if (CM_IsEmpty(msg, eenVelopeTo))
1176                         CM_SetField(msg, eenVelopeTo, value, valuelen);
1177                 processed = 1;
1178         }
1179
1180         else if (!strcasecmp(key, "References")) {
1181                 CM_SetField(msg, eWeferences, value, valuelen);
1182                 processed = 1;
1183         }
1184
1185         else if (!strcasecmp(key, "Reply-To")) {
1186                 CM_SetField(msg, eReplyTo, value, valuelen);
1187                 processed = 1;
1188         }
1189
1190         else if (!strcasecmp(key, "In-reply-to")) {
1191                 if (CM_IsEmpty(msg, eWeferences)) /* References: supersedes In-reply-to: */
1192                         CM_SetField(msg, eWeferences, value, valuelen);
1193                 processed = 1;
1194         }
1195
1196
1197
1198         /* Clean up and move on. */
1199         free(key);      /* Don't free 'value', it's actually the same buffer */
1200         return processed;
1201 }
1202
1203
1204 /*
1205  * Convert RFC822 references format (References) to Citadel references format (Weferences)
1206  */
1207 void convert_references_to_wefewences(char *str) {
1208         int bracket_nesting = 0;
1209         char *ptr = str;
1210         char *moveptr = NULL;
1211         char ch;
1212
1213         while(*ptr) {
1214                 ch = *ptr;
1215                 if (ch == '>') {
1216                         --bracket_nesting;
1217                         if (bracket_nesting < 0) bracket_nesting = 0;
1218                 }
1219                 if ((ch == '>') && (bracket_nesting == 0) && (*(ptr+1)) && (ptr>str) ) {
1220                         *ptr = '|';
1221                         ++ptr;
1222                 }
1223                 else if (bracket_nesting > 0) {
1224                         ++ptr;
1225                 }
1226                 else {
1227                         moveptr = ptr;
1228                         while (*moveptr) {
1229                                 *moveptr = *(moveptr+1);
1230                                 ++moveptr;
1231                         }
1232                 }
1233                 if (ch == '<') ++bracket_nesting;
1234         }
1235
1236 }
1237
1238
1239 /*
1240  * Convert an RFC822 message (headers + body) to a CtdlMessage structure.
1241  * NOTE: the supplied buffer becomes part of the CtdlMessage structure, and
1242  * will be deallocated when CM_Free() is called.  Therefore, the
1243  * supplied buffer should be DEREFERENCED.  It should not be freed or used
1244  * again.
1245  */
1246 struct CtdlMessage *convert_internet_message(char *rfc822) {
1247         StrBuf *RFCBuf = NewStrBufPlain(rfc822, -1);
1248         free (rfc822);
1249         return convert_internet_message_buf(&RFCBuf);
1250 }
1251
1252
1253 struct CtdlMessage *convert_internet_message_buf(StrBuf **rfc822)
1254 {
1255         struct CtdlMessage *msg;
1256         const char *pos, *beg, *end, *totalend;
1257         int done, alldone = 0;
1258         int converted;
1259         StrBuf *OtherHeaders;
1260
1261         msg = malloc(sizeof(struct CtdlMessage));
1262         if (msg == NULL) return msg;
1263
1264         memset(msg, 0, sizeof(struct CtdlMessage));
1265         msg->cm_magic = CTDLMESSAGE_MAGIC;      /* self check */
1266         msg->cm_anon_type = 0;                  /* never anonymous */
1267         msg->cm_format_type = FMT_RFC822;       /* internet message */
1268
1269         pos = ChrPtr(*rfc822);
1270         totalend = pos + StrLength(*rfc822);
1271         done = 0;
1272         OtherHeaders = NewStrBufPlain(NULL, StrLength(*rfc822));
1273
1274         while (!alldone) {
1275
1276                 /* Locate beginning and end of field, keeping in mind that
1277                  * some fields might be multiline
1278                  */
1279                 end = beg = pos;
1280
1281                 while ((end < totalend) && 
1282                        (end == beg) && 
1283                        (done == 0) ) 
1284                 {
1285
1286                         if ( (*pos=='\n') && ((*(pos+1))!=0x20) && ((*(pos+1))!=0x09) )
1287                         {
1288                                 end = pos;
1289                         }
1290
1291                         /* done with headers? */
1292                         if ((*pos=='\n') &&
1293                             ( (*(pos+1)=='\n') ||
1294                               (*(pos+1)=='\r')) ) 
1295                         {
1296                                 alldone = 1;
1297                         }
1298
1299                         if (pos >= (totalend - 1) )
1300                         {
1301                                 end = pos;
1302                                 done = 1;
1303                         }
1304
1305                         ++pos;
1306
1307                 }
1308
1309                 /* At this point we have a field.  Are we interested in it? */
1310                 converted = convert_field(msg, beg, end);
1311
1312                 /* Strip the field out of the RFC822 header if we used it */
1313                 if (!converted) {
1314                         StrBufAppendBufPlain(OtherHeaders, beg, end - beg, 0);
1315                         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
1316                 }
1317
1318                 /* If we've hit the end of the message, bail out */
1319                 if (pos >= totalend)
1320                         alldone = 1;
1321         }
1322         StrBufAppendBufPlain(OtherHeaders, HKEY("\n"), 0);
1323         if (pos < totalend)
1324                 StrBufAppendBufPlain(OtherHeaders, pos, totalend - pos, 0);
1325         FreeStrBuf(rfc822);
1326         CM_SetAsFieldSB(msg, eMesageText, &OtherHeaders);
1327
1328         /* Follow-up sanity checks... */
1329
1330         /* If there's no timestamp on this message, set it to now. */
1331         if (CM_IsEmpty(msg, eTimestamp)) {
1332                 CM_SetFieldLONG(msg, eTimestamp, time(NULL));
1333         }
1334
1335         /* If a W (references, or rather, Wefewences) field is present, we
1336          * have to convert it from RFC822 format to Citadel format.
1337          */
1338         if (!CM_IsEmpty(msg, eWeferences)) {
1339                 /// todo: API!
1340                 convert_references_to_wefewences(msg->cm_fields[eWeferences]);
1341         }
1342
1343         return msg;
1344 }
1345
1346
1347 /*
1348  * Look for a particular header field in an RFC822 message text.  If the
1349  * requested field is found, it is unfolded (if necessary) and returned to
1350  * the caller.  The field name is stripped out, leaving only its contents.
1351  * The caller is responsible for freeing the returned buffer.  If the requested
1352  * field is not present, or anything else goes wrong, it returns NULL.
1353  */
1354 char *rfc822_fetch_field(const char *rfc822, const char *fieldname) {
1355         char *fieldbuf = NULL;
1356         const char *end_of_headers;
1357         const char *field_start;
1358         const char *ptr;
1359         char *cont;
1360         char fieldhdr[SIZ];
1361
1362         /* Should never happen, but sometimes we get stupid */
1363         if (rfc822 == NULL) return(NULL);
1364         if (fieldname == NULL) return(NULL);
1365
1366         snprintf(fieldhdr, sizeof fieldhdr, "%s:", fieldname);
1367
1368         /* Locate the end of the headers, so we don't run past that point */
1369         end_of_headers = cbmstrcasestr(rfc822, "\n\r\n");
1370         if (end_of_headers == NULL) {
1371                 end_of_headers = cbmstrcasestr(rfc822, "\n\n");
1372         }
1373         if (end_of_headers == NULL) return (NULL);
1374
1375         field_start = cbmstrcasestr(rfc822, fieldhdr);
1376         if (field_start == NULL) return(NULL);
1377         if (field_start > end_of_headers) return(NULL);
1378
1379         fieldbuf = malloc(SIZ);
1380         strcpy(fieldbuf, "");
1381
1382         ptr = field_start;
1383         ptr = cmemreadline(ptr, fieldbuf, SIZ-strlen(fieldbuf) );
1384         while ( (isspace(ptr[0])) && (ptr < end_of_headers) ) {
1385                 strcat(fieldbuf, " ");
1386                 cont = &fieldbuf[strlen(fieldbuf)];
1387                 ptr = cmemreadline(ptr, cont, SIZ-strlen(fieldbuf) );
1388                 striplt(cont);
1389         }
1390
1391         strcpy(fieldbuf, &fieldbuf[strlen(fieldhdr)]);
1392         striplt(fieldbuf);
1393
1394         return(fieldbuf);
1395 }
1396
1397
1398 /*****************************************************************************
1399  *                      DIRECTORY MANAGEMENT FUNCTIONS                       *
1400  *****************************************************************************/
1401
1402 /*
1403  * Generate the index key for an Internet e-mail address to be looked up
1404  * in the database.
1405  */
1406 void directory_key(char *key, char *addr) {
1407         int i;
1408         int keylen = 0;
1409
1410         for (i=0; !IsEmptyStr(&addr[i]); ++i) {
1411                 if (!isspace(addr[i])) {
1412                         key[keylen++] = tolower(addr[i]);
1413                 }
1414         }
1415         key[keylen++] = 0;
1416
1417         syslog(LOG_DEBUG, "internet_addressing: directory key is <%s>", key);
1418 }
1419
1420
1421 /*
1422  * Return nonzero if the supplied address is in one of "our" domains
1423  */
1424 int IsDirectory(char *addr, int allow_masq_domains) {
1425         char domain[256];
1426         int h;
1427
1428         extract_token(domain, addr, 1, '@', sizeof domain);
1429         striplt(domain);
1430
1431         h = CtdlHostAlias(domain);
1432
1433         if ( (h == hostalias_masq) && allow_masq_domains)
1434                 return(1);
1435         
1436         if (h == hostalias_localhost) {
1437                 return(1);
1438         }
1439         else {
1440                 return(0);
1441         }
1442 }
1443
1444
1445 /*
1446  * Add an Internet e-mail address to the directory for a user
1447  */
1448 int CtdlDirectoryAddUser(char *internet_addr, char *citadel_addr) {
1449         char key[SIZ];
1450
1451         if (IsDirectory(internet_addr, 0) == 0) {
1452                 return 0;
1453         }
1454         syslog(LOG_DEBUG, "internet_addressing: create directory entry: %s --> %s", internet_addr, citadel_addr);
1455         directory_key(key, internet_addr);
1456         cdb_store(CDB_DIRECTORY, key, strlen(key), citadel_addr, strlen(citadel_addr)+1 );
1457         return 1;
1458 }
1459
1460
1461 /*
1462  * Delete an Internet e-mail address from the directory.
1463  *
1464  * (NOTE: we don't actually use or need the citadel_addr variable; it's merely
1465  * here because the callback API expects to be able to send it.)
1466  */
1467 int CtdlDirectoryDelUser(char *internet_addr, char *citadel_addr) {
1468         char key[SIZ];
1469         
1470         syslog(LOG_DEBUG, "internet_addressing: delete directory entry: %s --> %s", internet_addr, citadel_addr);
1471         directory_key(key, internet_addr);
1472         return cdb_delete(CDB_DIRECTORY, key, strlen(key) ) == 0;
1473 }
1474
1475
1476 /*
1477  * Look up an Internet e-mail address in the directory.
1478  * On success: returns 0, and Citadel address stored in 'target'
1479  * On failure: returns nonzero
1480  */
1481 int CtdlDirectoryLookup(char *target, char *internet_addr, size_t targbuflen) {
1482         struct cdbdata *cdbrec;
1483         char key[SIZ];
1484
1485         /* Dump it in there unchanged, just for kicks */
1486         if (target != NULL) {
1487                 safestrncpy(target, internet_addr, targbuflen);
1488         }
1489
1490         /* Only do lookups for addresses with hostnames in them */
1491         if (num_tokens(internet_addr, '@') != 2) return(-1);
1492
1493         /* Only do lookups for domains in the directory */
1494         if (IsDirectory(internet_addr, 0) == 0) return(-1);
1495
1496         directory_key(key, internet_addr);
1497         cdbrec = cdb_fetch(CDB_DIRECTORY, key, strlen(key) );
1498         if (cdbrec != NULL) {
1499                 if (target != NULL) {
1500                         safestrncpy(target, cdbrec->ptr, targbuflen);
1501                 }
1502                 cdb_free(cdbrec);
1503                 return(0);
1504         }
1505
1506         return(-1);
1507 }
1508
1509
1510 /*
1511  * Harvest any email addresses that someone might want to have in their
1512  * "collected addresses" book.
1513  */
1514 char *harvest_collected_addresses(struct CtdlMessage *msg) {
1515         char *coll = NULL;
1516         char addr[256];
1517         char user[256], node[256], name[256];
1518         int is_harvestable;
1519         int i, j, h;
1520         eMsgField field = 0;
1521
1522         if (msg == NULL) return(NULL);
1523
1524         is_harvestable = 1;
1525         strcpy(addr, "");       
1526         if (!CM_IsEmpty(msg, eAuthor)) {
1527                 strcat(addr, msg->cm_fields[eAuthor]);
1528         }
1529         if (!CM_IsEmpty(msg, erFc822Addr)) {
1530                 strcat(addr, " <");
1531                 strcat(addr, msg->cm_fields[erFc822Addr]);
1532                 strcat(addr, ">");
1533                 if (IsDirectory(msg->cm_fields[erFc822Addr], 0)) {
1534                         is_harvestable = 0;
1535                 }
1536         }
1537
1538         if (is_harvestable) {
1539                 coll = strdup(addr);
1540         }
1541         else {
1542                 coll = strdup("");
1543         }
1544
1545         if (coll == NULL) return(NULL);
1546
1547         /* Scan both the R (To) and Y (CC) fields */
1548         for (i = 0; i < 2; ++i) {
1549                 if (i == 0) field = eRecipient;
1550                 if (i == 1) field = eCarbonCopY;
1551
1552                 if (!CM_IsEmpty(msg, field)) {
1553                         for (j=0; j<num_tokens(msg->cm_fields[field], ','); ++j) {
1554                                 extract_token(addr, msg->cm_fields[field], j, ',', sizeof addr);
1555                                 if (strstr(addr, "=?") != NULL)
1556                                         utf8ify_rfc822_string(addr);
1557                                 process_rfc822_addr(addr, user, node, name);
1558                                 h = CtdlHostAlias(node);
1559                                 if (h != hostalias_localhost) {
1560                                         coll = realloc(coll, strlen(coll) + strlen(addr) + 4);
1561                                         if (coll == NULL) return(NULL);
1562                                         if (!IsEmptyStr(coll)) {
1563                                                 strcat(coll, ",");
1564                                         }
1565                                         striplt(addr);
1566                                         strcat(coll, addr);
1567                                 }
1568                         }
1569                 }
1570         }
1571
1572         if (IsEmptyStr(coll)) {
1573                 free(coll);
1574                 return(NULL);
1575         }
1576         return(coll);
1577 }
1578
1579
1580 /*
1581  * Helper function for CtdlRebuildDirectoryIndex()
1582  */
1583 void CtdlRebuildDirectoryIndex_backend(char *username, void *data) {
1584
1585         int j = 0;
1586         struct ctdluser usbuf;
1587
1588         if (CtdlGetUser(&usbuf, username) != 0) {
1589                 return;
1590         }
1591
1592         if ( (!IsEmptyStr(usbuf.fullname)) && (!IsEmptyStr(usbuf.emailaddrs)) ) {
1593                 for (j=0; j<num_tokens(usbuf.emailaddrs, '|'); ++j) {
1594                         char one_email[512];
1595                         extract_token(one_email, usbuf.emailaddrs, j, '|', sizeof one_email);
1596                         CtdlDirectoryAddUser(one_email, usbuf.fullname);
1597                 }
1598         }
1599 }
1600
1601
1602 /*
1603  * Initialize the directory database (erasing anything already there)
1604  */
1605 void CtdlRebuildDirectoryIndex(void) {
1606         syslog(LOG_INFO, "internet_addressing: rebuilding email address directory index");
1607         cdb_trunc(CDB_DIRECTORY);
1608         ForEachUser(CtdlRebuildDirectoryIndex_backend, NULL);
1609 }
1610
1611
1612 /*
1613  * Configure Internet email addresses for a user account, updating the Directory Index in the process
1614  */
1615 void CtdlSetEmailAddressesForUser(char *requested_user, char *new_emailaddrs)
1616 {
1617         struct ctdluser usbuf;
1618         int i;
1619         char buf[SIZ];
1620
1621         if (CtdlGetUserLock(&usbuf, requested_user) != 0) {     // We are relying on the fact that the DirectoryIndex functions don't lock.
1622                 return;                                         // Silently fail here if we can't acquire a lock on the user record.
1623         }
1624
1625         syslog(LOG_DEBUG, "internet_addressing: setting email addresses for <%s> to <%s>", usbuf.fullname, new_emailaddrs);
1626
1627         /* Delete all of the existing directory index records for the user (easier this way) */
1628         for (i=0; i<num_tokens(usbuf.emailaddrs, '|'); ++i) {
1629                 extract_token(buf, usbuf.emailaddrs, i, '|', sizeof buf);
1630                 CtdlDirectoryDelUser(buf, requested_user);
1631         }
1632
1633         strcpy(usbuf.emailaddrs, new_emailaddrs);               // make it official.
1634
1635         /* Index all of the new email addresses (they've already been sanitized) */
1636         for (i=0; i<num_tokens(usbuf.emailaddrs, '|'); ++i) {
1637                 extract_token(buf, usbuf.emailaddrs, i, '|', sizeof buf);
1638                 CtdlDirectoryAddUser(buf, requested_user);
1639         }
1640
1641         CtdlPutUserLock(&usbuf);
1642 }
1643
1644
1645 /*
1646  * Auto-generate an Internet email address for a user account
1647  */
1648 void AutoGenerateEmailAddressForUser(struct ctdluser *user)
1649 {
1650         char synthetic_email_addr[1024];
1651         int i, j;
1652         int u = 0;
1653
1654         for (i=0; u==0; ++i) {
1655                 if (i == 0) {
1656                         // first try just converting the user name to lowercase and replacing spaces with underscores
1657                         snprintf(synthetic_email_addr, sizeof synthetic_email_addr, "%s@%s", user->fullname, CtdlGetConfigStr("c_fqdn"));
1658                         for (j=0; ((synthetic_email_addr[j] != '\0')&&(synthetic_email_addr[j] != '@')); j++) {
1659                                 synthetic_email_addr[j] = tolower(synthetic_email_addr[j]);
1660                                 if (!isalnum(synthetic_email_addr[j])) {
1661                                         synthetic_email_addr[j] = '_';
1662                                 }
1663                         }
1664                 }
1665                 else if (i == 1) {
1666                         // then try 'ctdl' followed by the user number
1667                         snprintf(synthetic_email_addr, sizeof synthetic_email_addr, "ctdl%08lx@%s", user->usernum, CtdlGetConfigStr("c_fqdn"));
1668                 }
1669                 else if (i > 1) {
1670                         // oof.  just keep trying other numbers until we find one
1671                         snprintf(synthetic_email_addr, sizeof synthetic_email_addr, "ctdl%08x@%s", i, CtdlGetConfigStr("c_fqdn"));
1672                 }
1673                 u = CtdlDirectoryLookup(NULL, synthetic_email_addr, 0);
1674                 syslog(LOG_DEBUG, "user_ops: address <%s> lookup returned <%d>", synthetic_email_addr, u);
1675         }
1676
1677         CtdlSetEmailAddressesForUser(user->fullname, synthetic_email_addr);
1678         strncpy(CC->user.emailaddrs, synthetic_email_addr, sizeof(user->emailaddrs));
1679         syslog(LOG_DEBUG, "user_ops: auto-generated email address <%s> for <%s>", synthetic_email_addr, user->fullname);
1680 }