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