ce52cc11365267a1cdd84efe402972e6f288bb65
[citadel.git] / citadel / msgbase.c
1 /*
2  * Implements the message store.
3  *
4  * Copyright (c) 1987-2012 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <fcntl.h>
20
21 #if TIME_WITH_SYS_TIME
22 # include <sys/time.h>
23 # include <time.h>
24 #else
25 # if HAVE_SYS_TIME_H
26 #  include <sys/time.h>
27 # else
28 #  include <time.h>
29 # endif
30 #endif
31
32
33 #include <ctype.h>
34 #include <string.h>
35 #include <limits.h>
36 #include <errno.h>
37 #include <stdarg.h>
38 #include <sys/stat.h>
39 #include <sys/types.h>
40 #include <regex.h>
41 #include <libcitadel.h>
42 #include "citadel.h"
43 #include "server.h"
44 #include "serv_extensions.h"
45 #include "database.h"
46 #include "msgbase.h"
47 #include "support.h"
48 #include "sysdep_decls.h"
49 #include "citserver.h"
50 #include "room_ops.h"
51 #include "user_ops.h"
52 #include "file_ops.h"
53 #include "config.h"
54 #include "control.h"
55 #include "genstamp.h"
56 #include "internet_addressing.h"
57 #include "euidindex.h"
58 #include "journaling.h"
59 #include "citadel_dirs.h"
60 #include "clientsocket.h"
61 #include "threads.h"
62
63 #include "ctdl_module.h"
64
65 long config_msgnum;
66 struct addresses_to_be_filed *atbf = NULL;
67
68 /* This temp file holds the queue of operations for AdjRefCount() */
69 static FILE *arcfp = NULL;
70 void AdjRefCountList(long *msgnum, long nmsg, int incr);
71
72 int MessageDebugEnabled = 0;
73
74 /*
75  * These are the four-character field headers we use when outputting
76  * messages in Citadel format (as opposed to RFC822 format).
77  */
78 char *msgkeys[] = {
79         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
80         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
81         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
82         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
83         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
84         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
85         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
86         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
87         NULL, 
88         "from",
89         NULL, NULL, NULL,
90         "exti",
91         "rfca",
92         NULL, 
93         "hnod",
94         "msgn",
95         "jrnl",
96         "rep2",
97         "list",
98         "text",
99         "node",
100         "room",
101         "path",
102         NULL,
103         "rcpt",
104         "spec",
105         "time",
106         "subj",
107         NULL,
108         "wefw",
109         NULL,
110         "cccc",
111         NULL
112 };
113
114 /*
115  * This function is self explanatory.
116  * (What can I say, I'm in a weird mood today...)
117  */
118 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
119 {
120         int i;
121
122         for (i = 0; i < strlen(name); ++i) {
123                 if (name[i] == '@') {
124                         while (isspace(name[i - 1]) && i > 0) {
125                                 strcpy(&name[i - 1], &name[i]);
126                                 --i;
127                         }
128                         while (isspace(name[i + 1])) {
129                                 strcpy(&name[i + 1], &name[i + 2]);
130                         }
131                 }
132         }
133 }
134
135
136 /*
137  * Aliasing for network mail.
138  * (Error messages have been commented out, because this is a server.)
139  */
140 int alias(char *name)
141 {                               /* process alias and routing info for mail */
142         struct CitContext *CCC = CC;
143         FILE *fp;
144         int a, i;
145         char aaa[SIZ], bbb[SIZ];
146         char *ignetcfg = NULL;
147         char *ignetmap = NULL;
148         int at = 0;
149         char node[64];
150         char testnode[64];
151         char buf[SIZ];
152
153         char original_name[256];
154         safestrncpy(original_name, name, sizeof original_name);
155
156         striplt(name);
157         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
158         stripallbut(name, '<', '>');
159
160         fp = fopen(file_mail_aliases, "r");
161         if (fp == NULL) {
162                 fp = fopen("/dev/null", "r");
163         }
164         if (fp == NULL) {
165                 return (MES_ERROR);
166         }
167         strcpy(aaa, "");
168         strcpy(bbb, "");
169         while (fgets(aaa, sizeof aaa, fp) != NULL) {
170                 while (isspace(name[0]))
171                         strcpy(name, &name[1]);
172                 aaa[strlen(aaa) - 1] = 0;
173                 strcpy(bbb, "");
174                 for (a = 0; a < strlen(aaa); ++a) {
175                         if (aaa[a] == ',') {
176                                 strcpy(bbb, &aaa[a + 1]);
177                                 aaa[a] = 0;
178                         }
179                 }
180                 if (!strcasecmp(name, aaa))
181                         strcpy(name, bbb);
182         }
183         fclose(fp);
184
185         /* Hit the Global Address Book */
186         if (CtdlDirectoryLookup(aaa, name, sizeof aaa) == 0) {
187                 strcpy(name, aaa);
188         }
189
190         if (strcasecmp(original_name, name)) {
191                 MSG_syslog(LOG_INFO, "%s is being forwarded to %s\n", original_name, name);
192         }
193
194         /* Change "user @ xxx" to "user" if xxx is an alias for this host */
195         for (a=0; a<strlen(name); ++a) {
196                 if (name[a] == '@') {
197                         if (CtdlHostAlias(&name[a+1]) == hostalias_localhost) {
198                                 name[a] = 0;
199                                 MSG_syslog(LOG_INFO, "Changed to <%s>\n", name);
200                         }
201                 }
202         }
203
204         /* determine local or remote type, see citadel.h */
205         at = haschar(name, '@');
206         if (at == 0) return(MES_LOCAL);         /* no @'s - local address */
207         if (at > 1) return(MES_ERROR);          /* >1 @'s - invalid address */
208         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
209
210         /* figure out the delivery mode */
211         extract_token(node, name, 1, '@', sizeof node);
212
213         /* If there are one or more dots in the nodename, we assume that it
214          * is an FQDN and will attempt SMTP delivery to the Internet.
215          */
216         if (haschar(node, '.') > 0) {
217                 return(MES_INTERNET);
218         }
219
220         /* Otherwise we look in the IGnet maps for a valid Citadel node.
221          * Try directly-connected nodes first...
222          */
223         ignetcfg = CtdlGetSysConfig(IGNETCFG);
224         for (i=0; i<num_tokens(ignetcfg, '\n'); ++i) {
225                 extract_token(buf, ignetcfg, i, '\n', sizeof buf);
226                 extract_token(testnode, buf, 0, '|', sizeof testnode);
227                 if (!strcasecmp(node, testnode)) {
228                         free(ignetcfg);
229                         return(MES_IGNET);
230                 }
231         }
232         free(ignetcfg);
233
234         /*
235          * Then try nodes that are two or more hops away.
236          */
237         ignetmap = CtdlGetSysConfig(IGNETMAP);
238         for (i=0; i<num_tokens(ignetmap, '\n'); ++i) {
239                 extract_token(buf, ignetmap, i, '\n', sizeof buf);
240                 extract_token(testnode, buf, 0, '|', sizeof testnode);
241                 if (!strcasecmp(node, testnode)) {
242                         free(ignetmap);
243                         return(MES_IGNET);
244                 }
245         }
246         free(ignetmap);
247
248         /* If we get to this point it's an invalid node name */
249         return (MES_ERROR);
250 }
251
252
253 /*
254  * Back end for the MSGS command: output message number only.
255  */
256 void simple_listing(long msgnum, void *userdata)
257 {
258         cprintf("%ld\n", msgnum);
259 }
260
261
262
263 /*
264  * Back end for the MSGS command: output header summary.
265  */
266 void headers_listing(long msgnum, void *userdata)
267 {
268         struct CtdlMessage *msg;
269
270         msg = CtdlFetchMessage(msgnum, 0);
271         if (msg == NULL) {
272                 cprintf("%ld|0|||||\n", msgnum);
273                 return;
274         }
275
276         cprintf("%ld|%s|%s|%s|%s|%s|\n",
277                 msgnum,
278                 (msg->cm_fields['T'] ? msg->cm_fields['T'] : "0"),
279                 (msg->cm_fields['A'] ? msg->cm_fields['A'] : ""),
280                 (msg->cm_fields['N'] ? msg->cm_fields['N'] : ""),
281                 (msg->cm_fields['F'] ? msg->cm_fields['F'] : ""),
282                 (msg->cm_fields['U'] ? msg->cm_fields['U'] : "")
283         );
284         CtdlFreeMessage(msg);
285 }
286
287 /*
288  * Back end for the MSGS command: output EUID header.
289  */
290 void headers_euid(long msgnum, void *userdata)
291 {
292         struct CtdlMessage *msg;
293
294         msg = CtdlFetchMessage(msgnum, 0);
295         if (msg == NULL) {
296                 cprintf("%ld||\n", msgnum);
297                 return;
298         }
299
300         cprintf("%ld|%s|%s\n", 
301                 msgnum, 
302                 (msg->cm_fields['E'] ? msg->cm_fields['E'] : ""),
303                 (msg->cm_fields['T'] ? msg->cm_fields['T'] : "0"));
304         CtdlFreeMessage(msg);
305 }
306
307
308
309
310
311 /* Determine if a given message matches the fields in a message template.
312  * Return 0 for a successful match.
313  */
314 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
315         int i;
316
317         /* If there aren't any fields in the template, all messages will
318          * match.
319          */
320         if (template == NULL) return(0);
321
322         /* Null messages are bogus. */
323         if (msg == NULL) return(1);
324
325         for (i='A'; i<='Z'; ++i) {
326                 if (template->cm_fields[i] != NULL) {
327                         if (msg->cm_fields[i] == NULL) {
328                                 /* Considered equal if temmplate is empty string */
329                                 if (IsEmptyStr(template->cm_fields[i])) continue;
330                                 return 1;
331                         }
332                         if (strcasecmp(msg->cm_fields[i],
333                                 template->cm_fields[i])) return 1;
334                 }
335         }
336
337         /* All compares succeeded: we have a match! */
338         return 0;
339 }
340
341
342
343 /*
344  * Retrieve the "seen" message list for the current room.
345  */
346 void CtdlGetSeen(char *buf, int which_set) {
347         struct CitContext *CCC = CC;
348         visit vbuf;
349
350         /* Learn about the user and room in question */
351         CtdlGetRelationship(&vbuf, &CCC->user, &CCC->room);
352
353         if (which_set == ctdlsetseen_seen)
354                 safestrncpy(buf, vbuf.v_seen, SIZ);
355         if (which_set == ctdlsetseen_answered)
356                 safestrncpy(buf, vbuf.v_answered, SIZ);
357 }
358
359
360
361 /*
362  * Manipulate the "seen msgs" string (or other message set strings)
363  */
364 void CtdlSetSeen(long *target_msgnums, int num_target_msgnums,
365                 int target_setting, int which_set,
366                 struct ctdluser *which_user, struct ctdlroom *which_room) {
367         struct CitContext *CCC = CC;
368         struct cdbdata *cdbfr;
369         int i, k;
370         int is_seen = 0;
371         int was_seen = 0;
372         long lo = (-1L);
373         long hi = (-1L); /// TODO: we just write here. y?
374         visit vbuf;
375         long *msglist;
376         int num_msgs = 0;
377         StrBuf *vset;
378         StrBuf *setstr;
379         StrBuf *lostr;
380         StrBuf *histr;
381         const char *pvset;
382         char *is_set;   /* actually an array of booleans */
383
384         /* Don't bother doing *anything* if we were passed a list of zero messages */
385         if (num_target_msgnums < 1) {
386                 return;
387         }
388
389         /* If no room was specified, we go with the current room. */
390         if (!which_room) {
391                 which_room = &CCC->room;
392         }
393
394         /* If no user was specified, we go with the current user. */
395         if (!which_user) {
396                 which_user = &CCC->user;
397         }
398
399         MSG_syslog(LOG_DEBUG, "CtdlSetSeen(%d msgs starting with %ld, %s, %d) in <%s>\n",
400                    num_target_msgnums, target_msgnums[0],
401                    (target_setting ? "SET" : "CLEAR"),
402                    which_set,
403                    which_room->QRname);
404
405         /* Learn about the user and room in question */
406         CtdlGetRelationship(&vbuf, which_user, which_room);
407
408         /* Load the message list */
409         cdbfr = cdb_fetch(CDB_MSGLISTS, &which_room->QRnumber, sizeof(long));
410         if (cdbfr != NULL) {
411                 msglist = (long *) cdbfr->ptr;
412                 cdbfr->ptr = NULL;      /* CtdlSetSeen() now owns this memory */
413                 num_msgs = cdbfr->len / sizeof(long);
414                 cdb_free(cdbfr);
415         } else {
416                 return; /* No messages at all?  No further action. */
417         }
418
419         is_set = malloc(num_msgs * sizeof(char));
420         memset(is_set, 0, (num_msgs * sizeof(char)) );
421
422         /* Decide which message set we're manipulating */
423         switch(which_set) {
424         case ctdlsetseen_seen:
425                 vset = NewStrBufPlain(vbuf.v_seen, -1);
426                 break;
427         case ctdlsetseen_answered:
428                 vset = NewStrBufPlain(vbuf.v_answered, -1);
429                 break;
430         default:
431                 vset = NewStrBuf();
432         }
433
434
435 #if 0   /* This is a special diagnostic section.  Do not allow it to run during normal operation. */
436         MSG_syslog(LOG_DEBUG, "There are %d messages in the room.\n", num_msgs);
437         for (i=0; i<num_msgs; ++i) {
438                 if ((i > 0) && (msglist[i] <= msglist[i-1])) abort();
439         }
440         MSG_syslog(LOG_DEBUG, "We are twiddling %d of them.\n", num_target_msgnums);
441         for (k=0; k<num_target_msgnums; ++k) {
442                 if ((k > 0) && (target_msgnums[k] <= target_msgnums[k-1])) abort();
443         }
444 #endif
445
446         MSG_syslog(LOG_DEBUG, "before update: %s\n", ChrPtr(vset));
447
448         /* Translate the existing sequence set into an array of booleans */
449         setstr = NewStrBuf();
450         lostr = NewStrBuf();
451         histr = NewStrBuf();
452         pvset = NULL;
453         while (StrBufExtract_NextToken(setstr, vset, &pvset, ',') >= 0) {
454
455                 StrBufExtract_token(lostr, setstr, 0, ':');
456                 if (StrBufNum_tokens(setstr, ':') >= 2) {
457                         StrBufExtract_token(histr, setstr, 1, ':');
458                 }
459                 else {
460                         FlushStrBuf(histr);
461                         StrBufAppendBuf(histr, lostr, 0);
462                 }
463                 lo = StrTol(lostr);
464                 if (!strcmp(ChrPtr(histr), "*")) {
465                         hi = LONG_MAX;
466                 }
467                 else {
468                         hi = StrTol(histr);
469                 }
470
471                 for (i = 0; i < num_msgs; ++i) {
472                         if ((msglist[i] >= lo) && (msglist[i] <= hi)) {
473                                 is_set[i] = 1;
474                         }
475                 }
476         }
477         FreeStrBuf(&setstr);
478         FreeStrBuf(&lostr);
479         FreeStrBuf(&histr);
480
481
482         /* Now translate the array of booleans back into a sequence set */
483         FlushStrBuf(vset);
484         was_seen = 0;
485         lo = (-1);
486         hi = (-1);
487
488         for (i=0; i<num_msgs; ++i) {
489                 is_seen = is_set[i];
490
491                 /* Apply changes */
492                 for (k=0; k<num_target_msgnums; ++k) {
493                         if (msglist[i] == target_msgnums[k]) {
494                                 is_seen = target_setting;
495                         }
496                 }
497
498                 if ((was_seen == 0) && (is_seen == 1)) {
499                         lo = msglist[i];
500                 }
501                 else if ((was_seen == 1) && (is_seen == 0)) {
502                         hi = msglist[i-1];
503
504                         if (StrLength(vset) > 0) {
505                                 StrBufAppendBufPlain(vset, HKEY(","), 0);
506                         }
507                         if (lo == hi) {
508                                 StrBufAppendPrintf(vset, "%ld", hi);
509                         }
510                         else {
511                                 StrBufAppendPrintf(vset, "%ld:%ld", lo, hi);
512                         }
513                 }
514
515                 if ((is_seen) && (i == num_msgs - 1)) {
516                         if (StrLength(vset) > 0) {
517                                 StrBufAppendBufPlain(vset, HKEY(","), 0);
518                         }
519                         if ((i==0) || (was_seen == 0)) {
520                                 StrBufAppendPrintf(vset, "%ld", msglist[i]);
521                         }
522                         else {
523                                 StrBufAppendPrintf(vset, "%ld:%ld", lo, msglist[i]);
524                         }
525                 }
526
527                 was_seen = is_seen;
528         }
529
530         /*
531          * We will have to stuff this string back into a 4096 byte buffer, so if it's
532          * larger than that now, truncate it by removing tokens from the beginning.
533          * The limit of 100 iterations is there to prevent an infinite loop in case
534          * something unexpected happens.
535          */
536         int number_of_truncations = 0;
537         while ( (StrLength(vset) > SIZ) && (number_of_truncations < 100) ) {
538                 StrBufRemove_token(vset, 0, ',');
539                 ++number_of_truncations;
540         }
541
542         /*
543          * If we're truncating the sequence set of messages marked with the 'seen' flag,
544          * we want the earliest messages (the truncated ones) to be marked, not unmarked.
545          * Otherwise messages at the beginning will suddenly appear to be 'unseen'.
546          */
547         if ( (which_set == ctdlsetseen_seen) && (number_of_truncations > 0) ) {
548                 StrBuf *first_tok;
549                 first_tok = NewStrBuf();
550                 StrBufExtract_token(first_tok, vset, 0, ',');
551                 StrBufRemove_token(vset, 0, ',');
552
553                 if (StrBufNum_tokens(first_tok, ':') > 1) {
554                         StrBufRemove_token(first_tok, 0, ':');
555                 }
556                 
557                 StrBuf *new_set;
558                 new_set = NewStrBuf();
559                 StrBufAppendBufPlain(new_set, HKEY("1:"), 0);
560                 StrBufAppendBuf(new_set, first_tok, 0);
561                 StrBufAppendBufPlain(new_set, HKEY(":"), 0);
562                 StrBufAppendBuf(new_set, vset, 0);
563
564                 FreeStrBuf(&vset);
565                 FreeStrBuf(&first_tok);
566                 vset = new_set;
567         }
568
569         MSG_syslog(LOG_DEBUG, " after update: %s\n", ChrPtr(vset));
570
571         /* Decide which message set we're manipulating */
572         switch (which_set) {
573                 case ctdlsetseen_seen:
574                         safestrncpy(vbuf.v_seen, ChrPtr(vset), sizeof vbuf.v_seen);
575                         break;
576                 case ctdlsetseen_answered:
577                         safestrncpy(vbuf.v_answered, ChrPtr(vset), sizeof vbuf.v_answered);
578                         break;
579         }
580
581         free(is_set);
582         free(msglist);
583         CtdlSetRelationship(&vbuf, which_user, which_room);
584         FreeStrBuf(&vset);
585 }
586
587
588 /*
589  * API function to perform an operation for each qualifying message in the
590  * current room.  (Returns the number of messages processed.)
591  */
592 int CtdlForEachMessage(int mode, long ref, char *search_string,
593                         char *content_type,
594                         struct CtdlMessage *compare,
595                         ForEachMsgCallback CallBack,
596                         void *userdata)
597 {
598         struct CitContext *CCC = CC;
599         int a, i, j;
600         visit vbuf;
601         struct cdbdata *cdbfr;
602         long *msglist = NULL;
603         int num_msgs = 0;
604         int num_processed = 0;
605         long thismsg;
606         struct MetaData smi;
607         struct CtdlMessage *msg = NULL;
608         int is_seen = 0;
609         long lastold = 0L;
610         int printed_lastold = 0;
611         int num_search_msgs = 0;
612         long *search_msgs = NULL;
613         regex_t re;
614         int need_to_free_re = 0;
615         regmatch_t pm;
616
617         if ((content_type) && (!IsEmptyStr(content_type))) {
618                 regcomp(&re, content_type, 0);
619                 need_to_free_re = 1;
620         }
621
622         /* Learn about the user and room in question */
623         if (server_shutting_down) {
624                 if (need_to_free_re) regfree(&re);
625                 return -1;
626         }
627         CtdlGetUser(&CCC->user, CCC->curr_user);
628
629         if (server_shutting_down) {
630                 if (need_to_free_re) regfree(&re);
631                 return -1;
632         }
633         CtdlGetRelationship(&vbuf, &CCC->user, &CCC->room);
634
635         if (server_shutting_down) {
636                 if (need_to_free_re) regfree(&re);
637                 return -1;
638         }
639
640         /* Load the message list */
641         cdbfr = cdb_fetch(CDB_MSGLISTS, &CCC->room.QRnumber, sizeof(long));
642         if (cdbfr == NULL) {
643                 if (need_to_free_re) regfree(&re);
644                 return 0;       /* No messages at all?  No further action. */
645         }
646
647         msglist = (long *) cdbfr->ptr;
648         num_msgs = cdbfr->len / sizeof(long);
649
650         cdbfr->ptr = NULL;      /* clear this so that cdb_free() doesn't free it */
651         cdb_free(cdbfr);        /* we own this memory now */
652
653         /*
654          * Now begin the traversal.
655          */
656         if (num_msgs > 0) for (a = 0; a < num_msgs; ++a) {
657
658                 /* If the caller is looking for a specific MIME type, filter
659                  * out all messages which are not of the type requested.
660                  */
661                 if ((content_type != NULL) && (!IsEmptyStr(content_type))) {
662
663                         /* This call to GetMetaData() sits inside this loop
664                          * so that we only do the extra database read per msg
665                          * if we need to.  Doing the extra read all the time
666                          * really kills the server.  If we ever need to use
667                          * metadata for another search criterion, we need to
668                          * move the read somewhere else -- but still be smart
669                          * enough to only do the read if the caller has
670                          * specified something that will need it.
671                          */
672                         if (server_shutting_down) {
673                                 if (need_to_free_re) regfree(&re);
674                                 free(msglist);
675                                 return -1;
676                         }
677                         GetMetaData(&smi, msglist[a]);
678
679                         /* if (strcasecmp(smi.meta_content_type, content_type)) { old non-regex way */
680                         if (regexec(&re, smi.meta_content_type, 1, &pm, 0) != 0) {
681                                 msglist[a] = 0L;
682                         }
683                 }
684         }
685
686         num_msgs = sort_msglist(msglist, num_msgs);
687
688         /* If a template was supplied, filter out the messages which
689          * don't match.  (This could induce some delays!)
690          */
691         if (num_msgs > 0) {
692                 if (compare != NULL) {
693                         for (a = 0; a < num_msgs; ++a) {
694                                 if (server_shutting_down) {
695                                         if (need_to_free_re) regfree(&re);
696                                         free(msglist);
697                                         return -1;
698                                 }
699                                 msg = CtdlFetchMessage(msglist[a], 1);
700                                 if (msg != NULL) {
701                                         if (CtdlMsgCmp(msg, compare)) {
702                                                 msglist[a] = 0L;
703                                         }
704                                         CtdlFreeMessage(msg);
705                                 }
706                         }
707                 }
708         }
709
710         /* If a search string was specified, get a message list from
711          * the full text index and remove messages which aren't on both
712          * lists.
713          *
714          * How this works:
715          * Since the lists are sorted and strictly ascending, and the
716          * output list is guaranteed to be shorter than or equal to the
717          * input list, we overwrite the bottom of the input list.  This
718          * eliminates the need to memmove big chunks of the list over and
719          * over again.
720          */
721         if ( (num_msgs > 0) && (mode == MSGS_SEARCH) && (search_string) ) {
722
723                 /* Call search module via hook mechanism.
724                  * NULL means use any search function available.
725                  * otherwise replace with a char * to name of search routine
726                  */
727                 CtdlModuleDoSearch(&num_search_msgs, &search_msgs, search_string, "fulltext");
728
729                 if (num_search_msgs > 0) {
730         
731                         int orig_num_msgs;
732
733                         orig_num_msgs = num_msgs;
734                         num_msgs = 0;
735                         for (i=0; i<orig_num_msgs; ++i) {
736                                 for (j=0; j<num_search_msgs; ++j) {
737                                         if (msglist[i] == search_msgs[j]) {
738                                                 msglist[num_msgs++] = msglist[i];
739                                         }
740                                 }
741                         }
742                 }
743                 else {
744                         num_msgs = 0;   /* No messages qualify */
745                 }
746                 if (search_msgs != NULL) free(search_msgs);
747
748                 /* Now that we've purged messages which don't contain the search
749                  * string, treat a MSGS_SEARCH just like a MSGS_ALL from this
750                  * point on.
751                  */
752                 mode = MSGS_ALL;
753         }
754
755         /*
756          * Now iterate through the message list, according to the
757          * criteria supplied by the caller.
758          */
759         if (num_msgs > 0)
760                 for (a = 0; a < num_msgs; ++a) {
761                         if (server_shutting_down) {
762                                 if (need_to_free_re) regfree(&re);
763                                 free(msglist);
764                                 return num_processed;
765                         }
766                         thismsg = msglist[a];
767                         if (mode == MSGS_ALL) {
768                                 is_seen = 0;
769                         }
770                         else {
771                                 is_seen = is_msg_in_sequence_set(
772                                                         vbuf.v_seen, thismsg);
773                                 if (is_seen) lastold = thismsg;
774                         }
775                         if ((thismsg > 0L)
776                             && (
777
778                                        (mode == MSGS_ALL)
779                                        || ((mode == MSGS_OLD) && (is_seen))
780                                        || ((mode == MSGS_NEW) && (!is_seen))
781                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
782                                    || ((mode == MSGS_FIRST) && (a < ref))
783                                 || ((mode == MSGS_GT) && (thismsg > ref))
784                                 || ((mode == MSGS_LT) && (thismsg < ref))
785                                 || ((mode == MSGS_EQ) && (thismsg == ref))
786                             )
787                             ) {
788                                 if ((mode == MSGS_NEW) && (CCC->user.flags & US_LASTOLD) && (lastold > 0L) && (printed_lastold == 0) && (!is_seen)) {
789                                         if (CallBack)
790                                                 CallBack(lastold, userdata);
791                                         printed_lastold = 1;
792                                         ++num_processed;
793                                 }
794                                 if (CallBack) CallBack(thismsg, userdata);
795                                 ++num_processed;
796                         }
797                 }
798         if (need_to_free_re) regfree(&re);
799
800         /*
801          * We cache the most recent msglist in order to do security checks later
802          */
803         if (CCC->client_socket > 0) {
804                 if (CCC->cached_msglist != NULL) {
805                         free(CCC->cached_msglist);
806                 }
807                 CCC->cached_msglist = msglist;
808                 CCC->cached_num_msgs = num_msgs;
809         }
810         else {
811                 free(msglist);
812         }
813
814         return num_processed;
815 }
816
817
818
819 /*
820  * cmd_msgs()  -  get list of message #'s in this room
821  *              implements the MSGS server command using CtdlForEachMessage()
822  */
823 void cmd_msgs(char *cmdbuf)
824 {
825         int mode = 0;
826         char which[16];
827         char buf[256];
828         char tfield[256];
829         char tvalue[256];
830         int cm_ref = 0;
831         int i;
832         int with_template = 0;
833         struct CtdlMessage *template = NULL;
834         char search_string[1024];
835         ForEachMsgCallback CallBack;
836
837         if (CtdlAccessCheck(ac_logged_in_or_guest)) return;
838
839         extract_token(which, cmdbuf, 0, '|', sizeof which);
840         cm_ref = extract_int(cmdbuf, 1);
841         extract_token(search_string, cmdbuf, 1, '|', sizeof search_string);
842         with_template = extract_int(cmdbuf, 2);
843         switch (extract_int(cmdbuf, 3))
844         {
845         default:
846         case MSG_HDRS_BRIEF:
847                 CallBack = simple_listing;
848                 break;
849         case MSG_HDRS_ALL:
850                 CallBack = headers_listing;
851                 break;
852         case MSG_HDRS_EUID:
853                 CallBack = headers_euid;
854                 break;
855         }
856
857         strcat(which, "   ");
858         if (!strncasecmp(which, "OLD", 3))
859                 mode = MSGS_OLD;
860         else if (!strncasecmp(which, "NEW", 3))
861                 mode = MSGS_NEW;
862         else if (!strncasecmp(which, "FIRST", 5))
863                 mode = MSGS_FIRST;
864         else if (!strncasecmp(which, "LAST", 4))
865                 mode = MSGS_LAST;
866         else if (!strncasecmp(which, "GT", 2))
867                 mode = MSGS_GT;
868         else if (!strncasecmp(which, "LT", 2))
869                 mode = MSGS_LT;
870         else if (!strncasecmp(which, "SEARCH", 6))
871                 mode = MSGS_SEARCH;
872         else
873                 mode = MSGS_ALL;
874
875         if ( (mode == MSGS_SEARCH) && (!config.c_enable_fulltext) ) {
876                 cprintf("%d Full text index is not enabled on this server.\n",
877                         ERROR + CMD_NOT_SUPPORTED);
878                 return;
879         }
880
881         if (with_template) {
882                 unbuffer_output();
883                 cprintf("%d Send template then receive message list\n",
884                         START_CHAT_MODE);
885                 template = (struct CtdlMessage *)
886                         malloc(sizeof(struct CtdlMessage));
887                 memset(template, 0, sizeof(struct CtdlMessage));
888                 template->cm_magic = CTDLMESSAGE_MAGIC;
889                 template->cm_anon_type = MES_NORMAL;
890
891                 while(client_getln(buf, sizeof buf) >= 0 && strcmp(buf,"000")) {
892                         extract_token(tfield, buf, 0, '|', sizeof tfield);
893                         extract_token(tvalue, buf, 1, '|', sizeof tvalue);
894                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
895                                 if (!strcasecmp(tfield, msgkeys[i])) {
896                                         template->cm_fields[i] =
897                                                 strdup(tvalue);
898                                 }
899                         }
900                 }
901                 buffer_output();
902         }
903         else {
904                 cprintf("%d  \n", LISTING_FOLLOWS);
905         }
906
907         CtdlForEachMessage(mode,
908                            ( (mode == MSGS_SEARCH) ? 0 : cm_ref ),
909                            ( (mode == MSGS_SEARCH) ? search_string : NULL ),
910                            NULL,
911                            template,
912                            CallBack,
913                            NULL);
914         if (template != NULL) CtdlFreeMessage(template);
915         cprintf("000\n");
916 }
917
918
919
920
921 /* 
922  * help_subst()  -  support routine for help file viewer
923  */
924 void help_subst(char *strbuf, char *source, char *dest)
925 {
926         char workbuf[SIZ];
927         int p;
928
929         while (p = pattern2(strbuf, source), (p >= 0)) {
930                 strcpy(workbuf, &strbuf[p + strlen(source)]);
931                 strcpy(&strbuf[p], dest);
932                 strcat(strbuf, workbuf);
933         }
934 }
935
936
937 void do_help_subst(char *buffer)
938 {
939         char buf2[16];
940
941         help_subst(buffer, "^nodename", config.c_nodename);
942         help_subst(buffer, "^humannode", config.c_humannode);
943         help_subst(buffer, "^fqdn", config.c_fqdn);
944         help_subst(buffer, "^username", CC->user.fullname);
945         snprintf(buf2, sizeof buf2, "%ld", CC->user.usernum);
946         help_subst(buffer, "^usernum", buf2);
947         help_subst(buffer, "^sysadm", config.c_sysadm);
948         help_subst(buffer, "^variantname", CITADEL);
949         snprintf(buf2, sizeof buf2, "%d", config.c_maxsessions);
950         help_subst(buffer, "^maxsessions", buf2);
951         help_subst(buffer, "^bbsdir", ctdl_message_dir);
952 }
953
954
955
956 /*
957  * memfmout()  -  Citadel text formatter and paginator.
958  *           Although the original purpose of this routine was to format
959  *           text to the reader's screen width, all we're really using it
960  *           for here is to format text out to 80 columns before sending it
961  *           to the client.  The client software may reformat it again.
962  */
963 void memfmout(
964         char *mptr,             /* where are we going to get our text from? */
965         const char *nl          /* string to terminate lines with */
966 ) {
967         struct CitContext *CCC = CC;
968         int column = 0;
969         unsigned char ch = 0;
970         char outbuf[1024];
971         int len = 0;
972         int nllen = 0;
973
974         if (!mptr) return;
975         nllen = strlen(nl);
976         while (ch=*(mptr++), ch != 0) {
977
978                 if (ch == '\n') {
979                         if (client_write(outbuf, len) == -1)
980                         {
981                                 MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
982                                 return;
983                         }
984                         len = 0;
985                         if (client_write(nl, nllen) == -1)
986                         {
987                                 MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
988                                 return;
989                         }
990                         column = 0;
991                 }
992                 else if (ch == '\r') {
993                         /* Ignore carriage returns.  Newlines are always LF or CRLF but never CR. */
994                 }
995                 else if (isspace(ch)) {
996                         if (column > 72) {              /* Beyond 72 columns, break on the next space */
997                                 if (client_write(outbuf, len) == -1)
998                                 {
999                                         MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
1000                                         return;
1001                                 }
1002                                 len = 0;
1003                                 if (client_write(nl, nllen) == -1)
1004                                 {
1005                                         MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
1006                                         return;
1007                                 }
1008                                 column = 0;
1009                         }
1010                         else {
1011                                 outbuf[len++] = ch;
1012                                 ++column;
1013                         }
1014                 }
1015                 else {
1016                         outbuf[len++] = ch;
1017                         ++column;
1018                         if (column > 1000) {            /* Beyond 1000 columns, break anywhere */
1019                                 if (client_write(outbuf, len) == -1)
1020                                 {
1021                                         MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
1022                                         return;
1023                                 }
1024                                 len = 0;
1025                                 if (client_write(nl, nllen) == -1)
1026                                 {
1027                                         MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
1028                                         return;
1029                                 }
1030                                 column = 0;
1031                         }
1032                 }
1033         }
1034         if (len) {
1035                 if (client_write(outbuf, len) == -1)
1036                 {
1037                         MSGM_syslog(LOG_ERR, "memfmout(): aborting due to write failure.\n");
1038                         return;
1039                 }
1040                 len = 0;
1041                 client_write(nl, nllen);
1042                 column = 0;
1043         }
1044 }
1045
1046
1047
1048 /*
1049  * Callback function for mime parser that simply lists the part
1050  */
1051 void list_this_part(char *name, char *filename, char *partnum, char *disp,
1052                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1053                     char *cbid, void *cbuserdata)
1054 {
1055         struct ma_info *ma;
1056         
1057         ma = (struct ma_info *)cbuserdata;
1058         if (ma->is_ma == 0) {
1059                 cprintf("part=%s|%s|%s|%s|%s|%ld|%s|%s\n",
1060                         name, 
1061                         filename, 
1062                         partnum, 
1063                         disp, 
1064                         cbtype, 
1065                         (long)length, 
1066                         cbid, 
1067                         cbcharset);
1068         }
1069 }
1070
1071 /* 
1072  * Callback function for multipart prefix
1073  */
1074 void list_this_pref(char *name, char *filename, char *partnum, char *disp,
1075                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1076                     char *cbid, void *cbuserdata)
1077 {
1078         struct ma_info *ma;
1079         
1080         ma = (struct ma_info *)cbuserdata;
1081         if (!strcasecmp(cbtype, "multipart/alternative")) {
1082                 ++ma->is_ma;
1083         }
1084
1085         if (ma->is_ma == 0) {
1086                 cprintf("pref=%s|%s\n", partnum, cbtype);
1087         }
1088 }
1089
1090 /* 
1091  * Callback function for multipart sufffix
1092  */
1093 void list_this_suff(char *name, char *filename, char *partnum, char *disp,
1094                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1095                     char *cbid, void *cbuserdata)
1096 {
1097         struct ma_info *ma;
1098         
1099         ma = (struct ma_info *)cbuserdata;
1100         if (ma->is_ma == 0) {
1101                 cprintf("suff=%s|%s\n", partnum, cbtype);
1102         }
1103         if (!strcasecmp(cbtype, "multipart/alternative")) {
1104                 --ma->is_ma;
1105         }
1106 }
1107
1108
1109 /*
1110  * Callback function for mime parser that opens a section for downloading
1111  */
1112 void mime_download(char *name, char *filename, char *partnum, char *disp,
1113                    void *content, char *cbtype, char *cbcharset, size_t length,
1114                    char *encoding, char *cbid, void *cbuserdata)
1115 {
1116         int rv = 0;
1117         CitContext *CCC = MyContext();
1118
1119         /* Silently go away if there's already a download open. */
1120         if (CCC->download_fp != NULL)
1121                 return;
1122
1123         if (
1124                 (!IsEmptyStr(partnum) && (!strcasecmp(CCC->download_desired_section, partnum)))
1125         ||      (!IsEmptyStr(cbid) && (!strcasecmp(CCC->download_desired_section, cbid)))
1126         ) {
1127                 CCC->download_fp = tmpfile();
1128                 if (CCC->download_fp == NULL) {
1129                         MSG_syslog(LOG_EMERG, "mime_download(): Couldn't write: %s\n",
1130                                     strerror(errno));
1131                         cprintf("%d cannot open temporary file: %s\n",
1132                                 ERROR + INTERNAL_ERROR, strerror(errno));
1133                         return;
1134                 }
1135         
1136                 rv = fwrite(content, length, 1, CC->download_fp);
1137                 if (rv <= 0) {
1138                         MSG_syslog(LOG_EMERG, "mime_download(): Couldn't write: %s\n",
1139                                    strerror(errno));
1140                         cprintf("%d unable to write tempfile.\n",
1141                                 ERROR + TOO_BIG);
1142                         fclose(CCC->download_fp);
1143                         CCC->download_fp = NULL;
1144                         return;
1145                 }
1146                 fflush(CCC->download_fp);
1147                 rewind(CCC->download_fp);
1148         
1149                 OpenCmdResult(filename, cbtype);
1150         }
1151 }
1152
1153
1154
1155 /*
1156  * Callback function for mime parser that outputs a section all at once.
1157  * We can specify the desired section by part number *or* content-id.
1158  */
1159 void mime_spew_section(char *name, char *filename, char *partnum, char *disp,
1160                    void *content, char *cbtype, char *cbcharset, size_t length,
1161                    char *encoding, char *cbid, void *cbuserdata)
1162 {
1163         int *found_it = (int *)cbuserdata;
1164
1165         if (
1166                 (!IsEmptyStr(partnum) && (!strcasecmp(CC->download_desired_section, partnum)))
1167         ||      (!IsEmptyStr(cbid) && (!strcasecmp(CC->download_desired_section, cbid)))
1168         ) {
1169                 *found_it = 1;
1170                 cprintf("%d %d|-1|%s|%s|%s\n",
1171                         BINARY_FOLLOWS,
1172                         (int)length,
1173                         filename,
1174                         cbtype,
1175                         cbcharset
1176                 );
1177                 client_write(content, length);
1178         }
1179 }
1180
1181
1182 /*
1183  * Load a message from disk into memory.
1184  * This is used by CtdlOutputMsg() and other fetch functions.
1185  *
1186  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
1187  *       using the CtdlMessageFree() function.
1188  */
1189 struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body)
1190 {
1191         struct CitContext *CCC = CC;
1192         struct cdbdata *dmsgtext;
1193         struct CtdlMessage *ret = NULL;
1194         char *mptr;
1195         char *upper_bound;
1196         cit_uint8_t ch;
1197         cit_uint8_t field_header;
1198
1199         MSG_syslog(LOG_DEBUG, "CtdlFetchMessage(%ld, %d)\n", msgnum, with_body);
1200         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
1201         if (dmsgtext == NULL) {
1202                 return NULL;
1203         }
1204         mptr = dmsgtext->ptr;
1205         upper_bound = mptr + dmsgtext->len;
1206
1207         /* Parse the three bytes that begin EVERY message on disk.
1208          * The first is always 0xFF, the on-disk magic number.
1209          * The second is the anonymous/public type byte.
1210          * The third is the format type byte (vari, fixed, or MIME).
1211          */
1212         ch = *mptr++;
1213         if (ch != 255) {
1214                 MSG_syslog(LOG_ERR, "Message %ld appears to be corrupted.\n", msgnum);
1215                 cdb_free(dmsgtext);
1216                 return NULL;
1217         }
1218         ret = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1219         memset(ret, 0, sizeof(struct CtdlMessage));
1220
1221         ret->cm_magic = CTDLMESSAGE_MAGIC;
1222         ret->cm_anon_type = *mptr++;    /* Anon type byte */
1223         ret->cm_format_type = *mptr++;  /* Format type byte */
1224
1225         /*
1226          * The rest is zero or more arbitrary fields.  Load them in.
1227          * We're done when we encounter either a zero-length field or
1228          * have just processed the 'M' (message text) field.
1229          */
1230         do {
1231                 if (mptr >= upper_bound) {
1232                         break;
1233                 }
1234                 field_header = *mptr++;
1235                 ret->cm_fields[field_header] = strdup(mptr);
1236
1237                 while (*mptr++ != 0);   /* advance to next field */
1238
1239         } while ((mptr < upper_bound) && (field_header != 'M'));
1240
1241         cdb_free(dmsgtext);
1242
1243         /* Always make sure there's something in the msg text field.  If
1244          * it's NULL, the message text is most likely stored separately,
1245          * so go ahead and fetch that.  Failing that, just set a dummy
1246          * body so other code doesn't barf.
1247          */
1248         if ( (ret->cm_fields['M'] == NULL) && (with_body) ) {
1249                 dmsgtext = cdb_fetch(CDB_BIGMSGS, &msgnum, sizeof(long));
1250                 if (dmsgtext != NULL) {
1251                         ret->cm_fields['M'] = dmsgtext->ptr;
1252                         dmsgtext->ptr = NULL;
1253                         cdb_free(dmsgtext);
1254                 }
1255         }
1256         if (ret->cm_fields['M'] == NULL) {
1257                 ret->cm_fields['M'] = strdup("\r\n\r\n (no text)\r\n");
1258         }
1259
1260         /* Perform "before read" hooks (aborting if any return nonzero) */
1261         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
1262                 CtdlFreeMessage(ret);
1263                 return NULL;
1264         }
1265
1266         return (ret);
1267 }
1268
1269
1270 /*
1271  * Returns 1 if the supplied pointer points to a valid Citadel message.
1272  * If the pointer is NULL or the magic number check fails, returns 0.
1273  */
1274 int is_valid_message(struct CtdlMessage *msg) {
1275         if (msg == NULL)
1276                 return 0;
1277         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
1278                 struct CitContext *CCC = CC;
1279                 MSGM_syslog(LOG_WARNING, "is_valid_message() -- self-check failed\n");
1280                 return 0;
1281         }
1282         return 1;
1283 }
1284
1285 void CtdlFreeMessageContents(struct CtdlMessage *msg)
1286 {
1287         int i;
1288
1289         for (i = 0; i < 256; ++i)
1290                 if (msg->cm_fields[i] != NULL) {
1291                         free(msg->cm_fields[i]);
1292                 }
1293
1294         msg->cm_magic = 0;      /* just in case */
1295 }
1296 /*
1297  * 'Destructor' for struct CtdlMessage
1298  */
1299 void CtdlFreeMessage(struct CtdlMessage *msg)
1300 {
1301         if (is_valid_message(msg) == 0) 
1302         {
1303                 if (msg != NULL) free (msg);
1304                 return;
1305         }
1306         CtdlFreeMessageContents(msg);
1307         free(msg);
1308 }
1309
1310
1311 /*
1312  * Pre callback function for multipart/alternative
1313  *
1314  * NOTE: this differs from the standard behavior for a reason.  Normally when
1315  *       displaying multipart/alternative you want to show the _last_ usable
1316  *       format in the message.  Here we show the _first_ one, because it's
1317  *       usually text/plain.  Since this set of functions is designed for text
1318  *       output to non-MIME-aware clients, this is the desired behavior.
1319  *
1320  */
1321 void fixed_output_pre(char *name, char *filename, char *partnum, char *disp,
1322                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1323                 char *cbid, void *cbuserdata)
1324 {
1325         struct CitContext *CCC = CC;
1326         struct ma_info *ma;
1327         
1328         ma = (struct ma_info *)cbuserdata;
1329         MSG_syslog(LOG_DEBUG, "fixed_output_pre() type=<%s>\n", cbtype);        
1330         if (!strcasecmp(cbtype, "multipart/alternative")) {
1331                 ++ma->is_ma;
1332                 ma->did_print = 0;
1333         }
1334         if (!strcasecmp(cbtype, "message/rfc822")) {
1335                 ++ma->freeze;
1336         }
1337 }
1338
1339 /*
1340  * Post callback function for multipart/alternative
1341  */
1342 void fixed_output_post(char *name, char *filename, char *partnum, char *disp,
1343                 void *content, char *cbtype, char *cbcharset, size_t length,
1344                 char *encoding, char *cbid, void *cbuserdata)
1345 {
1346         struct CitContext *CCC = CC;
1347         struct ma_info *ma;
1348         
1349         ma = (struct ma_info *)cbuserdata;
1350         MSG_syslog(LOG_DEBUG, "fixed_output_post() type=<%s>\n", cbtype);       
1351         if (!strcasecmp(cbtype, "multipart/alternative")) {
1352                 --ma->is_ma;
1353                 ma->did_print = 0;
1354         }
1355         if (!strcasecmp(cbtype, "message/rfc822")) {
1356                 --ma->freeze;
1357         }
1358 }
1359
1360 /*
1361  * Inline callback function for mime parser that wants to display text
1362  */
1363 void fixed_output(char *name, char *filename, char *partnum, char *disp,
1364                 void *content, char *cbtype, char *cbcharset, size_t length,
1365                 char *encoding, char *cbid, void *cbuserdata)
1366 {
1367         struct CitContext *CCC = CC;
1368         char *ptr;
1369         char *wptr;
1370         size_t wlen;
1371         struct ma_info *ma;
1372
1373         ma = (struct ma_info *)cbuserdata;
1374
1375         MSG_syslog(LOG_DEBUG,
1376                 "fixed_output() part %s: %s (%s) (%ld bytes)\n",
1377                 partnum, filename, cbtype, (long)length);
1378
1379         /*
1380          * If we're in the middle of a multipart/alternative scope and
1381          * we've already printed another section, skip this one.
1382          */     
1383         if ( (ma->is_ma) && (ma->did_print) ) {
1384                 MSG_syslog(LOG_DEBUG, "Skipping part %s (%s)\n", partnum, cbtype);
1385                 return;
1386         }
1387         ma->did_print = 1;
1388
1389         if ( (!strcasecmp(cbtype, "text/plain")) 
1390            || (IsEmptyStr(cbtype)) ) {
1391                 wptr = content;
1392                 if (length > 0) {
1393                         client_write(wptr, length);
1394                         if (wptr[length-1] != '\n') {
1395                                 cprintf("\n");
1396                         }
1397                 }
1398                 return;
1399         }
1400
1401         if (!strcasecmp(cbtype, "text/html")) {
1402                 ptr = html_to_ascii(content, length, 80, 0);
1403                 wlen = strlen(ptr);
1404                 client_write(ptr, wlen);
1405                 if ((wlen > 0) && (ptr[wlen-1] != '\n')) {
1406                         cprintf("\n");
1407                 }
1408                 free(ptr);
1409                 return;
1410         }
1411
1412         if (ma->use_fo_hooks) {
1413                 if (PerformFixedOutputHooks(cbtype, content, length)) {
1414                 /* above function returns nonzero if it handled the part */
1415                         return;
1416                 }
1417         }
1418
1419         if (strncasecmp(cbtype, "multipart/", 10)) {
1420                 cprintf("Part %s: %s (%s) (%ld bytes)\r\n",
1421                         partnum, filename, cbtype, (long)length);
1422                 return;
1423         }
1424 }
1425
1426 /*
1427  * The client is elegant and sophisticated and wants to be choosy about
1428  * MIME content types, so figure out which multipart/alternative part
1429  * we're going to send.
1430  *
1431  * We use a system of weights.  When we find a part that matches one of the
1432  * MIME types we've declared as preferential, we can store it in ma->chosen_part
1433  * and then set ma->chosen_pref to that MIME type's position in our preference
1434  * list.  If we then hit another match, we only replace the first match if
1435  * the preference value is lower.
1436  */
1437 void choose_preferred(char *name, char *filename, char *partnum, char *disp,
1438                 void *content, char *cbtype, char *cbcharset, size_t length,
1439                 char *encoding, char *cbid, void *cbuserdata)
1440 {
1441         struct CitContext *CCC = CC;
1442         char buf[1024];
1443         int i;
1444         struct ma_info *ma;
1445         
1446         ma = (struct ma_info *)cbuserdata;
1447
1448         // NOTE: REMOVING THIS CONDITIONAL FIXES BUG 220
1449         //       http://bugzilla.citadel.org/show_bug.cgi?id=220
1450         // I don't know if there are any side effects!  Please TEST TEST TEST
1451         //if (ma->is_ma > 0) {
1452
1453         for (i=0; i<num_tokens(CCC->preferred_formats, '|'); ++i) {
1454                 extract_token(buf, CCC->preferred_formats, i, '|', sizeof buf);
1455                 if ( (!strcasecmp(buf, cbtype)) && (!ma->freeze) ) {
1456                         if (i < ma->chosen_pref) {
1457                                 MSG_syslog(LOG_DEBUG, "Setting chosen part: <%s>\n", partnum);
1458                                 safestrncpy(ma->chosen_part, partnum, sizeof ma->chosen_part);
1459                                 ma->chosen_pref = i;
1460                         }
1461                 }
1462         }
1463 }
1464
1465 /*
1466  * Now that we've chosen our preferred part, output it.
1467  */
1468 void output_preferred(char *name, 
1469                       char *filename, 
1470                       char *partnum, 
1471                       char *disp,
1472                       void *content, 
1473                       char *cbtype, 
1474                       char *cbcharset, 
1475                       size_t length,
1476                       char *encoding, 
1477                       char *cbid, 
1478                       void *cbuserdata)
1479 {
1480         struct CitContext *CCC = CC;
1481         int i;
1482         char buf[128];
1483         int add_newline = 0;
1484         char *text_content;
1485         struct ma_info *ma;
1486         char *decoded = NULL;
1487         size_t bytes_decoded;
1488         int rc = 0;
1489
1490         ma = (struct ma_info *)cbuserdata;
1491
1492         /* This is not the MIME part you're looking for... */
1493         if (strcasecmp(partnum, ma->chosen_part)) return;
1494
1495         /* If the content-type of this part is in our preferred formats
1496          * list, we can simply output it verbatim.
1497          */
1498         for (i=0; i<num_tokens(CCC->preferred_formats, '|'); ++i) {
1499                 extract_token(buf, CCC->preferred_formats, i, '|', sizeof buf);
1500                 if (!strcasecmp(buf, cbtype)) {
1501                         /* Yeah!  Go!  W00t!! */
1502                         if (ma->dont_decode == 0) 
1503                                 rc = mime_decode_now (content, 
1504                                                       length,
1505                                                       encoding,
1506                                                       &decoded,
1507                                                       &bytes_decoded);
1508                         if (rc < 0)
1509                                 break; /* Give us the chance, maybe theres another one. */
1510
1511                         if (rc == 0) text_content = (char *)content;
1512                         else {
1513                                 text_content = decoded;
1514                                 length = bytes_decoded;
1515                         }
1516
1517                         if (text_content[length-1] != '\n') {
1518                                 ++add_newline;
1519                         }
1520                         cprintf("Content-type: %s", cbtype);
1521                         if (!IsEmptyStr(cbcharset)) {
1522                                 cprintf("; charset=%s", cbcharset);
1523                         }
1524                         cprintf("\nContent-length: %d\n",
1525                                 (int)(length + add_newline) );
1526                         if (!IsEmptyStr(encoding)) {
1527                                 cprintf("Content-transfer-encoding: %s\n", encoding);
1528                         }
1529                         else {
1530                                 cprintf("Content-transfer-encoding: 7bit\n");
1531                         }
1532                         cprintf("X-Citadel-MSG4-Partnum: %s\n", partnum);
1533                         cprintf("\n");
1534                         if (client_write(text_content, length) == -1)
1535                         {
1536                                 MSGM_syslog(LOG_ERR, "output_preferred(): aborting due to write failure.\n");
1537                                 return;
1538                         }
1539                         if (add_newline) cprintf("\n");
1540                         if (decoded != NULL) free(decoded);
1541                         return;
1542                 }
1543         }
1544
1545         /* No translations required or possible: output as text/plain */
1546         cprintf("Content-type: text/plain\n\n");
1547         rc = 0;
1548         if (ma->dont_decode == 0)
1549                 rc = mime_decode_now (content, 
1550                                       length,
1551                                       encoding,
1552                                       &decoded,
1553                                       &bytes_decoded);
1554         if (rc < 0)
1555                 return; /* Give us the chance, maybe theres another one. */
1556         
1557         if (rc == 0) text_content = (char *)content;
1558         else {
1559                 text_content = decoded;
1560                 length = bytes_decoded;
1561         }
1562
1563         fixed_output(name, filename, partnum, disp, text_content, cbtype, cbcharset,
1564                         length, encoding, cbid, cbuserdata);
1565         if (decoded != NULL) free(decoded);
1566 }
1567
1568
1569 struct encapmsg {
1570         char desired_section[64];
1571         char *msg;
1572         size_t msglen;
1573 };
1574
1575
1576 /*
1577  * Callback function for
1578  */
1579 void extract_encapsulated_message(char *name, char *filename, char *partnum, char *disp,
1580                    void *content, char *cbtype, char *cbcharset, size_t length,
1581                    char *encoding, char *cbid, void *cbuserdata)
1582 {
1583         struct encapmsg *encap;
1584
1585         encap = (struct encapmsg *)cbuserdata;
1586
1587         /* Only proceed if this is the desired section... */
1588         if (!strcasecmp(encap->desired_section, partnum)) {
1589                 encap->msglen = length;
1590                 encap->msg = malloc(length + 2);
1591                 memcpy(encap->msg, content, length);
1592                 return;
1593         }
1594 }
1595
1596
1597 /*
1598  * Determine whether the specified message exists in the cached_msglist
1599  * (This is a security check)
1600  */
1601 int check_cached_msglist(long msgnum) {
1602         struct CitContext *CCC = CC;
1603
1604         /* cases in which we skip the check */
1605         if (!CCC) return om_ok;                                         /* not a session */
1606         if (CCC->client_socket <= 0) return om_ok;                      /* not a client session */
1607         if (CCC->cached_msglist == NULL) return om_access_denied;       /* no msglist fetched */
1608         if (CCC->cached_num_msgs == 0) return om_access_denied;         /* nothing to check */
1609
1610
1611         /* Do a binary search within the cached_msglist for the requested msgnum */
1612         int min = 0;
1613         int max = (CC->cached_num_msgs - 1);
1614
1615         while (max >= min) {
1616                 int middle = min + (max-min) / 2 ;
1617                 if (msgnum == CCC->cached_msglist[middle]) {
1618                         return om_ok;
1619                 }
1620                 if (msgnum > CC->cached_msglist[middle]) {
1621                         min = middle + 1;
1622                 }
1623                 else {
1624                         max = middle - 1;
1625                 }
1626         }
1627
1628         return om_access_denied;
1629 }
1630
1631
1632 /* 
1633  * Determine whether the currently logged in session has permission to read
1634  * messages in the current room.
1635  */
1636 int CtdlDoIHavePermissionToReadMessagesInThisRoom(void) {
1637         if (    (!(CC->logged_in))
1638                 && (!(CC->internal_pgm))
1639                 && (!config.c_guest_logins)
1640         ) {
1641                 return(om_not_logged_in);
1642         }
1643         return(om_ok);
1644 }
1645
1646
1647 /*
1648  * Get a message off disk.  (returns om_* values found in msgbase.h)
1649  * 
1650  */
1651 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
1652                   int mode,             /* how would you like that message? */
1653                   int headers_only,     /* eschew the message body? */
1654                   int do_proto,         /* do Citadel protocol responses? */
1655                   int crlf,             /* Use CRLF newlines instead of LF? */
1656                   char *section,        /* NULL or a message/rfc822 section */
1657                   int flags,            /* various flags; see msgbase.h */
1658                   char **Author,
1659                   char **Address
1660 ) {
1661         struct CitContext *CCC = CC;
1662         struct CtdlMessage *TheMessage = NULL;
1663         int retcode = CIT_OK;
1664         struct encapmsg encap;
1665         int r;
1666
1667         MSG_syslog(LOG_DEBUG, "CtdlOutputMsg(msgnum=%ld, mode=%d, section=%s)\n", 
1668                 msg_num, mode,
1669                 (section ? section : "<>")
1670         );
1671
1672         r = CtdlDoIHavePermissionToReadMessagesInThisRoom();
1673         if (r != om_ok) {
1674                 if (do_proto) {
1675                         if (r == om_not_logged_in) {
1676                                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
1677                         }
1678                         else {
1679                                 cprintf("%d An unknown error has occurred.\n", ERROR);
1680                         }
1681                 }
1682                 return(r);
1683         }
1684
1685         /*
1686          * Check to make sure the message is actually IN this room
1687          */
1688         r = check_cached_msglist(msg_num);
1689         if (r == om_access_denied) {
1690                 /* Not in the cache?  We get ONE shot to check it again. */
1691                 CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, NULL, NULL);
1692                 r = check_cached_msglist(msg_num);
1693         }
1694         if (r != om_ok) {
1695                 MSG_syslog(LOG_DEBUG, "Security check fail: message %ld is not in %s\n",
1696                            msg_num, CCC->room.QRname
1697                 );
1698                 if (do_proto) {
1699                         if (r == om_access_denied) {
1700                                 cprintf("%d message %ld was not found in this room\n",
1701                                         ERROR + HIGHER_ACCESS_REQUIRED,
1702                                         msg_num
1703                                 );
1704                         }
1705                 }
1706                 return(r);
1707         }
1708
1709         /*
1710          * Fetch the message from disk.  If we're in HEADERS_FAST mode,
1711          * request that we don't even bother loading the body into memory.
1712          */
1713         if (headers_only == HEADERS_FAST) {
1714                 TheMessage = CtdlFetchMessage(msg_num, 0);
1715         }
1716         else {
1717                 TheMessage = CtdlFetchMessage(msg_num, 1);
1718         }
1719
1720         if (TheMessage == NULL) {
1721                 if (do_proto) cprintf("%d Can't locate msg %ld on disk\n",
1722                         ERROR + MESSAGE_NOT_FOUND, msg_num);
1723                 return(om_no_such_msg);
1724         }
1725
1726         /* Here is the weird form of this command, to process only an
1727          * encapsulated message/rfc822 section.
1728          */
1729         if (section) if (!IsEmptyStr(section)) if (strcmp(section, "0")) {
1730                 memset(&encap, 0, sizeof encap);
1731                 safestrncpy(encap.desired_section, section, sizeof encap.desired_section);
1732                 mime_parser(TheMessage->cm_fields['M'],
1733                         NULL,
1734                         *extract_encapsulated_message,
1735                         NULL, NULL, (void *)&encap, 0
1736                 );
1737
1738                 if ((Author != NULL) && (*Author == NULL))
1739                 {
1740                         *Author = TheMessage->cm_fields['A'];
1741                         TheMessage->cm_fields['A'] = NULL;
1742                 }
1743                 if ((Address != NULL) && (*Address == NULL))
1744                 {       
1745                         *Address = TheMessage->cm_fields['F'];
1746                         TheMessage->cm_fields['F'] = NULL;
1747                 }
1748                 CtdlFreeMessage(TheMessage);
1749                 TheMessage = NULL;
1750
1751                 if (encap.msg) {
1752                         encap.msg[encap.msglen] = 0;
1753                         TheMessage = convert_internet_message(encap.msg);
1754                         encap.msg = NULL;       /* no free() here, TheMessage owns it now */
1755
1756                         /* Now we let it fall through to the bottom of this
1757                          * function, because TheMessage now contains the
1758                          * encapsulated message instead of the top-level
1759                          * message.  Isn't that neat?
1760                          */
1761
1762                 }
1763                 else {
1764                         if (do_proto) {
1765                                 cprintf("%d msg %ld has no part %s\n",
1766                                         ERROR + MESSAGE_NOT_FOUND,
1767                                         msg_num,
1768                                         section);
1769                         }
1770                         retcode = om_no_such_msg;
1771                 }
1772
1773         }
1774
1775         /* Ok, output the message now */
1776         if (retcode == CIT_OK)
1777                 retcode = CtdlOutputPreLoadedMsg(TheMessage, mode, headers_only, do_proto, crlf, flags);
1778         if ((Author != NULL) && (*Author == NULL))
1779         {
1780                 *Author = TheMessage->cm_fields['A'];
1781                 TheMessage->cm_fields['A'] = NULL;
1782         }
1783         if ((Address != NULL) && (*Address == NULL))
1784         {       
1785                 *Address = TheMessage->cm_fields['F'];
1786                 TheMessage->cm_fields['F'] = NULL;
1787         }
1788
1789         CtdlFreeMessage(TheMessage);
1790
1791         return(retcode);
1792 }
1793
1794
1795 char *qp_encode_email_addrs(char *source)
1796 {
1797         struct CitContext *CCC = CC;
1798         char *user, *node, *name;
1799         const char headerStr[] = "=?UTF-8?Q?";
1800         char *Encoded;
1801         char *EncodedName;
1802         char *nPtr;
1803         int need_to_encode = 0;
1804         long SourceLen;
1805         long EncodedMaxLen;
1806         long nColons = 0;
1807         long *AddrPtr;
1808         long *AddrUtf8;
1809         long nAddrPtrMax = 50;
1810         long nmax;
1811         int InQuotes = 0;
1812         int i, n;
1813
1814         if (source == NULL) return source;
1815         if (IsEmptyStr(source)) return source;
1816         if (MessageDebugEnabled != 0) cit_backtrace();
1817         MSG_syslog(LOG_DEBUG, "qp_encode_email_addrs: [%s]\n", source);
1818
1819         AddrPtr = malloc (sizeof (long) * nAddrPtrMax);
1820         AddrUtf8 = malloc (sizeof (long) * nAddrPtrMax);
1821         memset(AddrUtf8, 0, sizeof (long) * nAddrPtrMax);
1822         *AddrPtr = 0;
1823         i = 0;
1824         while (!IsEmptyStr (&source[i])) {
1825                 if (nColons >= nAddrPtrMax){
1826                         long *ptr;
1827
1828                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
1829                         memcpy (ptr, AddrPtr, sizeof (long) * nAddrPtrMax);
1830                         free (AddrPtr), AddrPtr = ptr;
1831
1832                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
1833                         memset(&ptr[nAddrPtrMax], 0, 
1834                                sizeof (long) * nAddrPtrMax);
1835
1836                         memcpy (ptr, AddrUtf8, sizeof (long) * nAddrPtrMax);
1837                         free (AddrUtf8), AddrUtf8 = ptr;
1838                         nAddrPtrMax *= 2;                               
1839                 }
1840                 if (((unsigned char) source[i] < 32) || 
1841                     ((unsigned char) source[i] > 126)) {
1842                         need_to_encode = 1;
1843                         AddrUtf8[nColons] = 1;
1844                 }
1845                 if (source[i] == '"')
1846                         InQuotes = !InQuotes;
1847                 if (!InQuotes && source[i] == ',') {
1848                         AddrPtr[nColons] = i;
1849                         nColons++;
1850                 }
1851                 i++;
1852         }
1853         if (need_to_encode == 0) {
1854                 free(AddrPtr);
1855                 free(AddrUtf8);
1856                 return source;
1857         }
1858
1859         SourceLen = i;
1860         EncodedMaxLen = nColons * (sizeof(headerStr) + 3) + SourceLen * 3;
1861         Encoded = (char*) malloc (EncodedMaxLen);
1862
1863         for (i = 0; i < nColons; i++)
1864                 source[AddrPtr[i]++] = '\0';
1865         /* TODO: if libidn, this might get larger*/
1866         user = malloc(SourceLen + 1);
1867         node = malloc(SourceLen + 1);
1868         name = malloc(SourceLen + 1);
1869
1870         nPtr = Encoded;
1871         *nPtr = '\0';
1872         for (i = 0; i < nColons && nPtr != NULL; i++) {
1873                 nmax = EncodedMaxLen - (nPtr - Encoded);
1874                 if (AddrUtf8[i]) {
1875                         process_rfc822_addr(&source[AddrPtr[i]], 
1876                                             user,
1877                                             node,
1878                                             name);
1879                         /* TODO: libIDN here ! */
1880                         if (IsEmptyStr(name)) {
1881                                 n = snprintf(nPtr, nmax, 
1882                                              (i==0)?"%s@%s" : ",%s@%s",
1883                                              user, node);
1884                         }
1885                         else {
1886                                 EncodedName = rfc2047encode(name, strlen(name));                        
1887                                 n = snprintf(nPtr, nmax, 
1888                                              (i==0)?"%s <%s@%s>" : ",%s <%s@%s>",
1889                                              EncodedName, user, node);
1890                                 free(EncodedName);
1891                         }
1892                 }
1893                 else { 
1894                         n = snprintf(nPtr, nmax, 
1895                                      (i==0)?"%s" : ",%s",
1896                                      &source[AddrPtr[i]]);
1897                 }
1898                 if (n > 0 )
1899                         nPtr += n;
1900                 else { 
1901                         char *ptr, *nnPtr;
1902                         ptr = (char*) malloc(EncodedMaxLen * 2);
1903                         memcpy(ptr, Encoded, EncodedMaxLen);
1904                         nnPtr = ptr + (nPtr - Encoded), nPtr = nnPtr;
1905                         free(Encoded), Encoded = ptr;
1906                         EncodedMaxLen *= 2;
1907                         i--; /* do it once more with properly lengthened buffer */
1908                 }
1909         }
1910         for (i = 0; i < nColons; i++)
1911                 source[--AddrPtr[i]] = ',';
1912
1913         free(user);
1914         free(node);
1915         free(name);
1916         free(AddrUtf8);
1917         free(AddrPtr);
1918         return Encoded;
1919 }
1920
1921
1922 /* If the last item in a list of recipients was truncated to a partial address,
1923  * remove it completely in order to avoid choking libSieve
1924  */
1925 void sanitize_truncated_recipient(char *str)
1926 {
1927         if (!str) return;
1928         if (num_tokens(str, ',') < 2) return;
1929
1930         int len = strlen(str);
1931         if (len < 900) return;
1932         if (len > 998) str[998] = 0;
1933
1934         char *cptr = strrchr(str, ',');
1935         if (!cptr) return;
1936
1937         char *lptr = strchr(cptr, '<');
1938         char *rptr = strchr(cptr, '>');
1939
1940         if ( (lptr) && (rptr) && (rptr > lptr) ) return;
1941
1942         *cptr = 0;
1943 }
1944
1945
1946 void OutputCtdlMsgHeaders(
1947         struct CtdlMessage *TheMessage,
1948         int do_proto)           /* do Citadel protocol responses? */
1949 {
1950         char allkeys[30];
1951         int i, k, n;
1952         int suppress_f = 0;
1953         char buf[SIZ];
1954         char display_name[256];
1955
1956         /* begin header processing loop for Citadel message format */
1957         safestrncpy(display_name, "<unknown>", sizeof display_name);
1958         if (TheMessage->cm_fields['A']) {
1959                 strcpy(buf, TheMessage->cm_fields['A']);
1960                 if (TheMessage->cm_anon_type == MES_ANONONLY) {
1961                         safestrncpy(display_name, "****", sizeof display_name);
1962                 }
1963                 else if (TheMessage->cm_anon_type == MES_ANONOPT) {
1964                         safestrncpy(display_name, "anonymous", sizeof display_name);
1965                 }
1966                 else {
1967                         safestrncpy(display_name, buf, sizeof display_name);
1968                 }
1969                 if ((is_room_aide())
1970                     && ((TheMessage->cm_anon_type == MES_ANONONLY)
1971                         || (TheMessage->cm_anon_type == MES_ANONOPT))) {
1972                         size_t tmp = strlen(display_name);
1973                         snprintf(&display_name[tmp],
1974                                  sizeof display_name - tmp,
1975                                  " [%s]", buf);
1976                 }
1977         }
1978
1979         /* Don't show Internet address for users on the
1980          * local Citadel network.
1981          */
1982         suppress_f = 0;
1983         if (TheMessage->cm_fields['N'] != NULL)
1984                 if (!IsEmptyStr(TheMessage->cm_fields['N']))
1985                         if (haschar(TheMessage->cm_fields['N'], '.') == 0) {
1986                                 suppress_f = 1;
1987                         }
1988
1989         /* Now spew the header fields in the order we like them. */
1990         n = safestrncpy(allkeys, FORDER, sizeof allkeys);
1991         for (i=0; i<n; ++i) {
1992                 k = (int) allkeys[i];
1993                 if (k != 'M') {
1994                         if ( (TheMessage->cm_fields[k] != NULL)
1995                              && (msgkeys[k] != NULL) ) {
1996                                 if ((k == 'V') || (k == 'R') || (k == 'Y')) {
1997                                         sanitize_truncated_recipient(TheMessage->cm_fields[k]);
1998                                 }
1999                                 if (k == 'A') {
2000                                         if (do_proto) cprintf("%s=%s\n",
2001                                                               msgkeys[k],
2002                                                               display_name);
2003                                 }
2004                                 else if ((k == 'F') && (suppress_f)) {
2005                                         /* do nothing */
2006                                 }
2007                                 /* Masquerade display name if needed */
2008                                 else {
2009                                         if (do_proto) cprintf("%s=%s\n",
2010                                                               msgkeys[k],
2011                                                               TheMessage->cm_fields[k]
2012                                                 );
2013                                 }
2014                         }
2015                 }
2016         }
2017
2018 }
2019
2020 void OutputRFC822MsgHeaders(
2021         struct CtdlMessage *TheMessage,
2022         int flags,              /* should the bessage be exported clean */
2023         const char *nl,
2024         char *mid, long sizeof_mid,
2025         char *suser, long sizeof_suser,
2026         char *luser, long sizeof_luser,
2027         char *fuser, long sizeof_fuser,
2028         char *snode, long sizeof_snode)
2029 {
2030         char datestamp[100];
2031         int subject_found = 0;
2032         char buf[SIZ];
2033         int i, j, k;
2034         char *mptr = NULL;
2035         char *mpptr = NULL;
2036         char *hptr;
2037
2038         for (i = 0; i < 256; ++i) {
2039                 if (TheMessage->cm_fields[i]) {
2040                         mptr = mpptr = TheMessage->cm_fields[i];
2041                                 
2042                         if (i == 'A') {
2043                                 safestrncpy(luser, mptr, sizeof_luser);
2044                                 safestrncpy(suser, mptr, sizeof_suser);
2045                         }
2046                         else if (i == 'Y') {
2047                                 if ((flags & QP_EADDR) != 0) {
2048                                         mptr = qp_encode_email_addrs(mptr);
2049                                 }
2050                                 sanitize_truncated_recipient(mptr);
2051                                 cprintf("CC: %s%s", mptr, nl);
2052                         }
2053                         else if (i == 'P') {
2054                                 cprintf("Return-Path: %s%s", mptr, nl);
2055                         }
2056                         else if (i == 'L') {
2057                                 cprintf("List-ID: %s%s", mptr, nl);
2058                         }
2059                         else if (i == 'V') {
2060                                 if ((flags & QP_EADDR) != 0) 
2061                                         mptr = qp_encode_email_addrs(mptr);
2062                                 hptr = mptr;
2063                                 while ((*hptr != '\0') && isspace(*hptr))
2064                                         hptr ++;
2065                                 if (!IsEmptyStr(hptr))
2066                                         cprintf("Envelope-To: %s%s", hptr, nl);
2067                         }
2068                         else if (i == 'U') {
2069                                 cprintf("Subject: %s%s", mptr, nl);
2070                                 subject_found = 1;
2071                         }
2072                         else if (i == 'I')
2073                                 safestrncpy(mid, mptr, sizeof_mid); /// TODO: detect @ here and copy @nodename in if not found.
2074                         else if (i == 'F')
2075                                 safestrncpy(fuser, mptr, sizeof_fuser);
2076                         /* else if (i == 'O')
2077                            cprintf("X-Citadel-Room: %s%s",
2078                            mptr, nl); */
2079                         else if (i == 'N')
2080                                 safestrncpy(snode, mptr, sizeof_snode);
2081                         else if (i == 'R')
2082                         {
2083                                 if (haschar(mptr, '@') == 0)
2084                                 {
2085                                         sanitize_truncated_recipient(mptr);
2086                                         cprintf("To: %s@%s", mptr, config.c_fqdn);
2087                                         cprintf("%s", nl);
2088                                 }
2089                                 else
2090                                 {
2091                                         if ((flags & QP_EADDR) != 0) {
2092                                                 mptr = qp_encode_email_addrs(mptr);
2093                                         }
2094                                         sanitize_truncated_recipient(mptr);
2095                                         cprintf("To: %s", mptr);
2096                                         cprintf("%s", nl);
2097                                 }
2098                         }
2099                         else if (i == 'T') {
2100                                 datestring(datestamp, sizeof datestamp,
2101                                            atol(mptr), DATESTRING_RFC822);
2102                                 cprintf("Date: %s%s", datestamp, nl);
2103                         }
2104                         else if (i == 'W') {
2105                                 cprintf("References: ");
2106                                 k = num_tokens(mptr, '|');
2107                                 for (j=0; j<k; ++j) {
2108                                         extract_token(buf, mptr, j, '|', sizeof buf);
2109                                         cprintf("<%s>", buf);
2110                                         if (j == (k-1)) {
2111                                                 cprintf("%s", nl);
2112                                         }
2113                                         else {
2114                                                 cprintf(" ");
2115                                         }
2116                                 }
2117                         }
2118                         else if (i == 'K') {
2119                                 hptr = mptr;
2120                                 while ((*hptr != '\0') && isspace(*hptr))
2121                                         hptr ++;
2122                                 if (!IsEmptyStr(hptr))
2123                                         cprintf("Reply-To: %s%s", mptr, nl);
2124                         }
2125                         if (mptr != mpptr)
2126                                 free (mptr);
2127                 }
2128         }
2129         if (subject_found == 0) {
2130                 cprintf("Subject: (no subject)%s", nl);
2131         }
2132 }
2133
2134
2135 void Dump_RFC822HeadersBody(
2136         struct CtdlMessage *TheMessage,
2137         int headers_only,       /* eschew the message body? */
2138         int flags,              /* should the bessage be exported clean? */
2139
2140         const char *nl)
2141 {
2142         cit_uint8_t prev_ch;
2143         int eoh = 0;
2144         const char *StartOfText = StrBufNOTNULL;
2145         char outbuf[1024];
2146         int outlen = 0;
2147         int nllen = strlen(nl);
2148         char *mptr;
2149
2150         mptr = TheMessage->cm_fields['M'];
2151
2152
2153         prev_ch = '\0';
2154         while (*mptr != '\0') {
2155                 if (*mptr == '\r') {
2156                         /* do nothing */
2157                 }
2158                 else {
2159                         if ((!eoh) &&
2160                             (*mptr == '\n'))
2161                         {
2162                                 eoh = (*(mptr+1) == '\r') && (*(mptr+2) == '\n');
2163                                 if (!eoh)
2164                                         eoh = *(mptr+1) == '\n';
2165                                 if (eoh)
2166                                 {
2167                                         StartOfText = mptr;
2168                                         StartOfText = strchr(StartOfText, '\n');
2169                                         StartOfText = strchr(StartOfText, '\n');
2170                                 }
2171                         }
2172                         if (((headers_only == HEADERS_NONE) && (mptr >= StartOfText)) ||
2173                             ((headers_only == HEADERS_ONLY) && (mptr < StartOfText)) ||
2174                             ((headers_only != HEADERS_NONE) && 
2175                              (headers_only != HEADERS_ONLY))
2176                                 ) {
2177                                 if (*mptr == '\n') {
2178                                         memcpy(&outbuf[outlen], nl, nllen);
2179                                         outlen += nllen;
2180                                         outbuf[outlen] = '\0';
2181                                 }
2182                                 else {
2183                                         outbuf[outlen++] = *mptr;
2184                                 }
2185                         }
2186                 }
2187                 if (flags & ESC_DOT)
2188                 {
2189                         if ((prev_ch == '\n') && 
2190                             (*mptr == '.') && 
2191                             ((*(mptr+1) == '\r') || (*(mptr+1) == '\n')))
2192                         {
2193                                 outbuf[outlen++] = '.';
2194                         }
2195                         prev_ch = *mptr;
2196                 }
2197                 ++mptr;
2198                 if (outlen > 1000) {
2199                         if (client_write(outbuf, outlen) == -1)
2200                         {
2201                                 struct CitContext *CCC = CC;
2202                                 MSGM_syslog(LOG_ERR, "Dump_RFC822HeadersBody(): aborting due to write failure.\n");
2203                                 return;
2204                         }
2205                         outlen = 0;
2206                 }
2207         }
2208         if (outlen > 0) {
2209                 client_write(outbuf, outlen);
2210         }
2211 }
2212
2213
2214
2215 /* If the format type on disk is 1 (fixed-format), then we want
2216  * everything to be output completely literally ... regardless of
2217  * what message transfer format is in use.
2218  */
2219 void DumpFormatFixed(
2220         struct CtdlMessage *TheMessage,
2221         int mode,               /* how would you like that message? */
2222         const char *nl)
2223 {
2224         cit_uint8_t ch;
2225         char buf[SIZ];
2226         int buflen;
2227         int xlline = 0;
2228         int nllen = strlen (nl);
2229         char *mptr;
2230
2231         mptr = TheMessage->cm_fields['M'];
2232         
2233         if (mode == MT_MIME) {
2234                 cprintf("Content-type: text/plain\n\n");
2235         }
2236         *buf = '\0';
2237         buflen = 0;
2238         while (ch = *mptr++, ch > 0) {
2239                 if (ch == '\n')
2240                         ch = '\r';
2241
2242                 if ((buflen > 250) && (!xlline)){
2243                         int tbuflen;
2244                         tbuflen = buflen;
2245
2246                         while ((buflen > 0) && 
2247                                (!isspace(buf[buflen])))
2248                                 buflen --;
2249                         if (buflen == 0) {
2250                                 xlline = 1;
2251                         }
2252                         else {
2253                                 mptr -= tbuflen - buflen;
2254                                 buf[buflen] = '\0';
2255                                 ch = '\r';
2256                         }
2257                 }
2258                 /* if we reach the outer bounds of our buffer, 
2259                    abort without respect what whe purge. */
2260                 if (xlline && 
2261                     ((isspace(ch)) || 
2262                      (buflen > SIZ - nllen - 2)))
2263                         ch = '\r';
2264
2265                 if (ch == '\r') {
2266                         memcpy (&buf[buflen], nl, nllen);
2267                         buflen += nllen;
2268                         buf[buflen] = '\0';
2269
2270                         if (client_write(buf, buflen) == -1)
2271                         {
2272                                 struct CitContext *CCC = CC;
2273                                 MSGM_syslog(LOG_ERR, "DumpFormatFixed(): aborting due to write failure.\n");
2274                                 return;
2275                         }
2276                         *buf = '\0';
2277                         buflen = 0;
2278                         xlline = 0;
2279                 } else {
2280                         buf[buflen] = ch;
2281                         buflen++;
2282                 }
2283         }
2284         buf[buflen] = '\0';
2285         if (!IsEmptyStr(buf))
2286                 cprintf("%s%s", buf, nl);
2287 }
2288
2289 /*
2290  * Get a message off disk.  (returns om_* values found in msgbase.h)
2291  */
2292 int CtdlOutputPreLoadedMsg(
2293                 struct CtdlMessage *TheMessage,
2294                 int mode,               /* how would you like that message? */
2295                 int headers_only,       /* eschew the message body? */
2296                 int do_proto,           /* do Citadel protocol responses? */
2297                 int crlf,               /* Use CRLF newlines instead of LF? */
2298                 int flags               /* should the bessage be exported clean? */
2299 ) {
2300         struct CitContext *CCC = CC;
2301         int i;
2302         char *mptr = NULL;
2303         const char *nl; /* newline string */
2304         struct ma_info ma;
2305
2306         /* Buffers needed for RFC822 translation.  These are all filled
2307          * using functions that are bounds-checked, and therefore we can
2308          * make them substantially smaller than SIZ.
2309          */
2310         char suser[100];
2311         char luser[100];
2312         char fuser[100];
2313         char snode[100];
2314         char mid[100];
2315
2316         MSG_syslog(LOG_DEBUG, "CtdlOutputPreLoadedMsg(TheMessage=%s, %d, %d, %d, %d\n",
2317                    ((TheMessage == NULL) ? "NULL" : "not null"),
2318                    mode, headers_only, do_proto, crlf);
2319
2320         strcpy(mid, "unknown");
2321         nl = (crlf ? "\r\n" : "\n");
2322
2323         if (!is_valid_message(TheMessage)) {
2324                 MSGM_syslog(LOG_ERR,
2325                             "ERROR: invalid preloaded message for output\n");
2326                 cit_backtrace ();
2327                 return(om_no_such_msg);
2328         }
2329
2330         /* Suppress envelope recipients if required to avoid disclosing BCC addresses.
2331          * Pad it with spaces in order to avoid changing the RFC822 length of the message.
2332          */
2333         if ( (flags & SUPPRESS_ENV_TO) && (TheMessage->cm_fields['V'] != NULL) ) {
2334                 memset(TheMessage->cm_fields['V'], ' ', strlen(TheMessage->cm_fields['V']));
2335         }
2336                 
2337         /* Are we downloading a MIME component? */
2338         if (mode == MT_DOWNLOAD) {
2339                 if (TheMessage->cm_format_type != FMT_RFC822) {
2340                         if (do_proto)
2341                                 cprintf("%d This is not a MIME message.\n",
2342                                 ERROR + ILLEGAL_VALUE);
2343                 } else if (CCC->download_fp != NULL) {
2344                         if (do_proto) cprintf(
2345                                 "%d You already have a download open.\n",
2346                                 ERROR + RESOURCE_BUSY);
2347                 } else {
2348                         /* Parse the message text component */
2349                         mptr = TheMessage->cm_fields['M'];
2350                         mime_parser(mptr, NULL, *mime_download, NULL, NULL, NULL, 0);
2351                         /* If there's no file open by this time, the requested
2352                          * section wasn't found, so print an error
2353                          */
2354                         if (CCC->download_fp == NULL) {
2355                                 if (do_proto) cprintf(
2356                                         "%d Section %s not found.\n",
2357                                         ERROR + FILE_NOT_FOUND,
2358                                         CCC->download_desired_section);
2359                         }
2360                 }
2361                 return((CCC->download_fp != NULL) ? om_ok : om_mime_error);
2362         }
2363
2364         /* MT_SPEW_SECTION is like MT_DOWNLOAD except it outputs the whole MIME part
2365          * in a single server operation instead of opening a download file.
2366          */
2367         if (mode == MT_SPEW_SECTION) {
2368                 if (TheMessage->cm_format_type != FMT_RFC822) {
2369                         if (do_proto)
2370                                 cprintf("%d This is not a MIME message.\n",
2371                                 ERROR + ILLEGAL_VALUE);
2372                 } else {
2373                         /* Parse the message text component */
2374                         int found_it = 0;
2375
2376                         mptr = TheMessage->cm_fields['M'];
2377                         mime_parser(mptr, NULL, *mime_spew_section, NULL, NULL, (void *)&found_it, 0);
2378                         /* If section wasn't found, print an error
2379                          */
2380                         if (!found_it) {
2381                                 if (do_proto) cprintf(
2382                                         "%d Section %s not found.\n",
2383                                         ERROR + FILE_NOT_FOUND,
2384                                         CCC->download_desired_section);
2385                         }
2386                 }
2387                 return((CCC->download_fp != NULL) ? om_ok : om_mime_error);
2388         }
2389
2390         /* now for the user-mode message reading loops */
2391         if (do_proto) cprintf("%d msg:\n", LISTING_FOLLOWS);
2392
2393         /* Does the caller want to skip the headers? */
2394         if (headers_only == HEADERS_NONE) goto START_TEXT;
2395
2396         /* Tell the client which format type we're using. */
2397         if ( (mode == MT_CITADEL) && (do_proto) ) {
2398                 cprintf("type=%d\n", TheMessage->cm_format_type);
2399         }
2400
2401         /* nhdr=yes means that we're only displaying headers, no body */
2402         if ( (TheMessage->cm_anon_type == MES_ANONONLY)
2403            && ((mode == MT_CITADEL) || (mode == MT_MIME))
2404            && (do_proto)
2405            ) {
2406                 cprintf("nhdr=yes\n");
2407         }
2408
2409         if ((mode == MT_CITADEL) || (mode == MT_MIME)) 
2410                 OutputCtdlMsgHeaders(TheMessage, do_proto);
2411
2412
2413         /* begin header processing loop for RFC822 transfer format */
2414         strcpy(suser, "");
2415         strcpy(luser, "");
2416         strcpy(fuser, "");
2417         strcpy(snode, NODENAME);
2418         if (mode == MT_RFC822) 
2419                 OutputRFC822MsgHeaders(
2420                         TheMessage,
2421                         flags,
2422                         nl,
2423                         mid, sizeof(mid),
2424                         suser, sizeof(suser),
2425                         luser, sizeof(luser),
2426                         fuser, sizeof(fuser),
2427                         snode, sizeof(snode)
2428                         );
2429
2430
2431         for (i=0; !IsEmptyStr(&suser[i]); ++i) {
2432                 suser[i] = tolower(suser[i]);
2433                 if (!isalnum(suser[i])) suser[i]='_';
2434         }
2435
2436         if (mode == MT_RFC822) {
2437                 if (!strcasecmp(snode, NODENAME)) {
2438                         safestrncpy(snode, FQDN, sizeof snode);
2439                 }
2440
2441                 /* Construct a fun message id */
2442                 cprintf("Message-ID: <%s", mid);/// todo: this possibly breaks threadding mails.
2443                 if (strchr(mid, '@')==NULL) {
2444                         cprintf("@%s", snode);
2445                 }
2446                 cprintf(">%s", nl);
2447
2448                 if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONONLY)) {
2449                         cprintf("From: \"----\" <x@x.org>%s", nl);
2450                 }
2451                 else if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONOPT)) {
2452                         cprintf("From: \"anonymous\" <x@x.org>%s", nl);
2453                 }
2454                 else if (!IsEmptyStr(fuser)) {
2455                         cprintf("From: \"%s\" <%s>%s", luser, fuser, nl);
2456                 }
2457                 else {
2458                         cprintf("From: \"%s\" <%s@%s>%s", luser, suser, snode, nl);
2459                 }
2460
2461                 /* Blank line signifying RFC822 end-of-headers */
2462                 if (TheMessage->cm_format_type != FMT_RFC822) {
2463                         cprintf("%s", nl);
2464                 }
2465         }
2466
2467         /* end header processing loop ... at this point, we're in the text */
2468 START_TEXT:
2469         if (headers_only == HEADERS_FAST) goto DONE;
2470
2471         /* Tell the client about the MIME parts in this message */
2472         if (TheMessage->cm_format_type == FMT_RFC822) {
2473                 if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
2474                         mptr = TheMessage->cm_fields['M'];
2475                         memset(&ma, 0, sizeof(struct ma_info));
2476                         mime_parser(mptr, NULL,
2477                                 (do_proto ? *list_this_part : NULL),
2478                                 (do_proto ? *list_this_pref : NULL),
2479                                 (do_proto ? *list_this_suff : NULL),
2480                                 (void *)&ma, 1);
2481                 }
2482                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
2483                         Dump_RFC822HeadersBody(
2484                                 TheMessage,
2485                                 headers_only,
2486                                 flags,
2487                                 nl);
2488                         goto DONE;
2489                 }
2490         }
2491
2492         if (headers_only == HEADERS_ONLY) {
2493                 goto DONE;
2494         }
2495
2496         /* signify start of msg text */
2497         if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
2498                 if (do_proto) cprintf("text\n");
2499         }
2500
2501         if (TheMessage->cm_format_type == FMT_FIXED) 
2502                 DumpFormatFixed(
2503                         TheMessage,
2504                         mode,           /* how would you like that message? */
2505                         nl);
2506
2507         /* If the message on disk is format 0 (Citadel vari-format), we
2508          * output using the formatter at 80 columns.  This is the final output
2509          * form if the transfer format is RFC822, but if the transfer format
2510          * is Citadel proprietary, it'll still work, because the indentation
2511          * for new paragraphs is correct and the client will reformat the
2512          * message to the reader's screen width.
2513          */
2514         if (TheMessage->cm_format_type == FMT_CITADEL) {
2515                 mptr = TheMessage->cm_fields['M'];
2516
2517                 if (mode == MT_MIME) {
2518                         cprintf("Content-type: text/x-citadel-variformat\n\n");
2519                 }
2520                 memfmout(mptr, nl);
2521         }
2522
2523         /* If the message on disk is format 4 (MIME), we've gotta hand it
2524          * off to the MIME parser.  The client has already been told that
2525          * this message is format 1 (fixed format), so the callback function
2526          * we use will display those parts as-is.
2527          */
2528         if (TheMessage->cm_format_type == FMT_RFC822) {
2529                 memset(&ma, 0, sizeof(struct ma_info));
2530
2531                 if (mode == MT_MIME) {
2532                         ma.use_fo_hooks = 0;
2533                         strcpy(ma.chosen_part, "1");
2534                         ma.chosen_pref = 9999;
2535                         ma.dont_decode = CCC->msg4_dont_decode;
2536                         mime_parser(mptr, NULL,
2537                                 *choose_preferred, *fixed_output_pre,
2538                                 *fixed_output_post, (void *)&ma, 1);
2539                         mime_parser(mptr, NULL,
2540                                 *output_preferred, NULL, NULL, (void *)&ma, 1);
2541                 }
2542                 else {
2543                         ma.use_fo_hooks = 1;
2544                         mime_parser(mptr, NULL,
2545                                 *fixed_output, *fixed_output_pre,
2546                                 *fixed_output_post, (void *)&ma, 0);
2547                 }
2548
2549         }
2550
2551 DONE:   /* now we're done */
2552         if (do_proto) cprintf("000\n");
2553         return(om_ok);
2554 }
2555
2556
2557 /*
2558  * display a message (mode 0 - Citadel proprietary)
2559  */
2560 void cmd_msg0(char *cmdbuf)
2561 {
2562         long msgid;
2563         int headers_only = HEADERS_ALL;
2564
2565         msgid = extract_long(cmdbuf, 0);
2566         headers_only = extract_int(cmdbuf, 1);
2567
2568         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0, NULL, 0, NULL, NULL);
2569         return;
2570 }
2571
2572
2573 /*
2574  * display a message (mode 2 - RFC822)
2575  */
2576 void cmd_msg2(char *cmdbuf)
2577 {
2578         long msgid;
2579         int headers_only = HEADERS_ALL;
2580
2581         msgid = extract_long(cmdbuf, 0);
2582         headers_only = extract_int(cmdbuf, 1);
2583
2584         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1, NULL, 0, NULL, NULL);
2585 }
2586
2587
2588
2589 /* 
2590  * display a message (mode 3 - IGnet raw format - internal programs only)
2591  */
2592 void cmd_msg3(char *cmdbuf)
2593 {
2594         long msgnum;
2595         struct CtdlMessage *msg = NULL;
2596         struct ser_ret smr;
2597
2598         if (CC->internal_pgm == 0) {
2599                 cprintf("%d This command is for internal programs only.\n",
2600                         ERROR + HIGHER_ACCESS_REQUIRED);
2601                 return;
2602         }
2603
2604         msgnum = extract_long(cmdbuf, 0);
2605         msg = CtdlFetchMessage(msgnum, 1);
2606         if (msg == NULL) {
2607                 cprintf("%d Message %ld not found.\n", 
2608                         ERROR + MESSAGE_NOT_FOUND, msgnum);
2609                 return;
2610         }
2611
2612         serialize_message(&smr, msg);
2613         CtdlFreeMessage(msg);
2614
2615         if (smr.len == 0) {
2616                 cprintf("%d Unable to serialize message\n",
2617                         ERROR + INTERNAL_ERROR);
2618                 return;
2619         }
2620
2621         cprintf("%d %ld\n", BINARY_FOLLOWS, (long)smr.len);
2622         client_write((char *)smr.ser, (int)smr.len);
2623         free(smr.ser);
2624 }
2625
2626
2627
2628 /* 
2629  * Display a message using MIME content types
2630  */
2631 void cmd_msg4(char *cmdbuf)
2632 {
2633         long msgid;
2634         char section[64];
2635
2636         msgid = extract_long(cmdbuf, 0);
2637         extract_token(section, cmdbuf, 1, '|', sizeof section);
2638         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0, (section[0] ? section : NULL) , 0, NULL, NULL);
2639 }
2640
2641
2642
2643 /* 
2644  * Client tells us its preferred message format(s)
2645  */
2646 void cmd_msgp(char *cmdbuf)
2647 {
2648         if (!strcasecmp(cmdbuf, "dont_decode")) {
2649                 CC->msg4_dont_decode = 1;
2650                 cprintf("%d MSG4 will not pre-decode messages.\n", CIT_OK);
2651         }
2652         else {
2653                 safestrncpy(CC->preferred_formats, cmdbuf, sizeof(CC->preferred_formats));
2654                 cprintf("%d Preferred MIME formats have been set.\n", CIT_OK);
2655         }
2656 }
2657
2658
2659 /*
2660  * Open a component of a MIME message as a download file 
2661  */
2662 void cmd_opna(char *cmdbuf)
2663 {
2664         long msgid;
2665         char desired_section[128];
2666
2667         msgid = extract_long(cmdbuf, 0);
2668         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
2669         safestrncpy(CC->download_desired_section, desired_section,
2670                 sizeof CC->download_desired_section);
2671         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1, NULL, 0, NULL, NULL);
2672 }                       
2673
2674
2675 /*
2676  * Open a component of a MIME message and transmit it all at once
2677  */
2678 void cmd_dlat(char *cmdbuf)
2679 {
2680         long msgid;
2681         char desired_section[128];
2682
2683         msgid = extract_long(cmdbuf, 0);
2684         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
2685         safestrncpy(CC->download_desired_section, desired_section,
2686                 sizeof CC->download_desired_section);
2687         CtdlOutputMsg(msgid, MT_SPEW_SECTION, 0, 1, 1, NULL, 0, NULL, NULL);
2688 }
2689
2690
2691 /*
2692  * Save one or more message pointers into a specified room
2693  * (Returns 0 for success, nonzero for failure)
2694  * roomname may be NULL to use the current room
2695  *
2696  * Note that the 'supplied_msg' field may be set to NULL, in which case
2697  * the message will be fetched from disk, by number, if we need to perform
2698  * replication checks.  This adds an additional database read, so if the
2699  * caller already has the message in memory then it should be supplied.  (Obviously
2700  * this mode of operation only works if we're saving a single message.)
2701  */
2702 int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newmsgs,
2703                         int do_repl_check, struct CtdlMessage *supplied_msg, int suppress_refcount_adj
2704 ) {
2705         struct CitContext *CCC = CC;
2706         int i, j, unique;
2707         char hold_rm[ROOMNAMELEN];
2708         struct cdbdata *cdbfr;
2709         int num_msgs;
2710         long *msglist;
2711         long highest_msg = 0L;
2712
2713         long msgid = 0;
2714         struct CtdlMessage *msg = NULL;
2715
2716         long *msgs_to_be_merged = NULL;
2717         int num_msgs_to_be_merged = 0;
2718
2719         MSG_syslog(LOG_DEBUG,
2720                    "CtdlSaveMsgPointersInRoom(room=%s, num_msgs=%d, repl=%d, suppress_rca=%d)\n",
2721                    roomname, num_newmsgs, do_repl_check, suppress_refcount_adj
2722         );
2723
2724         strcpy(hold_rm, CCC->room.QRname);
2725
2726         /* Sanity checks */
2727         if (newmsgidlist == NULL) return(ERROR + INTERNAL_ERROR);
2728         if (num_newmsgs < 1) return(ERROR + INTERNAL_ERROR);
2729         if (num_newmsgs > 1) supplied_msg = NULL;
2730
2731         /* Now the regular stuff */
2732         if (CtdlGetRoomLock(&CCC->room,
2733            ((roomname != NULL) ? roomname : CCC->room.QRname) )
2734            != 0) {
2735                 MSG_syslog(LOG_ERR, "No such room <%s>\n", roomname);
2736                 return(ERROR + ROOM_NOT_FOUND);
2737         }
2738
2739
2740         msgs_to_be_merged = malloc(sizeof(long) * num_newmsgs);
2741         num_msgs_to_be_merged = 0;
2742
2743
2744         cdbfr = cdb_fetch(CDB_MSGLISTS, &CCC->room.QRnumber, sizeof(long));
2745         if (cdbfr == NULL) {
2746                 msglist = NULL;
2747                 num_msgs = 0;
2748         } else {
2749                 msglist = (long *) cdbfr->ptr;
2750                 cdbfr->ptr = NULL;      /* CtdlSaveMsgPointerInRoom() now owns this memory */
2751                 num_msgs = cdbfr->len / sizeof(long);
2752                 cdb_free(cdbfr);
2753         }
2754
2755
2756         /* Create a list of msgid's which were supplied by the caller, but do
2757          * not already exist in the target room.  It is absolutely taboo to
2758          * have more than one reference to the same message in a room.
2759          */
2760         for (i=0; i<num_newmsgs; ++i) {
2761                 unique = 1;
2762                 if (num_msgs > 0) for (j=0; j<num_msgs; ++j) {
2763                         if (msglist[j] == newmsgidlist[i]) {
2764                                 unique = 0;
2765                         }
2766                 }
2767                 if (unique) {
2768                         msgs_to_be_merged[num_msgs_to_be_merged++] = newmsgidlist[i];
2769                 }
2770         }
2771
2772         MSG_syslog(LOG_DEBUG, "%d unique messages to be merged\n", num_msgs_to_be_merged);
2773
2774         /*
2775          * Now merge the new messages
2776          */
2777         msglist = realloc(msglist, (sizeof(long) * (num_msgs + num_msgs_to_be_merged)) );
2778         if (msglist == NULL) {
2779                 MSGM_syslog(LOG_ALERT, "ERROR: can't realloc message list!\n");
2780                 free(msgs_to_be_merged);
2781                 return (ERROR + INTERNAL_ERROR);
2782         }
2783         memcpy(&msglist[num_msgs], msgs_to_be_merged, (sizeof(long) * num_msgs_to_be_merged) );
2784         num_msgs += num_msgs_to_be_merged;
2785
2786         /* Sort the message list, so all the msgid's are in order */
2787         num_msgs = sort_msglist(msglist, num_msgs);
2788
2789         /* Determine the highest message number */
2790         highest_msg = msglist[num_msgs - 1];
2791
2792         /* Write it back to disk. */
2793         cdb_store(CDB_MSGLISTS, &CCC->room.QRnumber, (int)sizeof(long),
2794                   msglist, (int)(num_msgs * sizeof(long)));
2795
2796         /* Free up the memory we used. */
2797         free(msglist);
2798
2799         /* Update the highest-message pointer and unlock the room. */
2800         CCC->room.QRhighest = highest_msg;
2801         CtdlPutRoomLock(&CCC->room);
2802
2803         /* Perform replication checks if necessary */
2804         if ( (DoesThisRoomNeedEuidIndexing(&CCC->room)) && (do_repl_check) ) {
2805                 MSGM_syslog(LOG_DEBUG, "CtdlSaveMsgPointerInRoom() doing repl checks\n");
2806
2807                 for (i=0; i<num_msgs_to_be_merged; ++i) {
2808                         msgid = msgs_to_be_merged[i];
2809         
2810                         if (supplied_msg != NULL) {
2811                                 msg = supplied_msg;
2812                         }
2813                         else {
2814                                 msg = CtdlFetchMessage(msgid, 0);
2815                         }
2816         
2817                         if (msg != NULL) {
2818                                 ReplicationChecks(msg);
2819                 
2820                                 /* If the message has an Exclusive ID, index that... */
2821                                 if (msg->cm_fields['E'] != NULL) {
2822                                         index_message_by_euid(msg->cm_fields['E'], &CCC->room, msgid);
2823                                 }
2824
2825                                 /* Free up the memory we may have allocated */
2826                                 if (msg != supplied_msg) {
2827                                         CtdlFreeMessage(msg);
2828                                 }
2829                         }
2830         
2831                 }
2832         }
2833
2834         else {
2835                 MSGM_syslog(LOG_DEBUG, "CtdlSaveMsgPointerInRoom() skips repl checks\n");
2836         }
2837
2838         /* Submit this room for processing by hooks */
2839         PerformRoomHooks(&CCC->room);
2840
2841         /* Go back to the room we were in before we wandered here... */
2842         CtdlGetRoom(&CCC->room, hold_rm);
2843
2844         /* Bump the reference count for all messages which were merged */
2845         if (!suppress_refcount_adj) {
2846                 AdjRefCountList(msgs_to_be_merged, num_msgs_to_be_merged, +1);
2847         }
2848
2849         /* Free up memory... */
2850         if (msgs_to_be_merged != NULL) {
2851                 free(msgs_to_be_merged);
2852         }
2853
2854         /* Return success. */
2855         return (0);
2856 }
2857
2858
2859 /*
2860  * This is the same as CtdlSaveMsgPointersInRoom() but it only accepts
2861  * a single message.
2862  */
2863 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid,
2864                              int do_repl_check, struct CtdlMessage *supplied_msg)
2865 {
2866         return CtdlSaveMsgPointersInRoom(roomname, &msgid, 1, do_repl_check, supplied_msg, 0);
2867 }
2868
2869
2870
2871
2872 /*
2873  * Message base operation to save a new message to the message store
2874  * (returns new message number)
2875  *
2876  * This is the back end for CtdlSubmitMsg() and should not be directly
2877  * called by server-side modules.
2878  *
2879  */
2880 long send_message(struct CtdlMessage *msg) {
2881         struct CitContext *CCC = CC;
2882         long newmsgid;
2883         long retval;
2884         char msgidbuf[256];
2885         struct ser_ret smr;
2886         int is_bigmsg = 0;
2887         char *holdM = NULL;
2888
2889         /* Get a new message number */
2890         newmsgid = get_new_message_number();
2891         snprintf(msgidbuf, sizeof msgidbuf, "%08lX-%08lX@%s",
2892                  (long unsigned int) time(NULL),
2893                  (long unsigned int) newmsgid,
2894                  config.c_fqdn
2895                 );
2896
2897         /* Generate an ID if we don't have one already */
2898         if (msg->cm_fields['I']==NULL) {
2899                 msg->cm_fields['I'] = strdup(msgidbuf);
2900         }
2901
2902         /* If the message is big, set its body aside for storage elsewhere */
2903         if (msg->cm_fields['M'] != NULL) {
2904                 if (strlen(msg->cm_fields['M']) > BIGMSG) {
2905                         is_bigmsg = 1;
2906                         holdM = msg->cm_fields['M'];
2907                         msg->cm_fields['M'] = NULL;
2908                 }
2909         }
2910
2911         /* Serialize our data structure for storage in the database */  
2912         serialize_message(&smr, msg);
2913
2914         if (is_bigmsg) {
2915                 msg->cm_fields['M'] = holdM;
2916         }
2917
2918         if (smr.len == 0) {
2919                 cprintf("%d Unable to serialize message\n",
2920                         ERROR + INTERNAL_ERROR);
2921                 return (-1L);
2922         }
2923
2924         /* Write our little bundle of joy into the message base */
2925         if (cdb_store(CDB_MSGMAIN, &newmsgid, (int)sizeof(long),
2926                       smr.ser, smr.len) < 0) {
2927                 MSGM_syslog(LOG_ERR, "Can't store message\n");
2928                 retval = 0L;
2929         } else {
2930                 if (is_bigmsg) {
2931                         cdb_store(CDB_BIGMSGS,
2932                                   &newmsgid,
2933                                   (int)sizeof(long),
2934                                   holdM,
2935                                   (strlen(holdM) + 1)
2936                                 );
2937                 }
2938                 retval = newmsgid;
2939         }
2940
2941         /* Free the memory we used for the serialized message */
2942         free(smr.ser);
2943
2944         /* Return the *local* message ID to the caller
2945          * (even if we're storing an incoming network message)
2946          */
2947         return(retval);
2948 }
2949
2950
2951
2952 /*
2953  * Serialize a struct CtdlMessage into the format used on disk and network.
2954  * 
2955  * This function loads up a "struct ser_ret" (defined in server.h) which
2956  * contains the length of the serialized message and a pointer to the
2957  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
2958  */
2959 void serialize_message(struct ser_ret *ret,             /* return values */
2960                        struct CtdlMessage *msg) /* unserialized msg */
2961 {
2962         struct CitContext *CCC = CC;
2963         size_t wlen, fieldlen;
2964         int i;
2965         static char *forder = FORDER;
2966
2967         /*
2968          * Check for valid message format
2969          */
2970         if (is_valid_message(msg) == 0) {
2971                 MSGM_syslog(LOG_ERR, "serialize_message() aborting due to invalid message\n");
2972                 ret->len = 0;
2973                 ret->ser = NULL;
2974                 return;
2975         }
2976
2977         ret->len = 3;
2978         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
2979                                      ret->len = ret->len +
2980                                              strlen(msg->cm_fields[(int)forder[i]]) + 2;
2981
2982         ret->ser = malloc(ret->len);
2983         if (ret->ser == NULL) {
2984                 MSG_syslog(LOG_ERR, "serialize_message() malloc(%ld) failed: %s\n",
2985                            (long)ret->len, strerror(errno));
2986                 ret->len = 0;
2987                 ret->ser = NULL;
2988                 return;
2989         }
2990
2991         ret->ser[0] = 0xFF;
2992         ret->ser[1] = msg->cm_anon_type;
2993         ret->ser[2] = msg->cm_format_type;
2994         wlen = 3;
2995
2996         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
2997                         fieldlen = strlen(msg->cm_fields[(int)forder[i]]);
2998                         ret->ser[wlen++] = (char)forder[i];
2999                         safestrncpy((char *)&ret->ser[wlen], msg->cm_fields[(int)forder[i]], fieldlen+1);
3000                         wlen = wlen + fieldlen + 1;
3001                 }
3002         if (ret->len != wlen) {
3003                 MSG_syslog(LOG_ERR, "ERROR: len=%ld wlen=%ld\n",
3004                            (long)ret->len, (long)wlen);
3005         }
3006
3007         return;
3008 }
3009
3010
3011 /*
3012  * Check to see if any messages already exist in the current room which
3013  * carry the same Exclusive ID as this one.  If any are found, delete them.
3014  */
3015 void ReplicationChecks(struct CtdlMessage *msg) {
3016         struct CitContext *CCC = CC;
3017         long old_msgnum = (-1L);
3018
3019         if (DoesThisRoomNeedEuidIndexing(&CCC->room) == 0) return;
3020
3021         MSG_syslog(LOG_DEBUG, "Performing replication checks in <%s>\n",
3022                    CCC->room.QRname);
3023
3024         /* No exclusive id?  Don't do anything. */
3025         if (msg == NULL) return;
3026         if (msg->cm_fields['E'] == NULL) return;
3027         if (IsEmptyStr(msg->cm_fields['E'])) return;
3028         /*MSG_syslog(LOG_DEBUG, "Exclusive ID: <%s> for room <%s>\n",
3029           msg->cm_fields['E'], CCC->room.QRname);*/
3030
3031         old_msgnum = CtdlLocateMessageByEuid(msg->cm_fields['E'], &CCC->room);
3032         if (old_msgnum > 0L) {
3033                 MSG_syslog(LOG_DEBUG, "ReplicationChecks() replacing message %ld\n", old_msgnum);
3034                 CtdlDeleteMessages(CCC->room.QRname, &old_msgnum, 1, "");
3035         }
3036 }
3037
3038
3039
3040 /*
3041  * Save a message to disk and submit it into the delivery system.
3042  */
3043 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
3044                    struct recptypes *recps,     /* recipients (if mail) */
3045                    const char *force,           /* force a particular room? */
3046                    int flags                    /* should the message be exported clean? */
3047         )
3048 {
3049         char submit_filename[128];
3050         char generated_timestamp[32];
3051         char hold_rm[ROOMNAMELEN];
3052         char actual_rm[ROOMNAMELEN];
3053         char force_room[ROOMNAMELEN];
3054         char content_type[SIZ];                 /* We have to learn this */
3055         char recipient[SIZ];
3056         const char *room;
3057         long newmsgid;
3058         const char *mptr = NULL;
3059         struct ctdluser userbuf;
3060         int a, i;
3061         struct MetaData smi;
3062         FILE *network_fp = NULL;
3063         static int seqnum = 1;
3064         struct CtdlMessage *imsg = NULL;
3065         char *instr = NULL;
3066         size_t instr_alloc = 0;
3067         struct ser_ret smr;
3068         char *hold_R, *hold_D;
3069         char *collected_addresses = NULL;
3070         struct addresses_to_be_filed *aptr = NULL;
3071         StrBuf *saved_rfc822_version = NULL;
3072         int qualified_for_journaling = 0;
3073         CitContext *CCC = MyContext();
3074         char bounce_to[1024] = "";
3075         int rv = 0;
3076
3077         MSGM_syslog(LOG_DEBUG, "CtdlSubmitMsg() called\n");
3078         if (is_valid_message(msg) == 0) return(-1);     /* self check */
3079
3080         /* If this message has no timestamp, we take the liberty of
3081          * giving it one, right now.
3082          */
3083         if (msg->cm_fields['T'] == NULL) {
3084                 snprintf(generated_timestamp, sizeof generated_timestamp, "%ld", (long)time(NULL));
3085                 msg->cm_fields['T'] = strdup(generated_timestamp);
3086         }
3087
3088         /* If this message has no path, we generate one.
3089          */
3090         if (msg->cm_fields['P'] == NULL) {
3091                 if (msg->cm_fields['A'] != NULL) {
3092                         msg->cm_fields['P'] = strdup(msg->cm_fields['A']);
3093                         for (a=0; !IsEmptyStr(&msg->cm_fields['P'][a]); ++a) {
3094                                 if (isspace(msg->cm_fields['P'][a])) {
3095                                         msg->cm_fields['P'][a] = ' ';
3096                                 }
3097                         }
3098                 }
3099                 else {
3100                         msg->cm_fields['P'] = strdup("unknown");
3101                 }
3102         }
3103
3104         if (force == NULL) {
3105                 strcpy(force_room, "");
3106         }
3107         else {
3108                 strcpy(force_room, force);
3109         }
3110
3111         /* Learn about what's inside, because it's what's inside that counts */
3112         if (msg->cm_fields['M'] == NULL) {
3113                 MSGM_syslog(LOG_ERR, "ERROR: attempt to save message with NULL body\n");
3114                 return(-2);
3115         }
3116
3117         switch (msg->cm_format_type) {
3118         case 0:
3119                 strcpy(content_type, "text/x-citadel-variformat");
3120                 break;
3121         case 1:
3122                 strcpy(content_type, "text/plain");
3123                 break;
3124         case 4:
3125                 strcpy(content_type, "text/plain");
3126                 mptr = bmstrcasestr(msg->cm_fields['M'], "Content-type:");
3127                 if (mptr != NULL) {
3128                         char *aptr;
3129                         safestrncpy(content_type, &mptr[13], sizeof content_type);
3130                         striplt(content_type);
3131                         aptr = content_type;
3132                         while (!IsEmptyStr(aptr)) {
3133                                 if ((*aptr == ';')
3134                                     || (*aptr == ' ')
3135                                     || (*aptr == 13)
3136                                     || (*aptr == 10)) {
3137                                         *aptr = 0;
3138                                 }
3139                                 else aptr++;
3140                         }
3141                 }
3142         }
3143
3144         /* Goto the correct room */
3145         room = (recps) ? CCC->room.QRname : SENTITEMS;
3146         MSG_syslog(LOG_DEBUG, "Selected room %s\n", room);
3147         strcpy(hold_rm, CCC->room.QRname);
3148         strcpy(actual_rm, CCC->room.QRname);
3149         if (recps != NULL) {
3150                 strcpy(actual_rm, SENTITEMS);
3151         }
3152
3153         /* If the user is a twit, move to the twit room for posting */
3154         if (TWITDETECT) {
3155                 if (CCC->user.axlevel == AxProbU) {
3156                         strcpy(hold_rm, actual_rm);
3157                         strcpy(actual_rm, config.c_twitroom);
3158                         MSGM_syslog(LOG_DEBUG, "Diverting to twit room\n");
3159                 }
3160         }
3161
3162         /* ...or if this message is destined for Aide> then go there. */
3163         if (!IsEmptyStr(force_room)) {
3164                 strcpy(actual_rm, force_room);
3165         }
3166
3167         MSG_syslog(LOG_INFO, "Final selection: %s (%s)\n", actual_rm, room);
3168         if (strcasecmp(actual_rm, CCC->room.QRname)) {
3169                 /* CtdlGetRoom(&CCC->room, actual_rm); */
3170                 CtdlUserGoto(actual_rm, 0, 1, NULL, NULL);
3171         }
3172
3173         /*
3174          * If this message has no O (room) field, generate one.
3175          */
3176         if (msg->cm_fields['O'] == NULL) {
3177                 msg->cm_fields['O'] = strdup(CCC->room.QRname);
3178         }
3179
3180         /* Perform "before save" hooks (aborting if any return nonzero) */
3181         MSGM_syslog(LOG_DEBUG, "Performing before-save hooks\n");
3182         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-3);
3183
3184         /*
3185          * If this message has an Exclusive ID, and the room is replication
3186          * checking enabled, then do replication checks.
3187          */
3188         if (DoesThisRoomNeedEuidIndexing(&CCC->room)) {
3189                 ReplicationChecks(msg);
3190         }
3191
3192         /* Save it to disk */
3193         MSGM_syslog(LOG_DEBUG, "Saving to disk\n");
3194         newmsgid = send_message(msg);
3195         if (newmsgid <= 0L) return(-5);
3196
3197         /* Write a supplemental message info record.  This doesn't have to
3198          * be a critical section because nobody else knows about this message
3199          * yet.
3200          */
3201         MSGM_syslog(LOG_DEBUG, "Creating MetaData record\n");
3202         memset(&smi, 0, sizeof(struct MetaData));
3203         smi.meta_msgnum = newmsgid;
3204         smi.meta_refcount = 0;
3205         safestrncpy(smi.meta_content_type, content_type,
3206                     sizeof smi.meta_content_type);
3207
3208         /*
3209          * Measure how big this message will be when rendered as RFC822.
3210          * We do this for two reasons:
3211          * 1. We need the RFC822 length for the new metadata record, so the
3212          *    POP and IMAP services don't have to calculate message lengths
3213          *    while the user is waiting (multiplied by potentially hundreds
3214          *    or thousands of messages).
3215          * 2. If journaling is enabled, we will need an RFC822 version of the
3216          *    message to attach to the journalized copy.
3217          */
3218         if (CCC->redirect_buffer != NULL) {
3219                 MSGM_syslog(LOG_ALERT, "CCC->redirect_buffer is not NULL during message submission!\n");
3220                 abort();
3221         }
3222         CCC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
3223         CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ALL, 0, 1, QP_EADDR);
3224         smi.meta_rfc822_length = StrLength(CCC->redirect_buffer);
3225         saved_rfc822_version = CCC->redirect_buffer;
3226         CCC->redirect_buffer = NULL;
3227
3228         PutMetaData(&smi);
3229
3230         /* Now figure out where to store the pointers */
3231         MSGM_syslog(LOG_DEBUG, "Storing pointers\n");
3232
3233         /* If this is being done by the networker delivering a private
3234          * message, we want to BYPASS saving the sender's copy (because there
3235          * is no local sender; it would otherwise go to the Trashcan).
3236          */
3237         if ((!CCC->internal_pgm) || (recps == NULL)) {
3238                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 1, msg) != 0) {
3239                         MSGM_syslog(LOG_ERR, "ERROR saving message pointer!\n");
3240                         CtdlSaveMsgPointerInRoom(config.c_aideroom, newmsgid, 0, msg);
3241                 }
3242         }
3243
3244         /* For internet mail, drop a copy in the outbound queue room */
3245         if ((recps != NULL) && (recps->num_internet > 0)) {
3246                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0, msg);
3247         }
3248
3249         /* If other rooms are specified, drop them there too. */
3250         if ((recps != NULL) && (recps->num_room > 0))
3251                 for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
3252                         extract_token(recipient, recps->recp_room, i,
3253                                       '|', sizeof recipient);
3254                         MSG_syslog(LOG_DEBUG, "Delivering to room <%s>\n", recipient);///// xxxx
3255                         CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0, msg);
3256                 }
3257
3258         /* Bump this user's messages posted counter. */
3259         MSGM_syslog(LOG_DEBUG, "Updating user\n");
3260         CtdlGetUserLock(&CCC->user, CCC->curr_user);
3261         CCC->user.posted = CCC->user.posted + 1;
3262         CtdlPutUserLock(&CCC->user);
3263
3264         /* Decide where bounces need to be delivered */
3265         if ((recps != NULL) && (recps->bounce_to != NULL)) {
3266                 safestrncpy(bounce_to, recps->bounce_to, sizeof bounce_to);
3267         }
3268         else if (CCC->logged_in) {
3269                 snprintf(bounce_to, sizeof bounce_to, "%s@%s", CCC->user.fullname, config.c_nodename);
3270         }
3271         else {
3272                 snprintf(bounce_to, sizeof bounce_to, "%s@%s", msg->cm_fields['A'], msg->cm_fields['N']);
3273         }
3274
3275         /* If this is private, local mail, make a copy in the
3276          * recipient's mailbox and bump the reference count.
3277          */
3278         if ((recps != NULL) && (recps->num_local > 0))
3279                 for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
3280                         extract_token(recipient, recps->recp_local, i,
3281                                       '|', sizeof recipient);
3282                         MSG_syslog(LOG_DEBUG, "Delivering private local mail to <%s>\n",
3283                                recipient);
3284                         if (CtdlGetUser(&userbuf, recipient) == 0) {
3285                                 CtdlMailboxName(actual_rm, sizeof actual_rm, &userbuf, MAILROOM);
3286                                 CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0, msg);
3287                                 CtdlBumpNewMailCounter(userbuf.usernum);
3288                                 if (!IsEmptyStr(config.c_funambol_host) || !IsEmptyStr(config.c_pager_program)) {
3289                                         /* Generate a instruction message for the Funambol notification
3290                                          * server, in the same style as the SMTP queue
3291                                          */
3292                                         instr_alloc = 1024;
3293                                         instr = malloc(instr_alloc);
3294                                         snprintf(instr, instr_alloc,
3295                                                  "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
3296                                                  "bounceto|%s\n",
3297                                                  SPOOLMIME, newmsgid, (long)time(NULL),
3298                                                  bounce_to
3299                                                 );
3300                                 
3301                                         imsg = malloc(sizeof(struct CtdlMessage));
3302                                         memset(imsg, 0, sizeof(struct CtdlMessage));
3303                                         imsg->cm_magic = CTDLMESSAGE_MAGIC;
3304                                         imsg->cm_anon_type = MES_NORMAL;
3305                                         imsg->cm_format_type = FMT_RFC822;
3306                                         imsg->cm_fields['U'] = strdup("QMSG");
3307                                         imsg->cm_fields['A'] = strdup("Citadel");
3308                                         imsg->cm_fields['J'] = strdup("do not journal");
3309                                         imsg->cm_fields['M'] = instr;   /* imsg owns this memory now */
3310                                         imsg->cm_fields['2'] = strdup(recipient);
3311                                         CtdlSubmitMsg(imsg, NULL, FNBL_QUEUE_ROOM, 0);
3312                                         CtdlFreeMessage(imsg);
3313                                 }
3314                         }
3315                         else {
3316                                 MSG_syslog(LOG_DEBUG, "No user <%s>\n", recipient);
3317                                 CtdlSaveMsgPointerInRoom(config.c_aideroom, newmsgid, 0, msg);
3318                         }
3319                 }
3320
3321         /* Perform "after save" hooks */
3322         MSGM_syslog(LOG_DEBUG, "Performing after-save hooks\n");
3323         if (msg->cm_fields['3'] != NULL) free(msg->cm_fields['3']);
3324         msg->cm_fields['3'] = malloc(20);
3325         snprintf(msg->cm_fields['3'], 20, "%ld", newmsgid);
3326         PerformMessageHooks(msg, EVT_AFTERSAVE);
3327         free(msg->cm_fields['3']);
3328         msg->cm_fields['3'] = NULL;
3329
3330         /* For IGnet mail, we have to save a new copy into the spooler for
3331          * each recipient, with the R and D fields set to the recipient and
3332          * destination-node.  This has two ugly side effects: all other
3333          * recipients end up being unlisted in this recipient's copy of the
3334          * message, and it has to deliver multiple messages to the same
3335          * node.  We'll revisit this again in a year or so when everyone has
3336          * a network spool receiver that can handle the new style messages.
3337          */
3338         if ((recps != NULL) && (recps->num_ignet > 0))
3339                 for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
3340                         extract_token(recipient, recps->recp_ignet, i,
3341                                       '|', sizeof recipient);
3342
3343                         hold_R = msg->cm_fields['R'];
3344                         hold_D = msg->cm_fields['D'];
3345                         msg->cm_fields['R'] = malloc(SIZ);
3346                         msg->cm_fields['D'] = malloc(128);
3347                         extract_token(msg->cm_fields['R'], recipient, 0, '@', SIZ);
3348                         extract_token(msg->cm_fields['D'], recipient, 1, '@', 128);
3349                 
3350                         serialize_message(&smr, msg);
3351                         if (smr.len > 0) {
3352                                 snprintf(submit_filename, sizeof submit_filename,
3353                                          "%s/netmail.%04lx.%04x.%04x",
3354                                          ctdl_netin_dir,
3355                                          (long) getpid(), CCC->cs_pid, ++seqnum);
3356                                 network_fp = fopen(submit_filename, "wb+");
3357                                 if (network_fp != NULL) {
3358                                         rv = fwrite(smr.ser, smr.len, 1, network_fp);
3359                                         if (rv == -1) {
3360                                                 MSG_syslog(LOG_EMERG, "CtdlSubmitMsg(): Couldn't write network spool file: %s\n",
3361                                                            strerror(errno));
3362                                         }
3363                                         fclose(network_fp);
3364                                 }
3365                                 free(smr.ser);
3366                         }
3367
3368                         free(msg->cm_fields['R']);
3369                         free(msg->cm_fields['D']);
3370                         msg->cm_fields['R'] = hold_R;
3371                         msg->cm_fields['D'] = hold_D;
3372                 }
3373
3374         /* Go back to the room we started from */
3375         MSG_syslog(LOG_DEBUG, "Returning to original room %s\n", hold_rm);
3376         if (strcasecmp(hold_rm, CCC->room.QRname))
3377                 CtdlUserGoto(hold_rm, 0, 1, NULL, NULL);
3378
3379         /* For internet mail, generate delivery instructions.
3380          * Yes, this is recursive.  Deal with it.  Infinite recursion does
3381          * not happen because the delivery instructions message does not
3382          * contain a recipient.
3383          */
3384         if ((recps != NULL) && (recps->num_internet > 0)) {
3385                 StrBuf *SpoolMsg = NewStrBuf();
3386                 long nTokens;
3387
3388                 MSGM_syslog(LOG_DEBUG, "Generating delivery instructions\n");
3389
3390                 StrBufPrintf(SpoolMsg,
3391                              "Content-type: "SPOOLMIME"\n"
3392                              "\n"
3393                              "msgid|%ld\n"
3394                              "submitted|%ld\n"
3395                              "bounceto|%s\n",
3396                              newmsgid,
3397                              (long)time(NULL),
3398                              bounce_to);
3399
3400                 if (recps->envelope_from != NULL) {
3401                         StrBufAppendBufPlain(SpoolMsg, HKEY("envelope_from|"), 0);
3402                         StrBufAppendBufPlain(SpoolMsg, recps->envelope_from, -1, 0);
3403                         StrBufAppendBufPlain(SpoolMsg, HKEY("\n"), 0);
3404                 }
3405                 if (recps->sending_room != NULL) {
3406                         StrBufAppendBufPlain(SpoolMsg, HKEY("source_room|"), 0);
3407                         StrBufAppendBufPlain(SpoolMsg, recps->sending_room, -1, 0);
3408                         StrBufAppendBufPlain(SpoolMsg, HKEY("\n"), 0);
3409                 }
3410
3411                 nTokens = num_tokens(recps->recp_internet, '|');
3412                 for (i = 0; i < nTokens; i++) {
3413                         long len;
3414                         len = extract_token(recipient, recps->recp_internet, i, '|', sizeof recipient);
3415                         if (len > 0) {
3416                                 StrBufAppendBufPlain(SpoolMsg, HKEY("remote|"), 0);
3417                                 StrBufAppendBufPlain(SpoolMsg, recipient, len, 0);
3418                                 StrBufAppendBufPlain(SpoolMsg, HKEY("|0||\n"), 0);
3419                         }
3420                 }
3421
3422                 imsg = malloc(sizeof(struct CtdlMessage));
3423                 memset(imsg, 0, sizeof(struct CtdlMessage));
3424                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
3425                 imsg->cm_anon_type = MES_NORMAL;
3426                 imsg->cm_format_type = FMT_RFC822;
3427                 imsg->cm_fields['U'] = strdup("QMSG");
3428                 imsg->cm_fields['A'] = strdup("Citadel");
3429                 imsg->cm_fields['J'] = strdup("do not journal");
3430                 imsg->cm_fields['M'] = SmashStrBuf(&SpoolMsg);  /* imsg owns this memory now */
3431                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM, QP_EADDR);
3432                 CtdlFreeMessage(imsg);
3433         }
3434
3435         /*
3436          * Any addresses to harvest for someone's address book?
3437          */
3438         if ( (CCC->logged_in) && (recps != NULL) ) {
3439                 collected_addresses = harvest_collected_addresses(msg);
3440         }
3441
3442         if (collected_addresses != NULL) {
3443                 aptr = (struct addresses_to_be_filed *)
3444                         malloc(sizeof(struct addresses_to_be_filed));
3445                 CtdlMailboxName(actual_rm, sizeof actual_rm,
3446                                 &CCC->user, USERCONTACTSROOM);
3447                 aptr->roomname = strdup(actual_rm);
3448                 aptr->collected_addresses = collected_addresses;
3449                 begin_critical_section(S_ATBF);
3450                 aptr->next = atbf;
3451                 atbf = aptr;
3452                 end_critical_section(S_ATBF);
3453         }
3454
3455         /*
3456          * Determine whether this message qualifies for journaling.
3457          */
3458         if (msg->cm_fields['J'] != NULL) {
3459                 qualified_for_journaling = 0;
3460         }
3461         else {
3462                 if (recps == NULL) {
3463                         qualified_for_journaling = config.c_journal_pubmsgs;
3464                 }
3465                 else if (recps->num_local + recps->num_ignet + recps->num_internet > 0) {
3466                         qualified_for_journaling = config.c_journal_email;
3467                 }
3468                 else {
3469                         qualified_for_journaling = config.c_journal_pubmsgs;
3470                 }
3471         }
3472
3473         /*
3474          * Do we have to perform journaling?  If so, hand off the saved
3475          * RFC822 version will be handed off to the journaler for background
3476          * submit.  Otherwise, we have to free the memory ourselves.
3477          */
3478         if (saved_rfc822_version != NULL) {
3479                 if (qualified_for_journaling) {
3480                         JournalBackgroundSubmit(msg, saved_rfc822_version, recps);
3481                 }
3482                 else {
3483                         FreeStrBuf(&saved_rfc822_version);
3484                 }
3485         }
3486
3487         /* Done. */
3488         return(newmsgid);
3489 }
3490
3491
3492 /*
3493  * Convenience function for generating small administrative messages.
3494  */
3495 void quickie_message(const char *from,
3496                      const char *fromaddr,
3497                      char *to,
3498                      char *room,
3499                      const char *text, 
3500                      int format_type,
3501                      const char *subject)
3502 {
3503         struct CtdlMessage *msg;
3504         struct recptypes *recp = NULL;
3505
3506         msg = malloc(sizeof(struct CtdlMessage));
3507         memset(msg, 0, sizeof(struct CtdlMessage));
3508         msg->cm_magic = CTDLMESSAGE_MAGIC;
3509         msg->cm_anon_type = MES_NORMAL;
3510         msg->cm_format_type = format_type;
3511
3512         if (from != NULL) {
3513                 msg->cm_fields['A'] = strdup(from);
3514         }
3515         else if (fromaddr != NULL) {
3516                 msg->cm_fields['A'] = strdup(fromaddr);
3517                 if (strchr(msg->cm_fields['A'], '@')) {
3518                         *strchr(msg->cm_fields['A'], '@') = 0;
3519                 }
3520         }
3521         else {
3522                 msg->cm_fields['A'] = strdup("Citadel");
3523         }
3524
3525         if (fromaddr != NULL) msg->cm_fields['F'] = strdup(fromaddr);
3526         if (room != NULL) msg->cm_fields['O'] = strdup(room);
3527         msg->cm_fields['N'] = strdup(NODENAME);
3528         if (to != NULL) {
3529                 msg->cm_fields['R'] = strdup(to);
3530                 recp = validate_recipients(to, NULL, 0);
3531         }
3532         if (subject != NULL) {
3533                 msg->cm_fields['U'] = strdup(subject);
3534         }
3535         msg->cm_fields['M'] = strdup(text);
3536
3537         CtdlSubmitMsg(msg, recp, room, 0);
3538         CtdlFreeMessage(msg);
3539         if (recp != NULL) free_recipients(recp);
3540 }
3541
3542
3543 /*
3544  * Back end function used by CtdlMakeMessage() and similar functions
3545  */
3546 StrBuf *CtdlReadMessageBodyBuf(char *terminator,        /* token signalling EOT */
3547                                long tlen,
3548                                size_t maxlen,           /* maximum message length */
3549                                char *exist,             /* if non-null, append to it;
3550                                                            exist is ALWAYS freed  */
3551                                int crlf,                /* CRLF newlines instead of LF */
3552                                int *sock                /* socket handle or 0 for this session's client socket */
3553         ) 
3554 {
3555         StrBuf *Message;
3556         StrBuf *LineBuf;
3557         int flushing = 0;
3558         int finished = 0;
3559         int dotdot = 0;
3560
3561         LineBuf = NewStrBufPlain(NULL, SIZ);
3562         if (exist == NULL) {
3563                 Message = NewStrBufPlain(NULL, 4 * SIZ);
3564         }
3565         else {
3566                 Message = NewStrBufPlain(exist, -1);
3567                 free(exist);
3568         }
3569
3570         /* Do we need to change leading ".." to "." for SMTP escaping? */
3571         if ((tlen == 1) && (*terminator == '.')) {
3572                 dotdot = 1;
3573         }
3574
3575         /* read in the lines of message text one by one */
3576         do {
3577                 if (sock != NULL) {
3578                         if ((CtdlSockGetLine(sock, LineBuf, 5) < 0) ||
3579                             (*sock == -1))
3580                                 finished = 1;
3581                 }
3582                 else {
3583                         if (CtdlClientGetLine(LineBuf) < 0) finished = 1;
3584                 }
3585                 if ((StrLength(LineBuf) == tlen) && 
3586                     (!strcmp(ChrPtr(LineBuf), terminator)))
3587                         finished = 1;
3588
3589                 if ( (!flushing) && (!finished) ) {
3590                         if (crlf) {
3591                                 StrBufAppendBufPlain(LineBuf, HKEY("\r\n"), 0);
3592                         }
3593                         else {
3594                                 StrBufAppendBufPlain(LineBuf, HKEY("\n"), 0);
3595                         }
3596                         
3597                         /* Unescape SMTP-style input of two dots at the beginning of the line */
3598                         if ((dotdot) &&
3599                             (StrLength(LineBuf) == 2) && 
3600                             (!strcmp(ChrPtr(LineBuf), "..")))
3601                         {
3602                                 StrBufCutLeft(LineBuf, 1);
3603                         }
3604                         
3605                         StrBufAppendBuf(Message, LineBuf, 0);
3606                 }
3607
3608                 /* if we've hit the max msg length, flush the rest */
3609                 if (StrLength(Message) >= maxlen) flushing = 1;
3610
3611         } while (!finished);
3612         FreeStrBuf(&LineBuf);
3613         return Message;
3614 }
3615
3616 void DeleteAsyncMsg(ReadAsyncMsg **Msg)
3617 {
3618         if (*Msg == NULL)
3619                 return;
3620         FreeStrBuf(&(*Msg)->MsgBuf);
3621
3622         free(*Msg);
3623         *Msg = NULL;
3624 }
3625
3626 ReadAsyncMsg *NewAsyncMsg(const char *terminator,       /* token signalling EOT */
3627                           long tlen,
3628                           size_t maxlen,                /* maximum message length */
3629                           size_t expectlen,             /* if we expect a message, how long should it be? */
3630                           char *exist,                  /* if non-null, append to it;
3631                                                            exist is ALWAYS freed  */
3632                           long eLen,                    /* length of exist */
3633                           int crlf                      /* CRLF newlines instead of LF */
3634         )
3635 {
3636         ReadAsyncMsg *NewMsg;
3637
3638         NewMsg = (ReadAsyncMsg *)malloc(sizeof(ReadAsyncMsg));
3639         memset(NewMsg, 0, sizeof(ReadAsyncMsg));
3640
3641         if (exist == NULL) {
3642                 long len;
3643
3644                 if (expectlen == 0) {
3645                         len = 4 * SIZ;
3646                 }
3647                 else {
3648                         len = expectlen + 10;
3649                 }
3650                 NewMsg->MsgBuf = NewStrBufPlain(NULL, len);
3651         }
3652         else {
3653                 NewMsg->MsgBuf = NewStrBufPlain(exist, eLen);
3654                 free(exist);
3655         }
3656         /* Do we need to change leading ".." to "." for SMTP escaping? */
3657         if ((tlen == 1) && (*terminator == '.')) {
3658                 NewMsg->dodot = 1;
3659         }
3660
3661         NewMsg->terminator = terminator;
3662         NewMsg->tlen = tlen;
3663
3664         NewMsg->maxlen = maxlen;
3665
3666         NewMsg->crlf = crlf;
3667
3668         return NewMsg;
3669 }
3670
3671 /*
3672  * Back end function used by CtdlMakeMessage() and similar functions
3673  */
3674 eReadState CtdlReadMessageBodyAsync(AsyncIO *IO)
3675 {
3676         ReadAsyncMsg *ReadMsg;
3677         int MsgFinished = 0;
3678         eReadState Finished = eMustReadMore;
3679
3680 #ifdef BIGBAD_IODBG
3681         char fn [SIZ];
3682         FILE *fd;
3683         const char *pch = ChrPtr(IO->SendBuf.Buf);
3684         const char *pchh = IO->SendBuf.ReadWritePointer;
3685         long nbytes;
3686         
3687         if (pchh == NULL)
3688                 pchh = pch;
3689         
3690         nbytes = StrLength(IO->SendBuf.Buf) - (pchh - pch);
3691         snprintf(fn, SIZ, "/tmp/foolog_ev_%s.%d",
3692                  ((CitContext*)(IO->CitContext))->ServiceName,
3693                  IO->SendBuf.fd);
3694         
3695         fd = fopen(fn, "a+");
3696 #endif
3697
3698         ReadMsg = IO->ReadMsg;
3699
3700         /* read in the lines of message text one by one */
3701         do {
3702                 Finished = StrBufChunkSipLine(IO->IOBuf, &IO->RecvBuf);
3703                 
3704                 switch (Finished) {
3705                 case eMustReadMore: /// read new from socket... 
3706 #ifdef BIGBAD_IODBG
3707                         if (IO->RecvBuf.ReadWritePointer != NULL) {
3708                                 nbytes = StrLength(IO->RecvBuf.Buf) - (IO->RecvBuf.ReadWritePointer - ChrPtr(IO->RecvBuf.Buf));
3709                                 fprintf(fd, "Read; Line unfinished: %ld Bytes still in buffer [", nbytes);
3710                                 
3711                                 fwrite(IO->RecvBuf.ReadWritePointer, nbytes, 1, fd);
3712                         
3713                                 fprintf(fd, "]\n");
3714                         } else {
3715                                 fprintf(fd, "BufferEmpty! \n");
3716                         }
3717                         fclose(fd);
3718 #endif
3719                         return Finished;
3720                     break;
3721                 case eBufferNotEmpty: /* shouldn't happen... */
3722                 case eReadSuccess: /// done for now...
3723                     break;
3724                 case eReadFail: /// WHUT?
3725                     ///todo: shut down! 
3726                         break;
3727                 }
3728             
3729
3730                 if ((StrLength(IO->IOBuf) == ReadMsg->tlen) && 
3731                     (!strcmp(ChrPtr(IO->IOBuf), ReadMsg->terminator))) {
3732                         MsgFinished = 1;
3733 #ifdef BIGBAD_IODBG
3734                         fprintf(fd, "found Terminator; Message Size: %d\n", StrLength(ReadMsg->MsgBuf));
3735 #endif
3736                 }
3737                 else if (!ReadMsg->flushing) {
3738
3739 #ifdef BIGBAD_IODBG
3740                         fprintf(fd, "Read Line: [%d][%s]\n", StrLength(IO->IOBuf), ChrPtr(IO->IOBuf));
3741 #endif
3742
3743                         /* Unescape SMTP-style input of two dots at the beginning of the line */
3744                         if ((ReadMsg->dodot) &&
3745                             (StrLength(IO->IOBuf) == 2) &&  /* TODO: do we just unescape lines with two dots or any line? */
3746                             (!strcmp(ChrPtr(IO->IOBuf), "..")))
3747                         {
3748 #ifdef BIGBAD_IODBG
3749                                 fprintf(fd, "UnEscaped!\n");
3750 #endif
3751                                 StrBufCutLeft(IO->IOBuf, 1);
3752                         }
3753
3754                         if (ReadMsg->crlf) {
3755                                 StrBufAppendBufPlain(IO->IOBuf, HKEY("\r\n"), 0);
3756                         }
3757                         else {
3758                                 StrBufAppendBufPlain(IO->IOBuf, HKEY("\n"), 0);
3759                         }
3760
3761                         StrBufAppendBuf(ReadMsg->MsgBuf, IO->IOBuf, 0);
3762                 }
3763
3764                 /* if we've hit the max msg length, flush the rest */
3765                 if (StrLength(ReadMsg->MsgBuf) >= ReadMsg->maxlen) ReadMsg->flushing = 1;
3766
3767         } while (!MsgFinished);
3768
3769 #ifdef BIGBAD_IODBG
3770         fprintf(fd, "Done with reading; %s.\n, ",
3771                 (MsgFinished)?"Message Finished": "FAILED");
3772         fclose(fd);
3773 #endif
3774         if (MsgFinished)
3775                 return eReadSuccess;
3776         else 
3777                 return eAbort;
3778 }
3779
3780
3781 /*
3782  * Back end function used by CtdlMakeMessage() and similar functions
3783  */
3784 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
3785                           long tlen,
3786                           size_t maxlen,                /* maximum message length */
3787                           char *exist,          /* if non-null, append to it;
3788                                                    exist is ALWAYS freed  */
3789                           int crlf,             /* CRLF newlines instead of LF */
3790                           int *sock             /* socket handle or 0 for this session's client socket */
3791         ) 
3792 {
3793         StrBuf *Message;
3794
3795         Message = CtdlReadMessageBodyBuf(terminator,
3796                                          tlen,
3797                                          maxlen,
3798                                          exist,
3799                                          crlf,
3800                                          sock);
3801         if (Message == NULL)
3802                 return NULL;
3803         else
3804                 return SmashStrBuf(&Message);
3805 }
3806
3807
3808 /*
3809  * Build a binary message to be saved on disk.
3810  * (NOTE: if you supply 'preformatted_text', the buffer you give it
3811  * will become part of the message.  This means you are no longer
3812  * responsible for managing that memory -- it will be freed along with
3813  * the rest of the fields when CtdlFreeMessage() is called.)
3814  */
3815
3816 struct CtdlMessage *CtdlMakeMessage(
3817         struct ctdluser *author,        /* author's user structure */
3818         char *recipient,                /* NULL if it's not mail */
3819         char *recp_cc,                  /* NULL if it's not mail */
3820         char *room,                     /* room where it's going */
3821         int type,                       /* see MES_ types in header file */
3822         int format_type,                /* variformat, plain text, MIME... */
3823         char *fake_name,                /* who we're masquerading as */
3824         char *my_email,                 /* which of my email addresses to use (empty is ok) */
3825         char *subject,                  /* Subject (optional) */
3826         char *supplied_euid,            /* ...or NULL if this is irrelevant */
3827         char *preformatted_text,        /* ...or NULL to read text from client */
3828         char *references                /* Thread references */
3829         ) {
3830         char dest_node[256];
3831         char buf[1024];
3832         struct CtdlMessage *msg;
3833         StrBuf *FakeAuthor;
3834         StrBuf *FakeEncAuthor = NULL;
3835
3836         msg = malloc(sizeof(struct CtdlMessage));
3837         memset(msg, 0, sizeof(struct CtdlMessage));
3838         msg->cm_magic = CTDLMESSAGE_MAGIC;
3839         msg->cm_anon_type = type;
3840         msg->cm_format_type = format_type;
3841
3842         /* Don't confuse the poor folks if it's not routed mail. */
3843         strcpy(dest_node, "");
3844
3845         if (recipient != NULL) striplt(recipient);
3846         if (recp_cc != NULL) striplt(recp_cc);
3847
3848         /* Path or Return-Path */
3849         if (my_email == NULL) my_email = "";
3850
3851         if (!IsEmptyStr(my_email)) {
3852                 msg->cm_fields['P'] = strdup(my_email);
3853         }
3854         else {
3855                 snprintf(buf, sizeof buf, "%s", author->fullname);
3856                 msg->cm_fields['P'] = strdup(buf);
3857         }
3858         convert_spaces_to_underscores(msg->cm_fields['P']);
3859
3860         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
3861         msg->cm_fields['T'] = strdup(buf);
3862
3863         if ((fake_name != NULL) && (fake_name[0])) {            /* author */
3864                 FakeAuthor = NewStrBufPlain (fake_name, -1);
3865         }
3866         else {
3867                 FakeAuthor = NewStrBufPlain (author->fullname, -1);
3868         }
3869         StrBufRFC2047encode(&FakeEncAuthor, FakeAuthor);
3870         msg->cm_fields['A'] = SmashStrBuf(&FakeEncAuthor);
3871         FreeStrBuf(&FakeAuthor);
3872
3873         if (CC->room.QRflags & QR_MAILBOX) {            /* room */
3874                 msg->cm_fields['O'] = strdup(&CC->room.QRname[11]);
3875         }
3876         else {
3877                 msg->cm_fields['O'] = strdup(CC->room.QRname);
3878         }
3879
3880         msg->cm_fields['N'] = strdup(NODENAME);         /* nodename */
3881         msg->cm_fields['H'] = strdup(HUMANNODE);                /* hnodename */
3882
3883         if ((recipient != NULL) && (recipient[0] != 0)) {
3884                 msg->cm_fields['R'] = strdup(recipient);
3885         }
3886         if ((recp_cc != NULL) && (recp_cc[0] != 0)) {
3887                 msg->cm_fields['Y'] = strdup(recp_cc);
3888         }
3889         if (dest_node[0] != 0) {
3890                 msg->cm_fields['D'] = strdup(dest_node);
3891         }
3892
3893         if (!IsEmptyStr(my_email)) {
3894                 msg->cm_fields['F'] = strdup(my_email);
3895         }
3896         else if ( (author == &CC->user) && (!IsEmptyStr(CC->cs_inet_email)) ) {
3897                 msg->cm_fields['F'] = strdup(CC->cs_inet_email);
3898         }
3899
3900         if (subject != NULL) {
3901                 long length;
3902                 striplt(subject);
3903                 length = strlen(subject);
3904                 if (length > 0) {
3905                         long i;
3906                         long IsAscii;
3907                         IsAscii = -1;
3908                         i = 0;
3909                         while ((subject[i] != '\0') &&
3910                                (IsAscii = isascii(subject[i]) != 0 ))
3911                                 i++;
3912                         if (IsAscii != 0)
3913                                 msg->cm_fields['U'] = strdup(subject);
3914                         else /* ok, we've got utf8 in the string. */
3915                         {
3916                                 msg->cm_fields['U'] = rfc2047encode(subject, length);
3917                         }
3918
3919                 }
3920         }
3921
3922         if (supplied_euid != NULL) {
3923                 msg->cm_fields['E'] = strdup(supplied_euid);
3924         }
3925
3926         if ((references != NULL) && (!IsEmptyStr(references))) {
3927                 if (msg->cm_fields['W'] != NULL)
3928                         free(msg->cm_fields['W']);
3929                 msg->cm_fields['W'] = strdup(references);
3930         }
3931
3932         if (preformatted_text != NULL) {
3933                 msg->cm_fields['M'] = preformatted_text;
3934         }
3935         else {
3936                 msg->cm_fields['M'] = CtdlReadMessageBody(HKEY("000"), config.c_maxmsglen, NULL, 0, 0);
3937         }
3938
3939         return(msg);
3940 }
3941
3942 extern int netconfig_check_roomaccess(
3943         char *errmsgbuf, 
3944         size_t n,
3945         const char* RemoteIdentifier); /* TODO: find a smarter way */
3946
3947 /*
3948  * Check to see whether we have permission to post a message in the current
3949  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
3950  * returns 0 on success.
3951  */
3952 int CtdlDoIHavePermissionToPostInThisRoom(
3953         char *errmsgbuf, 
3954         size_t n, 
3955         const char* RemoteIdentifier,
3956         int PostPublic,
3957         int is_reply
3958         ) {
3959         int ra;
3960
3961         if (!(CC->logged_in) && 
3962             (PostPublic == POST_LOGGED_IN)) {
3963                 snprintf(errmsgbuf, n, "Not logged in.");
3964                 return (ERROR + NOT_LOGGED_IN);
3965         }
3966         else if (PostPublic == CHECK_EXISTANCE) {
3967                 return (0); // We're Evaling whether a recipient exists
3968         }
3969         else if (!(CC->logged_in)) {
3970                 
3971                 if ((CC->room.QRflags & QR_READONLY)) {
3972                         snprintf(errmsgbuf, n, "Not logged in.");
3973                         return (ERROR + NOT_LOGGED_IN);
3974                 }
3975                 if (CC->room.QRflags2 & QR2_MODERATED) {
3976                         snprintf(errmsgbuf, n, "Not logged in Moderation feature not yet implemented!");
3977                         return (ERROR + NOT_LOGGED_IN);
3978                 }
3979                 if ((PostPublic!=POST_LMTP) &&(CC->room.QRflags2 & QR2_SMTP_PUBLIC) == 0) {
3980
3981                         return netconfig_check_roomaccess(errmsgbuf, n, RemoteIdentifier);
3982                 }
3983                 return (0);
3984
3985         }
3986
3987         if ((CC->user.axlevel < AxProbU)
3988             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
3989                 snprintf(errmsgbuf, n, "Need to be validated to enter (except in %s> to sysop)", MAILROOM);
3990                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3991         }
3992
3993         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
3994
3995         if (ra & UA_POSTALLOWED) {
3996                 strcpy(errmsgbuf, "OK to post or reply here");
3997                 return(0);
3998         }
3999
4000         if ( (ra & UA_REPLYALLOWED) && (is_reply) ) {
4001                 /*
4002                  * To be thorough, we ought to check to see if the message they are
4003                  * replying to is actually a valid one in this room, but unless this
4004                  * actually becomes a problem we'll go with high performance instead.
4005                  */
4006                 strcpy(errmsgbuf, "OK to reply here");
4007                 return(0);
4008         }
4009
4010         if ( (ra & UA_REPLYALLOWED) && (!is_reply) ) {
4011                 /* Clarify what happened with a better error message */
4012                 snprintf(errmsgbuf, n, "You may only reply to existing messages here.");
4013                 return (ERROR + HIGHER_ACCESS_REQUIRED);
4014         }
4015
4016         snprintf(errmsgbuf, n, "Higher access is required to post in this room.");
4017         return (ERROR + HIGHER_ACCESS_REQUIRED);
4018
4019 }
4020
4021
4022 /*
4023  * Check to see if the specified user has Internet mail permission
4024  * (returns nonzero if permission is granted)
4025  */
4026 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
4027
4028         /* Do not allow twits to send Internet mail */
4029         if (who->axlevel <= AxProbU) return(0);
4030
4031         /* Globally enabled? */
4032         if (config.c_restrict == 0) return(1);
4033
4034         /* User flagged ok? */
4035         if (who->flags & US_INTERNET) return(2);
4036
4037         /* Admin level access? */
4038         if (who->axlevel >= AxAideU) return(3);
4039
4040         /* No mail for you! */
4041         return(0);
4042 }
4043
4044
4045 /*
4046  * Validate recipients, count delivery types and errors, and handle aliasing
4047  * FIXME check for dupes!!!!!
4048  *
4049  * Returns 0 if all addresses are ok, ret->num_error = -1 if no addresses 
4050  * were specified, or the number of addresses found invalid.
4051  *
4052  * Caller needs to free the result using free_recipients()
4053  */
4054 struct recptypes *validate_recipients(const char *supplied_recipients, 
4055                                       const char *RemoteIdentifier, 
4056                                       int Flags) {
4057         struct CitContext *CCC = CC;
4058         struct recptypes *ret;
4059         char *recipients = NULL;
4060         char *org_recp;
4061         char this_recp[256];
4062         char this_recp_cooked[256];
4063         char append[SIZ];
4064         long len;
4065         int num_recps = 0;
4066         int i, j;
4067         int mailtype;
4068         int invalid;
4069         struct ctdluser tempUS;
4070         struct ctdlroom tempQR;
4071         struct ctdlroom tempQR2;
4072         int err = 0;
4073         char errmsg[SIZ];
4074         int in_quotes = 0;
4075
4076         /* Initialize */
4077         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
4078         if (ret == NULL) return(NULL);
4079
4080         /* Set all strings to null and numeric values to zero */
4081         memset(ret, 0, sizeof(struct recptypes));
4082
4083         if (supplied_recipients == NULL) {
4084                 recipients = strdup("");
4085         }
4086         else {
4087                 recipients = strdup(supplied_recipients);
4088         }
4089
4090         /* Allocate some memory.  Yes, this allocates 500% more memory than we will
4091          * actually need, but it's healthier for the heap than doing lots of tiny
4092          * realloc() calls instead.
4093          */
4094         len = strlen(recipients) + 1024;
4095         ret->errormsg = malloc(len);
4096         ret->recp_local = malloc(len);
4097         ret->recp_internet = malloc(len);
4098         ret->recp_ignet = malloc(len);
4099         ret->recp_room = malloc(len);
4100         ret->display_recp = malloc(len);
4101         ret->recp_orgroom = malloc(len);
4102         org_recp = malloc(len);
4103
4104         ret->errormsg[0] = 0;
4105         ret->recp_local[0] = 0;
4106         ret->recp_internet[0] = 0;
4107         ret->recp_ignet[0] = 0;
4108         ret->recp_room[0] = 0;
4109         ret->recp_orgroom[0] = 0;
4110         ret->display_recp[0] = 0;
4111
4112         ret->recptypes_magic = RECPTYPES_MAGIC;
4113
4114         /* Change all valid separator characters to commas */
4115         for (i=0; !IsEmptyStr(&recipients[i]); ++i) {
4116                 if ((recipients[i] == ';') || (recipients[i] == '|')) {
4117                         recipients[i] = ',';
4118                 }
4119         }
4120
4121         /* Now start extracting recipients... */
4122
4123         while (!IsEmptyStr(recipients)) {
4124                 for (i=0; i<=strlen(recipients); ++i) {
4125                         if (recipients[i] == '\"') in_quotes = 1 - in_quotes;
4126                         if ( ( (recipients[i] == ',') && (!in_quotes) ) || (recipients[i] == 0) ) {
4127                                 safestrncpy(this_recp, recipients, i+1);
4128                                 this_recp[i] = 0;
4129                                 if (recipients[i] == ',') {
4130                                         strcpy(recipients, &recipients[i+1]);
4131                                 }
4132                                 else {
4133                                         strcpy(recipients, "");
4134                                 }
4135                                 break;
4136                         }
4137                 }
4138
4139                 striplt(this_recp);
4140                 if (IsEmptyStr(this_recp))
4141                         break;
4142                 MSG_syslog(LOG_DEBUG, "Evaluating recipient #%d: %s\n", num_recps, this_recp);
4143                 ++num_recps;
4144
4145                 strcpy(org_recp, this_recp);
4146                 alias(this_recp);
4147                 alias(this_recp);
4148                 mailtype = alias(this_recp);
4149
4150                 for (j = 0; !IsEmptyStr(&this_recp[j]); ++j) {
4151                         if (this_recp[j]=='_') {
4152                                 this_recp_cooked[j] = ' ';
4153                         }
4154                         else {
4155                                 this_recp_cooked[j] = this_recp[j];
4156                         }
4157                 }
4158                 this_recp_cooked[j] = '\0';
4159                 invalid = 0;
4160                 errmsg[0] = 0;
4161                 switch(mailtype) {
4162                 case MES_LOCAL:
4163                         if (!strcasecmp(this_recp, "sysop")) {
4164                                 ++ret->num_room;
4165                                 strcpy(this_recp, config.c_aideroom);
4166                                 if (!IsEmptyStr(ret->recp_room)) {
4167                                         strcat(ret->recp_room, "|");
4168                                 }
4169                                 strcat(ret->recp_room, this_recp);
4170                         }
4171                         else if ( (!strncasecmp(this_recp, "room_", 5))
4172                                   && (!CtdlGetRoom(&tempQR, &this_recp_cooked[5])) ) {
4173
4174                                 /* Save room so we can restore it later */
4175                                 tempQR2 = CCC->room;
4176                                 CCC->room = tempQR;
4177                                         
4178                                 /* Check permissions to send mail to this room */
4179                                 err = CtdlDoIHavePermissionToPostInThisRoom(
4180                                         errmsg, 
4181                                         sizeof errmsg, 
4182                                         RemoteIdentifier,
4183                                         Flags,
4184                                         0                       /* 0 = not a reply */
4185                                         );
4186                                 if (err)
4187                                 {
4188                                         ++ret->num_error;
4189                                         invalid = 1;
4190                                 } 
4191                                 else {
4192                                         ++ret->num_room;
4193                                         if (!IsEmptyStr(ret->recp_room)) {
4194                                                 strcat(ret->recp_room, "|");
4195                                         }
4196                                         strcat(ret->recp_room, &this_recp_cooked[5]);
4197
4198                                         if (!IsEmptyStr(ret->recp_orgroom)) {
4199                                                 strcat(ret->recp_orgroom, "|");
4200                                         }
4201                                         strcat(ret->recp_orgroom, org_recp);
4202
4203                                 }
4204                                         
4205                                 /* Restore room in case something needs it */
4206                                 CCC->room = tempQR2;
4207
4208                         }
4209                         else if (CtdlGetUser(&tempUS, this_recp) == 0) {
4210                                 ++ret->num_local;
4211                                 strcpy(this_recp, tempUS.fullname);
4212                                 if (!IsEmptyStr(ret->recp_local)) {
4213                                         strcat(ret->recp_local, "|");
4214                                 }
4215                                 strcat(ret->recp_local, this_recp);
4216                         }
4217                         else if (CtdlGetUser(&tempUS, this_recp_cooked) == 0) {
4218                                 ++ret->num_local;
4219                                 strcpy(this_recp, tempUS.fullname);
4220                                 if (!IsEmptyStr(ret->recp_local)) {
4221                                         strcat(ret->recp_local, "|");
4222                                 }
4223                                 strcat(ret->recp_local, this_recp);
4224                         }
4225                         else {
4226                                 ++ret->num_error;
4227                                 invalid = 1;
4228                         }
4229                         break;
4230                 case MES_INTERNET:
4231                         /* Yes, you're reading this correctly: if the target
4232                          * domain points back to the local system or an attached
4233                          * Citadel directory, the address is invalid.  That's
4234                          * because if the address were valid, we would have
4235                          * already translated it to a local address by now.
4236                          */
4237                         if (IsDirectory(this_recp, 0)) {
4238                                 ++ret->num_error;
4239                                 invalid = 1;
4240                         }
4241                         else {
4242                                 ++ret->num_internet;
4243                                 if (!IsEmptyStr(ret->recp_internet)) {
4244                                         strcat(ret->recp_internet, "|");
4245                                 }
4246                                 strcat(ret->recp_internet, this_recp);
4247                         }
4248                         break;
4249                 case MES_IGNET:
4250                         ++ret->num_ignet;
4251                         if (!IsEmptyStr(ret->recp_ignet)) {
4252                                 strcat(ret->recp_ignet, "|");
4253                         }
4254                         strcat(ret->recp_ignet, this_recp);
4255                         break;
4256                 case MES_ERROR:
4257                         ++ret->num_error;
4258                         invalid = 1;
4259                         break;
4260                 }
4261                 if (invalid) {
4262                         if (IsEmptyStr(errmsg)) {
4263                                 snprintf(append, sizeof append, "Invalid recipient: %s", this_recp);
4264                         }
4265                         else {
4266                                 snprintf(append, sizeof append, "%s", errmsg);
4267                         }
4268                         if ( (strlen(ret->errormsg) + strlen(append) + 3) < SIZ) {
4269                                 if (!IsEmptyStr(ret->errormsg)) {
4270                                         strcat(ret->errormsg, "; ");
4271                                 }
4272                                 strcat(ret->errormsg, append);
4273                         }
4274                 }
4275                 else {
4276                         if (IsEmptyStr(ret->display_recp)) {
4277                                 strcpy(append, this_recp);
4278                         }
4279                         else {
4280                                 snprintf(append, sizeof append, ", %s", this_recp);
4281                         }
4282                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
4283                                 strcat(ret->display_recp, append);
4284                         }
4285                 }
4286         }
4287         free(org_recp);
4288
4289         if ((ret->num_local + ret->num_internet + ret->num_ignet +
4290              ret->num_room + ret->num_error) == 0) {
4291                 ret->num_error = (-1);
4292                 strcpy(ret->errormsg, "No recipients specified.");
4293         }
4294
4295         MSGM_syslog(LOG_DEBUG, "validate_recipients()\n");
4296         MSG_syslog(LOG_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
4297         MSG_syslog(LOG_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
4298         MSG_syslog(LOG_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
4299         MSG_syslog(LOG_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
4300         MSG_syslog(LOG_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
4301
4302         free(recipients);
4303         return(ret);
4304 }
4305
4306
4307 /*
4308  * Destructor for struct recptypes
4309  */
4310 void free_recipients(struct recptypes *valid) {
4311
4312         if (valid == NULL) {
4313                 return;
4314         }
4315
4316         if (valid->recptypes_magic != RECPTYPES_MAGIC) {
4317                 struct CitContext *CCC = CC;
4318                 MSGM_syslog(LOG_EMERG, "Attempt to call free_recipients() on some other data type!\n");
4319                 abort();
4320         }
4321
4322         if (valid->errormsg != NULL)            free(valid->errormsg);
4323         if (valid->recp_local != NULL)          free(valid->recp_local);
4324         if (valid->recp_internet != NULL)       free(valid->recp_internet);
4325         if (valid->recp_ignet != NULL)          free(valid->recp_ignet);
4326         if (valid->recp_room != NULL)           free(valid->recp_room);
4327         if (valid->recp_orgroom != NULL)        free(valid->recp_orgroom);
4328         if (valid->display_recp != NULL)        free(valid->display_recp);
4329         if (valid->bounce_to != NULL)           free(valid->bounce_to);
4330         if (valid->envelope_from != NULL)       free(valid->envelope_from);
4331         if (valid->sending_room != NULL)        free(valid->sending_room);
4332         free(valid);
4333 }
4334
4335
4336
4337 /*
4338  * message entry  -  mode 0 (normal)
4339  */
4340 void cmd_ent0(char *entargs)
4341 {
4342         struct CitContext *CCC = CC;
4343         int post = 0;
4344         char recp[SIZ];
4345         char cc[SIZ];
4346         char bcc[SIZ];
4347         char supplied_euid[128];
4348         int anon_flag = 0;
4349         int format_type = 0;
4350         char newusername[256];
4351         char newuseremail[256];
4352         struct CtdlMessage *msg;
4353         int anonymous = 0;
4354         char errmsg[SIZ];
4355         int err = 0;
4356         struct recptypes *valid = NULL;
4357         struct recptypes *valid_to = NULL;
4358         struct recptypes *valid_cc = NULL;
4359         struct recptypes *valid_bcc = NULL;
4360         char subject[SIZ];
4361         int subject_required = 0;
4362         int do_confirm = 0;
4363         long msgnum;
4364         int i, j;
4365         char buf[256];
4366         int newuseremail_ok = 0;
4367         char references[SIZ];
4368         char *ptr;
4369
4370         unbuffer_output();
4371
4372         post = extract_int(entargs, 0);
4373         extract_token(recp, entargs, 1, '|', sizeof recp);
4374         anon_flag = extract_int(entargs, 2);
4375         format_type = extract_int(entargs, 3);
4376         extract_token(subject, entargs, 4, '|', sizeof subject);
4377         extract_token(newusername, entargs, 5, '|', sizeof newusername);
4378         do_confirm = extract_int(entargs, 6);
4379         extract_token(cc, entargs, 7, '|', sizeof cc);
4380         extract_token(bcc, entargs, 8, '|', sizeof bcc);
4381         switch(CC->room.QRdefaultview) {
4382         case VIEW_NOTES:
4383         case VIEW_WIKI:
4384                 extract_token(supplied_euid, entargs, 9, '|', sizeof supplied_euid);
4385                 break;
4386         default:
4387                 supplied_euid[0] = 0;
4388                 break;
4389         }
4390         extract_token(newuseremail, entargs, 10, '|', sizeof newuseremail);
4391         extract_token(references, entargs, 11, '|', sizeof references);
4392         for (ptr=references; *ptr != 0; ++ptr) {
4393                 if (*ptr == '!') *ptr = '|';
4394         }
4395
4396         /* first check to make sure the request is valid. */
4397
4398         err = CtdlDoIHavePermissionToPostInThisRoom(
4399                 errmsg,
4400                 sizeof errmsg,
4401                 NULL,
4402                 POST_LOGGED_IN,
4403                 (!IsEmptyStr(references))               /* is this a reply?  or a top-level post? */
4404                 );
4405         if (err)
4406         {
4407                 cprintf("%d %s\n", err, errmsg);
4408                 return;
4409         }
4410
4411         /* Check some other permission type things. */
4412
4413         if (IsEmptyStr(newusername)) {
4414                 strcpy(newusername, CCC->user.fullname);
4415         }
4416         if (  (CCC->user.axlevel < AxAideU)
4417               && (strcasecmp(newusername, CCC->user.fullname))
4418               && (strcasecmp(newusername, CCC->cs_inet_fn))
4419                 ) {     
4420                 cprintf("%d You don't have permission to author messages as '%s'.\n",
4421                         ERROR + HIGHER_ACCESS_REQUIRED,
4422                         newusername
4423                         );
4424                 return;
4425         }
4426
4427
4428         if (IsEmptyStr(newuseremail)) {
4429                 newuseremail_ok = 1;
4430         }
4431
4432         if (!IsEmptyStr(newuseremail)) {
4433                 if (!strcasecmp(newuseremail, CCC->cs_inet_email)) {
4434                         newuseremail_ok = 1;
4435                 }
4436                 else if (!IsEmptyStr(CCC->cs_inet_other_emails)) {
4437                         j = num_tokens(CCC->cs_inet_other_emails, '|');
4438                         for (i=0; i<j; ++i) {
4439                                 extract_token(buf, CCC->cs_inet_other_emails, i, '|', sizeof buf);
4440                                 if (!strcasecmp(newuseremail, buf)) {
4441                                         newuseremail_ok = 1;
4442                                 }
4443                         }
4444                 }
4445         }
4446
4447         if (!newuseremail_ok) {
4448                 cprintf("%d You don't have permission to author messages as '%s'.\n",
4449                         ERROR + HIGHER_ACCESS_REQUIRED,
4450                         newuseremail
4451                         );
4452                 return;
4453         }
4454
4455         CCC->cs_flags |= CS_POSTING;
4456
4457         /* In mailbox rooms we have to behave a little differently --
4458          * make sure the user has specified at least one recipient.  Then
4459          * validate the recipient(s).  We do this for the Mail> room, as
4460          * well as any room which has the "Mailbox" view set - unless it
4461          * is the DRAFTS room which does not require recipients
4462          */
4463
4464         if ( (  ( (CCC->room.QRflags & QR_MAILBOX) && (!strcasecmp(&CCC->room.QRname[11], MAILROOM)) )
4465                 || ( (CCC->room.QRflags & QR_MAILBOX) && (CCC->curr_view == VIEW_MAILBOX) )
4466                      ) && (strcasecmp(&CCC->room.QRname[11], USERDRAFTROOM)) !=0 ) {
4467                 if (CCC->user.axlevel < AxProbU) {
4468                         strcpy(recp, "sysop");
4469                         strcpy(cc, "");
4470                         strcpy(bcc, "");
4471                 }
4472
4473                 valid_to = validate_recipients(recp, NULL, 0);
4474                 if (valid_to->num_error > 0) {
4475                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_to->errormsg);
4476                         free_recipients(valid_to);
4477                         return;
4478                 }
4479
4480                 valid_cc = validate_recipients(cc, NULL, 0);
4481                 if (valid_cc->num_error > 0) {
4482                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_cc->errormsg);
4483                         free_recipients(valid_to);
4484                         free_recipients(valid_cc);
4485                         return;
4486                 }
4487
4488                 valid_bcc = validate_recipients(bcc, NULL, 0);
4489                 if (valid_bcc->num_error > 0) {
4490                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_bcc->errormsg);
4491                         free_recipients(valid_to);
4492                         free_recipients(valid_cc);
4493                         free_recipients(valid_bcc);
4494                         return;
4495                 }
4496
4497                 /* Recipient required, but none were specified */
4498                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
4499                         free_recipients(valid_to);
4500                         free_recipients(valid_cc);
4501                         free_recipients(valid_bcc);
4502                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
4503                         return;
4504                 }
4505
4506                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
4507                         if (CtdlCheckInternetMailPermission(&CCC->user)==0) {
4508                                 cprintf("%d You do not have permission "
4509                                         "to send Internet mail.\n",
4510                                         ERROR + HIGHER_ACCESS_REQUIRED);
4511                                 free_recipients(valid_to);
4512                                 free_recipients(valid_cc);
4513                                 free_recipients(valid_bcc);
4514                                 return;
4515                         }
4516                 }
4517
4518                 if ( ( (valid_to->num_internet + valid_to->num_ignet + valid_cc->num_internet + valid_cc->num_ignet + valid_bcc->num_internet + valid_bcc->num_ignet) > 0)
4519                      && (CCC->user.axlevel < AxNetU) ) {
4520                         cprintf("%d Higher access required for network mail.\n",
4521                                 ERROR + HIGHER_ACCESS_REQUIRED);
4522                         free_recipients(valid_to);
4523                         free_recipients(valid_cc);
4524                         free_recipients(valid_bcc);
4525                         return;
4526                 }
4527         
4528                 if ((RESTRICT_INTERNET == 1)
4529                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
4530                     && ((CCC->user.flags & US_INTERNET) == 0)
4531                     && (!CCC->internal_pgm)) {
4532                         cprintf("%d You don't have access to Internet mail.\n",
4533                                 ERROR + HIGHER_ACCESS_REQUIRED);
4534                         free_recipients(valid_to);
4535                         free_recipients(valid_cc);
4536                         free_recipients(valid_bcc);
4537                         return;
4538                 }
4539
4540         }
4541
4542         /* Is this a room which has anonymous-only or anonymous-option? */
4543         anonymous = MES_NORMAL;
4544         if (CCC->room.QRflags & QR_ANONONLY) {
4545                 anonymous = MES_ANONONLY;
4546         }
4547         if (CCC->room.QRflags & QR_ANONOPT) {
4548                 if (anon_flag == 1) {   /* only if the user requested it */
4549                         anonymous = MES_ANONOPT;
4550                 }
4551         }
4552
4553         if ((CCC->room.QRflags & QR_MAILBOX) == 0) {
4554                 recp[0] = 0;
4555         }
4556
4557         /* Recommend to the client that the use of a message subject is
4558          * strongly recommended in this room, if either the SUBJECTREQ flag
4559          * is set, or if there is one or more Internet email recipients.
4560          */
4561         if (CCC->room.QRflags2 & QR2_SUBJECTREQ) subject_required = 1;
4562         if ((valid_to)  && (valid_to->num_internet > 0))        subject_required = 1;
4563         if ((valid_cc)  && (valid_cc->num_internet > 0))        subject_required = 1;
4564         if ((valid_bcc) && (valid_bcc->num_internet > 0))       subject_required = 1;
4565
4566         /* If we're only checking the validity of the request, return
4567          * success without creating the message.
4568          */
4569         if (post == 0) {
4570                 cprintf("%d %s|%d\n", CIT_OK,
4571                         ((valid_to != NULL) ? valid_to->display_recp : ""), 
4572                         subject_required);
4573                 free_recipients(valid_to);
4574                 free_recipients(valid_cc);
4575                 free_recipients(valid_bcc);
4576                 return;
4577         }
4578
4579         /* We don't need these anymore because we'll do it differently below */
4580         free_recipients(valid_to);
4581         free_recipients(valid_cc);
4582         free_recipients(valid_bcc);
4583
4584         /* Read in the message from the client. */
4585         if (do_confirm) {
4586                 cprintf("%d send message\n", START_CHAT_MODE);
4587         } else {
4588                 cprintf("%d send message\n", SEND_LISTING);
4589         }
4590
4591         msg = CtdlMakeMessage(&CCC->user, recp, cc,
4592                               CCC->room.QRname, anonymous, format_type,
4593                               newusername, newuseremail, subject,
4594                               ((!IsEmptyStr(supplied_euid)) ? supplied_euid : NULL),
4595                               NULL, references);
4596
4597         /* Put together one big recipients struct containing to/cc/bcc all in
4598          * one.  This is for the envelope.
4599          */
4600         char *all_recps = malloc(SIZ * 3);
4601         strcpy(all_recps, recp);
4602         if (!IsEmptyStr(cc)) {
4603                 if (!IsEmptyStr(all_recps)) {
4604                         strcat(all_recps, ",");
4605                 }
4606                 strcat(all_recps, cc);
4607         }
4608         if (!IsEmptyStr(bcc)) {
4609                 if (!IsEmptyStr(all_recps)) {
4610                         strcat(all_recps, ",");
4611                 }
4612                 strcat(all_recps, bcc);
4613         }
4614         if (!IsEmptyStr(all_recps)) {
4615                 valid = validate_recipients(all_recps, NULL, 0);
4616         }
4617         else {
4618                 valid = NULL;
4619         }
4620         free(all_recps);
4621
4622         if ((valid != NULL) && (valid->num_room == 1))
4623         {
4624                 /* posting into an ML room? set the envelope from 
4625                  * to the actual mail address so others get a valid
4626                  * reply-to-header.
4627                  */
4628                 msg->cm_fields['V'] = strdup(valid->recp_orgroom);
4629         }
4630
4631         if (msg != NULL) {
4632                 msgnum = CtdlSubmitMsg(msg, valid, "", QP_EADDR);
4633                 if (do_confirm) {
4634                         cprintf("%ld\n", msgnum);
4635
4636                         if (StrLength(CCC->StatusMessage) > 0) {
4637                                 cprintf("%s\n", ChrPtr(CCC->StatusMessage));
4638                         }
4639                         else if (msgnum >= 0L) {
4640                                 client_write(HKEY("Message accepted.\n"));
4641                         }
4642                         else {
4643                                 client_write(HKEY("Internal error.\n"));
4644                         }
4645
4646                         if (msg->cm_fields['E'] != NULL) {
4647                                 cprintf("%s\n", msg->cm_fields['E']);
4648                         } else {
4649                                 cprintf("\n");
4650                         }
4651                         cprintf("000\n");
4652                 }
4653
4654                 CtdlFreeMessage(msg);
4655         }
4656         if (valid != NULL) {
4657                 free_recipients(valid);
4658         }
4659         return;
4660 }
4661
4662
4663
4664 /*
4665  * API function to delete messages which match a set of criteria
4666  * (returns the actual number of messages deleted)
4667  */
4668 int CtdlDeleteMessages(char *room_name,         /* which room */
4669                        long *dmsgnums,          /* array of msg numbers to be deleted */
4670                        int num_dmsgnums,        /* number of msgs to be deleted, or 0 for "any" */
4671                        char *content_type       /* or "" for any.  regular expressions expected. */
4672         )
4673 {
4674         struct CitContext *CCC = CC;
4675         struct ctdlroom qrbuf;
4676         struct cdbdata *cdbfr;
4677         long *msglist = NULL;
4678         long *dellist = NULL;
4679         int num_msgs = 0;
4680         int i, j;
4681         int num_deleted = 0;
4682         int delete_this;
4683         struct MetaData smi;
4684         regex_t re;
4685         regmatch_t pm;
4686         int need_to_free_re = 0;
4687
4688         if (content_type) if (!IsEmptyStr(content_type)) {
4689                         regcomp(&re, content_type, 0);
4690                         need_to_free_re = 1;
4691                 }
4692         MSG_syslog(LOG_DEBUG, "CtdlDeleteMessages(%s, %d msgs, %s)\n",
4693                    room_name, num_dmsgnums, content_type);
4694
4695         /* get room record, obtaining a lock... */
4696         if (CtdlGetRoomLock(&qrbuf, room_name) != 0) {
4697                 MSG_syslog(LOG_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
4698                            room_name);
4699                 if (need_to_free_re) regfree(&re);
4700                 return (0);     /* room not found */
4701         }
4702         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
4703
4704         if (cdbfr != NULL) {
4705                 dellist = malloc(cdbfr->len);
4706                 msglist = (long *) cdbfr->ptr;
4707                 cdbfr->ptr = NULL;      /* CtdlDeleteMessages() now owns this memory */
4708                 num_msgs = cdbfr->len / sizeof(long);
4709                 cdb_free(cdbfr);
4710         }
4711         if (num_msgs > 0) {
4712                 int have_contenttype = (content_type != NULL) && !IsEmptyStr(content_type);
4713                 int have_delmsgs = (num_dmsgnums == 0) || (dmsgnums == NULL);
4714                 int have_more_del = 1;
4715
4716                 num_msgs = sort_msglist(msglist, num_msgs);
4717                 if (num_dmsgnums > 1)
4718                         num_dmsgnums = sort_msglist(dmsgnums, num_dmsgnums);
4719 /*
4720                 {
4721                         StrBuf *dbg = NewStrBuf();
4722                         for (i = 0; i < num_dmsgnums; i++)
4723                                 StrBufAppendPrintf(dbg, ", %ld", dmsgnums[i]);
4724                         MSG_syslog(LOG_DEBUG, "Deleting before: %s", ChrPtr(dbg));
4725                         FreeStrBuf(&dbg);
4726                 }
4727 */
4728                 i = 0; j = 0;
4729                 while ((i < num_msgs) && (have_more_del)) {
4730                         delete_this = 0x00;
4731
4732
4733                         /* Set/clear a bit for each criterion */
4734
4735                         /* 0 messages in the list or a null list means that we are
4736                          * interested in deleting any messages which meet the other criteria.
4737                          */
4738                         if (have_delmsgs) {
4739                                 delete_this |= 0x01;
4740                         }
4741                         else {
4742                                 while ((i < num_msgs) && (msglist[i] < dmsgnums[j])) i++;
4743                                 if (msglist[i] == dmsgnums[j]) {
4744                                         delete_this |= 0x01;
4745                                 }
4746                                 j++;
4747                                 have_more_del = (j < num_dmsgnums);
4748                         }
4749
4750                         if (have_contenttype) {
4751                                 GetMetaData(&smi, msglist[i]);
4752                                 if (regexec(&re, smi.meta_content_type, 1, &pm, 0) == 0) {
4753                                         delete_this |= 0x02;
4754                                 }
4755                         } else {
4756                                 delete_this |= 0x02;
4757                         }
4758
4759                         /* Delete message only if all bits are set */
4760                         if (delete_this == 0x03) {
4761                                 dellist[num_deleted++] = msglist[i];
4762                                 msglist[i] = 0L;
4763                         }
4764                         i++;
4765                 }
4766 /*
4767                 {
4768                         StrBuf *dbg = NewStrBuf();
4769                         for (i = 0; i < num_deleted; i++)
4770                                 StrBufAppendPrintf(dbg, ", %ld", dellist[i]);
4771                         MSG_syslog(LOG_DEBUG, "Deleting: %s", ChrPtr(dbg));
4772                         FreeStrBuf(&dbg);
4773                 }
4774 */
4775                 num_msgs = sort_msglist(msglist, num_msgs);
4776                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
4777                           msglist, (int)(num_msgs * sizeof(long)));
4778
4779                 if (num_msgs > 0)
4780                         qrbuf.QRhighest = msglist[num_msgs - 1];
4781                 else
4782                         qrbuf.QRhighest = 0;
4783         }
4784         CtdlPutRoomLock(&qrbuf);
4785
4786         /* Go through the messages we pulled out of the index, and decrement
4787          * their reference counts by 1.  If this is the only room the message
4788          * was in, the reference count will reach zero and the message will
4789          * automatically be deleted from the database.  We do this in a
4790          * separate pass because there might be plug-in hooks getting called,
4791          * and we don't want that happening during an S_ROOMS critical
4792          * section.
4793          */
4794         if (num_deleted) {
4795                 for (i=0; i<num_deleted; ++i) {
4796                         PerformDeleteHooks(qrbuf.QRname, dellist[i]);
4797                 }
4798                 AdjRefCountList(dellist, num_deleted, -1);
4799         }
4800         /* Now free the memory we used, and go away. */
4801         if (msglist != NULL) free(msglist);
4802         if (dellist != NULL) free(dellist);
4803         MSG_syslog(LOG_DEBUG, "%d message(s) deleted.\n", num_deleted);
4804         if (need_to_free_re) regfree(&re);
4805         return (num_deleted);
4806 }
4807
4808
4809
4810 /*
4811  * Check whether the current user has permission to delete messages from
4812  * the current room (returns 1 for yes, 0 for no)
4813  */
4814 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
4815         int ra;
4816         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
4817         if (ra & UA_DELETEALLOWED) return(1);
4818         return(0);
4819 }
4820
4821
4822
4823
4824 /*
4825  * Delete message from current room
4826  */
4827 void cmd_dele(char *args)
4828 {
4829         int num_deleted;
4830         int i;
4831         char msgset[SIZ];
4832         char msgtok[32];
4833         long *msgs;
4834         int num_msgs = 0;
4835
4836         extract_token(msgset, args, 0, '|', sizeof msgset);
4837         num_msgs = num_tokens(msgset, ',');
4838         if (num_msgs < 1) {
4839                 cprintf("%d Nothing to do.\n", CIT_OK);
4840                 return;
4841         }
4842
4843         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
4844                 cprintf("%d Higher access required.\n",
4845                         ERROR + HIGHER_ACCESS_REQUIRED);
4846                 return;
4847         }
4848
4849         /*
4850          * Build our message set to be moved/copied
4851          */
4852         msgs = malloc(num_msgs * sizeof(long));
4853         for (i=0; i<num_msgs; ++i) {
4854                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
4855                 msgs[i] = atol(msgtok);
4856         }
4857
4858         num_deleted = CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
4859         free(msgs);
4860
4861         if (num_deleted) {
4862                 cprintf("%d %d message%s deleted.\n", CIT_OK,
4863                         num_deleted, ((num_deleted != 1) ? "s" : ""));
4864         } else {
4865                 cprintf("%d Message not found.\n", ERROR + MESSAGE_NOT_FOUND);
4866         }
4867 }
4868
4869
4870
4871
4872 /*
4873  * move or copy a message to another room
4874  */
4875 void cmd_move(char *args)
4876 {
4877         char msgset[SIZ];
4878         char msgtok[32];
4879         long *msgs;
4880         int num_msgs = 0;
4881
4882         char targ[ROOMNAMELEN];
4883         struct ctdlroom qtemp;
4884         int err;
4885         int is_copy = 0;
4886         int ra;
4887         int permit = 0;
4888         int i;
4889
4890         extract_token(msgset, args, 0, '|', sizeof msgset);
4891         num_msgs = num_tokens(msgset, ',');
4892         if (num_msgs < 1) {
4893                 cprintf("%d Nothing to do.\n", CIT_OK);
4894                 return;
4895         }
4896
4897         extract_token(targ, args, 1, '|', sizeof targ);
4898         convert_room_name_macros(targ, sizeof targ);
4899         targ[ROOMNAMELEN - 1] = 0;
4900         is_copy = extract_int(args, 2);
4901
4902         if (CtdlGetRoom(&qtemp, targ) != 0) {
4903                 cprintf("%d '%s' does not exist.\n", ERROR + ROOM_NOT_FOUND, targ);
4904                 return;
4905         }
4906
4907         if (!strcasecmp(qtemp.QRname, CC->room.QRname)) {
4908                 cprintf("%d Source and target rooms are the same.\n", ERROR + ALREADY_EXISTS);
4909                 return;
4910         }
4911
4912         CtdlGetUser(&CC->user, CC->curr_user);
4913         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
4914
4915         /* Check for permission to perform this operation.
4916          * Remember: "CC->room" is source, "qtemp" is target.
4917          */
4918         permit = 0;
4919
4920         /* Admins can move/copy */
4921         if (CC->user.axlevel >= AxAideU) permit = 1;
4922
4923         /* Room aides can move/copy */
4924         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
4925
4926         /* Permit move/copy from personal rooms */
4927         if ((CC->room.QRflags & QR_MAILBOX)
4928             && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
4929
4930         /* Permit only copy from public to personal room */
4931         if ( (is_copy)
4932              && (!(CC->room.QRflags & QR_MAILBOX))
4933              && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
4934
4935         /* Permit message removal from collaborative delete rooms */
4936         if (CC->room.QRflags2 & QR2_COLLABDEL) permit = 1;
4937
4938         /* Users allowed to post into the target room may move into it too. */
4939         if ((CC->room.QRflags & QR_MAILBOX) && 
4940             (qtemp.QRflags & UA_POSTALLOWED))  permit = 1;
4941
4942         /* User must have access to target room */
4943         if (!(ra & UA_KNOWN))  permit = 0;
4944
4945         if (!permit) {
4946                 cprintf("%d Higher access required.\n",
4947                         ERROR + HIGHER_ACCESS_REQUIRED);
4948                 return;
4949         }
4950
4951         /*
4952          * Build our message set to be moved/copied
4953          */
4954         msgs = malloc(num_msgs * sizeof(long));
4955         for (i=0; i<num_msgs; ++i) {
4956                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
4957                 msgs[i] = atol(msgtok);
4958         }
4959
4960         /*
4961          * Do the copy
4962          */
4963         err = CtdlSaveMsgPointersInRoom(targ, msgs, num_msgs, 1, NULL, 0);
4964         if (err != 0) {
4965                 cprintf("%d Cannot store message(s) in %s: error %d\n",
4966                         err, targ, err);
4967                 free(msgs);
4968                 return;
4969         }
4970
4971         /* Now delete the message from the source room,
4972          * if this is a 'move' rather than a 'copy' operation.
4973          */
4974         if (is_copy == 0) {
4975                 CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
4976         }
4977         free(msgs);
4978
4979         cprintf("%d Message(s) %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
4980 }
4981
4982
4983
4984 /*
4985  * GetMetaData()  -  Get the supplementary record for a message
4986  */
4987 void GetMetaData(struct MetaData *smibuf, long msgnum)
4988 {
4989
4990         struct cdbdata *cdbsmi;
4991         long TheIndex;
4992
4993         memset(smibuf, 0, sizeof(struct MetaData));
4994         smibuf->meta_msgnum = msgnum;
4995         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
4996
4997         /* Use the negative of the message number for its supp record index */
4998         TheIndex = (0L - msgnum);
4999
5000         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
5001         if (cdbsmi == NULL) {
5002                 return;         /* record not found; go with defaults */
5003         }
5004         memcpy(smibuf, cdbsmi->ptr,
5005                ((cdbsmi->len > sizeof(struct MetaData)) ?
5006                 sizeof(struct MetaData) : cdbsmi->len));
5007         cdb_free(cdbsmi);
5008         return;
5009 }
5010
5011
5012 /*
5013  * PutMetaData()  -  (re)write supplementary record for a message
5014  */
5015 void PutMetaData(struct MetaData *smibuf)
5016 {
5017         long TheIndex;
5018
5019         /* Use the negative of the message number for the metadata db index */
5020         TheIndex = (0L - smibuf->meta_msgnum);
5021
5022         cdb_store(CDB_MSGMAIN,
5023                   &TheIndex, (int)sizeof(long),
5024                   smibuf, (int)sizeof(struct MetaData));
5025
5026 }
5027
5028 /*
5029  * AdjRefCount  -  submit an adjustment to the reference count for a message.
5030  *                 (These are just queued -- we actually process them later.)
5031  */
5032 void AdjRefCount(long msgnum, int incr)
5033 {
5034         struct CitContext *CCC = CC;
5035         struct arcq new_arcq;
5036         int rv = 0;
5037
5038         MSG_syslog(LOG_DEBUG, "AdjRefCount() msg %ld ref count delta %+d\n", msgnum, incr);
5039
5040         begin_critical_section(S_SUPPMSGMAIN);
5041         if (arcfp == NULL) {
5042                 arcfp = fopen(file_arcq, "ab+");
5043                 chown(file_arcq, CTDLUID, (-1));
5044                 chmod(file_arcq, 0600);
5045         }
5046         end_critical_section(S_SUPPMSGMAIN);
5047
5048         /* msgnum < 0 means that we're trying to close the file */
5049         if (msgnum < 0) {
5050                 MSGM_syslog(LOG_DEBUG, "Closing the AdjRefCount queue file\n");
5051                 begin_critical_section(S_SUPPMSGMAIN);
5052                 if (arcfp != NULL) {
5053                         fclose(arcfp);
5054                         arcfp = NULL;
5055                 }
5056                 end_critical_section(S_SUPPMSGMAIN);
5057                 return;
5058         }
5059
5060         /*
5061          * If we can't open the queue, perform the operation synchronously.
5062          */
5063         if (arcfp == NULL) {
5064                 TDAP_AdjRefCount(msgnum, incr);
5065                 return;
5066         }
5067
5068         new_arcq.arcq_msgnum = msgnum;
5069         new_arcq.arcq_delta = incr;
5070         rv = fwrite(&new_arcq, sizeof(struct arcq), 1, arcfp);
5071         if (rv == -1) {
5072                 MSG_syslog(LOG_EMERG, "Couldn't write Refcount Queue File %s: %s\n",
5073                            file_arcq,
5074                            strerror(errno));
5075         }
5076         fflush(arcfp);
5077
5078         return;
5079 }
5080
5081 void AdjRefCountList(long *msgnum, long nmsg, int incr)
5082 {
5083         struct CitContext *CCC = CC;
5084         long i, the_size, offset;
5085         struct arcq *new_arcq;
5086         int rv = 0;
5087
5088         MSG_syslog(LOG_DEBUG, "AdjRefCountList() msg %ld ref count delta %+d\n", nmsg, incr);
5089
5090         begin_critical_section(S_SUPPMSGMAIN);
5091         if (arcfp == NULL) {
5092                 arcfp = fopen(file_arcq, "ab+");
5093                 chown(file_arcq, CTDLUID, (-1));
5094                 chmod(file_arcq, 0600);
5095         }
5096         end_critical_section(S_SUPPMSGMAIN);
5097
5098         /*
5099          * If we can't open the queue, perform the operation synchronously.
5100          */
5101         if (arcfp == NULL) {
5102                 for (i = 0; i < nmsg; i++)
5103                         TDAP_AdjRefCount(msgnum[i], incr);
5104                 return;
5105         }
5106
5107         the_size = sizeof(struct arcq) * nmsg;
5108         new_arcq = malloc(the_size);
5109         for (i = 0; i < nmsg; i++) {
5110                 new_arcq[i].arcq_msgnum = msgnum[i];
5111                 new_arcq[i].arcq_delta = incr;
5112         }
5113         rv = 0;
5114         offset = 0;
5115         while ((rv >= 0) && (offset < the_size))
5116         {
5117                 rv = fwrite(new_arcq + offset, 1, the_size - offset, arcfp);
5118                 if (rv == -1) {
5119                         MSG_syslog(LOG_EMERG, "Couldn't write Refcount Queue File %s: %s\n",
5120                                    file_arcq,
5121                                    strerror(errno));
5122                 }
5123                 else {
5124                         offset += rv;
5125                 }
5126         }
5127         free(new_arcq);
5128         fflush(arcfp);
5129
5130         return;
5131 }
5132
5133
5134 /*
5135  * TDAP_ProcessAdjRefCountQueue()
5136  *
5137  * Process the queue of message count adjustments that was created by calls
5138  * to AdjRefCount() ... by reading the queue and calling TDAP_AdjRefCount()
5139  * for each one.  This should be an "off hours" operation.
5140  */
5141 int TDAP_ProcessAdjRefCountQueue(void)
5142 {
5143         struct CitContext *CCC = CC;
5144         char file_arcq_temp[PATH_MAX];
5145         int r;
5146         FILE *fp;
5147         struct arcq arcq_rec;
5148         int num_records_processed = 0;
5149
5150         snprintf(file_arcq_temp, sizeof file_arcq_temp, "%s.%04x", file_arcq, rand());
5151
5152         begin_critical_section(S_SUPPMSGMAIN);
5153         if (arcfp != NULL) {
5154                 fclose(arcfp);
5155                 arcfp = NULL;
5156         }
5157
5158         r = link(file_arcq, file_arcq_temp);
5159         if (r != 0) {
5160                 MSG_syslog(LOG_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
5161                 end_critical_section(S_SUPPMSGMAIN);
5162                 return(num_records_processed);
5163         }
5164
5165         unlink(file_arcq);
5166         end_critical_section(S_SUPPMSGMAIN);
5167
5168         fp = fopen(file_arcq_temp, "rb");
5169         if (fp == NULL) {
5170                 MSG_syslog(LOG_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
5171                 return(num_records_processed);
5172         }
5173
5174         while (fread(&arcq_rec, sizeof(struct arcq), 1, fp) == 1) {
5175                 TDAP_AdjRefCount(arcq_rec.arcq_msgnum, arcq_rec.arcq_delta);
5176                 ++num_records_processed;
5177         }
5178
5179         fclose(fp);
5180         r = unlink(file_arcq_temp);
5181         if (r != 0) {
5182                 MSG_syslog(LOG_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
5183         }
5184
5185         return(num_records_processed);
5186 }
5187
5188
5189
5190 /*
5191  * TDAP_AdjRefCount  -  adjust the reference count for a message.
5192  *                      This one does it "for real" because it's called by
5193  *                      the autopurger function that processes the queue
5194  *                      created by AdjRefCount().   If a message's reference
5195  *                      count becomes zero, we also delete the message from
5196  *                      disk and de-index it.
5197  */
5198 void TDAP_AdjRefCount(long msgnum, int incr)
5199 {
5200         struct CitContext *CCC = CC;
5201
5202         struct MetaData smi;
5203         long delnum;
5204
5205         /* This is a *tight* critical section; please keep it that way, as
5206          * it may get called while nested in other critical sections.  
5207          * Complicating this any further will surely cause deadlock!
5208          */
5209         begin_critical_section(S_SUPPMSGMAIN);
5210         GetMetaData(&smi, msgnum);
5211         smi.meta_refcount += incr;
5212         PutMetaData(&smi);
5213         end_critical_section(S_SUPPMSGMAIN);
5214         MSG_syslog(LOG_DEBUG, "TDAP_AdjRefCount() msg %ld ref count delta %+d, is now %d\n",
5215                    msgnum, incr, smi.meta_refcount
5216                 );
5217
5218         /* If the reference count is now zero, delete the message
5219          * (and its supplementary record as well).
5220          */
5221         if (smi.meta_refcount == 0) {
5222                 MSG_syslog(LOG_DEBUG, "Deleting message <%ld>\n", msgnum);
5223                 
5224                 /* Call delete hooks with NULL room to show it has gone altogether */
5225                 PerformDeleteHooks(NULL, msgnum);
5226
5227                 /* Remove from message base */
5228                 delnum = msgnum;
5229                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
5230                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
5231
5232                 /* Remove metadata record */
5233                 delnum = (0L - msgnum);
5234                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
5235         }
5236
5237 }
5238
5239 /*
5240  * Write a generic object to this room
5241  *
5242  * Note: this could be much more efficient.  Right now we use two temporary
5243  * files, and still pull the message into memory as with all others.
5244  */
5245 void CtdlWriteObject(char *req_room,                    /* Room to stuff it in */
5246                      char *content_type,                /* MIME type of this object */
5247                      char *raw_message,         /* Data to be written */
5248                      off_t raw_length,          /* Size of raw_message */
5249                      struct ctdluser *is_mailbox,       /* Mailbox room? */
5250                      int is_binary,                     /* Is encoding necessary? */
5251                      int is_unique,                     /* Del others of this type? */
5252                      unsigned int flags         /* Internal save flags */
5253         )
5254 {
5255         struct CitContext *CCC = CC;
5256         struct ctdlroom qrbuf;
5257         char roomname[ROOMNAMELEN];
5258         struct CtdlMessage *msg;
5259         char *encoded_message = NULL;
5260
5261         if (is_mailbox != NULL) {
5262                 CtdlMailboxName(roomname, sizeof roomname, is_mailbox, req_room);
5263         }
5264         else {
5265                 safestrncpy(roomname, req_room, sizeof(roomname));
5266         }
5267
5268         MSG_syslog(LOG_DEBUG, "Raw length is %ld\n", (long)raw_length);
5269
5270         if (is_binary) {
5271                 encoded_message = malloc((size_t) (((raw_length * 134) / 100) + 4096 ) );
5272         }
5273         else {
5274                 encoded_message = malloc((size_t)(raw_length + 4096));
5275         }
5276
5277         sprintf(encoded_message, "Content-type: %s\n", content_type);
5278
5279         if (is_binary) {
5280                 sprintf(&encoded_message[strlen(encoded_message)],
5281                         "Content-transfer-encoding: base64\n\n"
5282                         );
5283         }
5284         else {
5285                 sprintf(&encoded_message[strlen(encoded_message)],
5286                         "Content-transfer-encoding: 7bit\n\n"
5287                         );
5288         }
5289
5290         if (is_binary) {
5291                 CtdlEncodeBase64(
5292                         &encoded_message[strlen(encoded_message)],
5293                         raw_message,
5294                         (int)raw_length,
5295                         0
5296                         );
5297         }
5298         else {
5299                 memcpy(
5300                         &encoded_message[strlen(encoded_message)],
5301                         raw_message,
5302                         (int)(raw_length+1)
5303                         );
5304         }
5305
5306         MSGM_syslog(LOG_DEBUG, "Allocating\n");
5307         msg = malloc(sizeof(struct CtdlMessage));
5308         memset(msg, 0, sizeof(struct CtdlMessage));
5309         msg->cm_magic = CTDLMESSAGE_MAGIC;
5310         msg->cm_anon_type = MES_NORMAL;
5311         msg->cm_format_type = 4;
5312         msg->cm_fields['A'] = strdup(CCC->user.fullname);
5313         msg->cm_fields['O'] = strdup(req_room);
5314         msg->cm_fields['N'] = strdup(config.c_nodename);
5315         msg->cm_fields['H'] = strdup(config.c_humannode);
5316         msg->cm_flags = flags;
5317         
5318         msg->cm_fields['M'] = encoded_message;
5319
5320         /* Create the requested room if we have to. */
5321         if (CtdlGetRoom(&qrbuf, roomname) != 0) {
5322                 CtdlCreateRoom(roomname, 
5323                                ( (is_mailbox != NULL) ? 5 : 3 ),
5324                                "", 0, 1, 0, VIEW_BBS);
5325         }
5326         /* If the caller specified this object as unique, delete all
5327          * other objects of this type that are currently in the room.
5328          */
5329         if (is_unique) {
5330                 MSG_syslog(LOG_DEBUG, "Deleted %d other msgs of this type\n",
5331                            CtdlDeleteMessages(roomname, NULL, 0, content_type)
5332                         );
5333         }
5334         /* Now write the data */
5335         CtdlSubmitMsg(msg, NULL, roomname, 0);
5336         CtdlFreeMessage(msg);
5337 }
5338
5339
5340
5341
5342
5343
5344 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
5345         config_msgnum = msgnum;
5346 }
5347
5348
5349 char *CtdlGetSysConfig(char *sysconfname) {
5350         char hold_rm[ROOMNAMELEN];
5351         long msgnum;
5352         char *conf;
5353         struct CtdlMessage *msg;
5354         char buf[SIZ];
5355         
5356         strcpy(hold_rm, CC->room.QRname);
5357         if (CtdlGetRoom(&CC->room, SYSCONFIGROOM) != 0) {
5358                 CtdlGetRoom(&CC->room, hold_rm);
5359                 return NULL;
5360         }
5361
5362
5363         /* We want the last (and probably only) config in this room */
5364         begin_critical_section(S_CONFIG);
5365         config_msgnum = (-1L);
5366         CtdlForEachMessage(MSGS_LAST, 1, NULL, sysconfname, NULL,
5367                            CtdlGetSysConfigBackend, NULL);
5368         msgnum = config_msgnum;
5369         end_critical_section(S_CONFIG);
5370
5371         if (msgnum < 0L) {
5372                 conf = NULL;
5373         }
5374         else {
5375                 msg = CtdlFetchMessage(msgnum, 1);
5376                 if (msg != NULL) {
5377                         conf = strdup(msg->cm_fields['M']);
5378                         CtdlFreeMessage(msg);
5379                 }
5380                 else {
5381                         conf = NULL;
5382                 }
5383         }
5384
5385         CtdlGetRoom(&CC->room, hold_rm);
5386
5387         if (conf != NULL) do {
5388                         extract_token(buf, conf, 0, '\n', sizeof buf);
5389                         strcpy(conf, &conf[strlen(buf)+1]);
5390                 } while ( (!IsEmptyStr(conf)) && (!IsEmptyStr(buf)) );
5391
5392         return(conf);
5393 }
5394
5395
5396 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
5397         CtdlWriteObject(SYSCONFIGROOM, sysconfname, sysconfdata, (strlen(sysconfdata)+1), NULL, 0, 1, 0);
5398 }
5399
5400
5401 /*
5402  * Determine whether a given Internet address belongs to the current user
5403  */
5404 int CtdlIsMe(char *addr, int addr_buf_len)
5405 {
5406         struct recptypes *recp;
5407         int i;
5408
5409         recp = validate_recipients(addr, NULL, 0);
5410         if (recp == NULL) return(0);
5411
5412         if (recp->num_local == 0) {
5413                 free_recipients(recp);
5414                 return(0);
5415         }
5416
5417         for (i=0; i<recp->num_local; ++i) {
5418                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
5419                 if (!strcasecmp(addr, CC->user.fullname)) {
5420                         free_recipients(recp);
5421                         return(1);
5422                 }
5423         }
5424
5425         free_recipients(recp);
5426         return(0);
5427 }
5428
5429
5430 /*
5431  * Citadel protocol command to do the same
5432  */
5433 void cmd_isme(char *argbuf) {
5434         char addr[256];
5435
5436         if (CtdlAccessCheck(ac_logged_in)) return;
5437         extract_token(addr, argbuf, 0, '|', sizeof addr);
5438
5439         if (CtdlIsMe(addr, sizeof addr)) {
5440                 cprintf("%d %s\n", CIT_OK, addr);
5441         }
5442         else {
5443                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
5444         }
5445
5446 }
5447
5448
5449 /*****************************************************************************/
5450 /*                      MODULE INITIALIZATION STUFF                          */
5451 /*****************************************************************************/
5452 void SetMessageDebugEnabled(const int n)
5453 {
5454         MessageDebugEnabled = n;
5455 }
5456 CTDL_MODULE_INIT(msgbase)
5457 {
5458         if (!threading) {
5459                 CtdlRegisterDebugFlagHook(HKEY("messages"), SetMessageDebugEnabled, &MessageDebugEnabled);
5460
5461                 CtdlRegisterProtoHook(cmd_msgs, "MSGS", "Output a list of messages in the current room");
5462                 CtdlRegisterProtoHook(cmd_msg0, "MSG0", "Output a message in plain text format");
5463                 CtdlRegisterProtoHook(cmd_msg2, "MSG2", "Output a message in RFC822 format");
5464                 CtdlRegisterProtoHook(cmd_msg3, "MSG3", "Output a message in raw format (deprecated)");
5465                 CtdlRegisterProtoHook(cmd_msg4, "MSG4", "Output a message in the client's preferred format");
5466                 CtdlRegisterProtoHook(cmd_msgp, "MSGP", "Select preferred format for MSG4 output");
5467                 CtdlRegisterProtoHook(cmd_opna, "OPNA", "Open an attachment for download");
5468                 CtdlRegisterProtoHook(cmd_dlat, "DLAT", "Download an attachment");
5469                 CtdlRegisterProtoHook(cmd_ent0, "ENT0", "Enter a message");
5470                 CtdlRegisterProtoHook(cmd_dele, "DELE", "Delete a message");
5471                 CtdlRegisterProtoHook(cmd_move, "MOVE", "Move or copy a message to another room");
5472                 CtdlRegisterProtoHook(cmd_isme, "ISME", "Determine whether an email address belongs to a user");
5473         }
5474
5475         /* return our Subversion id for the Log */
5476         return "msgbase";
5477 }