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