5eb729f1084ab9ad9347a78ff06be2f74dd3f648
[citadel.git] / citadel / msgbase.c
1 /*
2  * $Id$
3  *
4  * Implements the message store.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13
14 #if TIME_WITH_SYS_TIME
15 # include <sys/time.h>
16 # include <time.h>
17 #else
18 # if HAVE_SYS_TIME_H
19 #  include <sys/time.h>
20 # else
21 #  include <time.h>
22 # endif
23 #endif
24
25
26 #include <ctype.h>
27 #include <string.h>
28 #include <limits.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 #include <regex.h>
34 #include "citadel.h"
35 #include "server.h"
36 #include "serv_extensions.h"
37 #include "database.h"
38 #include "msgbase.h"
39 #include "support.h"
40 #include "sysdep_decls.h"
41 #include "citserver.h"
42 #include "room_ops.h"
43 #include "user_ops.h"
44 #include "file_ops.h"
45 #include "config.h"
46 #include "control.h"
47 #include "tools.h"
48 #include "mime_parser.h"
49 #include "html.h"
50 #include "genstamp.h"
51 #include "internet_addressing.h"
52 #include "serv_fulltext.h"
53 #include "vcard.h"
54 #include "euidindex.h"
55 #include "journaling.h"
56 #include "citadel_dirs.h"
57 #include "serv_network.h"
58
59 #ifdef HAVE_LIBSIEVE
60 # include "serv_sieve.h"
61 #endif /* HAVE_LIBSIEVE */
62
63 long config_msgnum;
64 struct addresses_to_be_filed *atbf = NULL;
65
66 /* This temp file holds the queue of operations for AdjRefCount() */
67 static FILE *arcfp = NULL;
68
69 /* 
70  * This really belongs in serv_network.c, but I don't know how to export
71  * symbols between modules.
72  */
73 struct FilterList *filterlist = NULL;
74
75
76 /*
77  * These are the four-character field headers we use when outputting
78  * messages in Citadel format (as opposed to RFC822 format).
79  */
80 char *msgkeys[] = {
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, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
88         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
89         NULL, 
90         "from",
91         NULL, NULL, NULL,
92         "exti",
93         "rfca",
94         NULL, 
95         "hnod",
96         "msgn",
97         "jrnl",
98         NULL, NULL,
99         "text",
100         "node",
101         "room",
102         "path",
103         NULL,
104         "rcpt",
105         "spec",
106         "time",
107         "subj",
108         NULL,
109         NULL,
110         NULL,
111         "cccc",
112         NULL
113 };
114
115 /*
116  * This function is self explanatory.
117  * (What can I say, I'm in a weird mood today...)
118  */
119 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
120 {
121         int i;
122
123         for (i = 0; i < strlen(name); ++i) {
124                 if (name[i] == '@') {
125                         while (isspace(name[i - 1]) && i > 0) {
126                                 strcpy(&name[i - 1], &name[i]);
127                                 --i;
128                         }
129                         while (isspace(name[i + 1])) {
130                                 strcpy(&name[i + 1], &name[i + 2]);
131                         }
132                 }
133         }
134 }
135
136
137 /*
138  * Aliasing for network mail.
139  * (Error messages have been commented out, because this is a server.)
140  */
141 int alias(char *name)
142 {                               /* process alias and routing info for mail */
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                 lprintf(CTDL_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                                 lprintf(CTDL_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
289 /* Determine if a given message matches the fields in a message template.
290  * Return 0 for a successful match.
291  */
292 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
293         int i;
294
295         /* If there aren't any fields in the template, all messages will
296          * match.
297          */
298         if (template == NULL) return(0);
299
300         /* Null messages are bogus. */
301         if (msg == NULL) return(1);
302
303         for (i='A'; i<='Z'; ++i) {
304                 if (template->cm_fields[i] != NULL) {
305                         if (msg->cm_fields[i] == NULL) {
306                                 return 1;
307                         }
308                         if (strcasecmp(msg->cm_fields[i],
309                                 template->cm_fields[i])) return 1;
310                 }
311         }
312
313         /* All compares succeeded: we have a match! */
314         return 0;
315 }
316
317
318
319 /*
320  * Retrieve the "seen" message list for the current room.
321  */
322 void CtdlGetSeen(char *buf, int which_set) {
323         struct visit vbuf;
324
325         /* Learn about the user and room in question */
326         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
327
328         if (which_set == ctdlsetseen_seen)
329                 safestrncpy(buf, vbuf.v_seen, SIZ);
330         if (which_set == ctdlsetseen_answered)
331                 safestrncpy(buf, vbuf.v_answered, SIZ);
332 }
333
334
335
336 /*
337  * Manipulate the "seen msgs" string (or other message set strings)
338  */
339 void CtdlSetSeen(long *target_msgnums, int num_target_msgnums,
340                 int target_setting, int which_set,
341                 struct ctdluser *which_user, struct ctdlroom *which_room) {
342         struct cdbdata *cdbfr;
343         int i, j, k;
344         int is_seen = 0;
345         int was_seen = 0;
346         long lo = (-1L);
347         long hi = (-1L);
348         long t = (-1L);
349         int trimming = 0;
350         struct visit vbuf;
351         long *msglist;
352         int num_msgs = 0;
353         char vset[SIZ];
354         char *is_set;   /* actually an array of booleans */
355         int num_sets;
356         int s;
357         char setstr[SIZ], lostr[SIZ], histr[SIZ];
358         size_t tmp;
359
360         /* Don't bother doing *anything* if we were passed a list of zero messages */
361         if (num_target_msgnums < 1) {
362                 return;
363         }
364
365         lprintf(CTDL_DEBUG, "CtdlSetSeen(%d msgs starting with %ld, %d, %d)\n",
366                 num_target_msgnums, target_msgnums[0],
367                 target_setting, which_set);
368
369         /* Learn about the user and room in question */
370         CtdlGetRelationship(&vbuf,
371                 ((which_user != NULL) ? which_user : &CC->user),
372                 ((which_room != NULL) ? which_room : &CC->room)
373         );
374
375         /* Load the message list */
376         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
377         if (cdbfr != NULL) {
378                 msglist = (long *) cdbfr->ptr;
379                 cdbfr->ptr = NULL;      /* CtdlSetSeen() now owns this memory */
380                 num_msgs = cdbfr->len / sizeof(long);
381                 cdb_free(cdbfr);
382         } else {
383                 return; /* No messages at all?  No further action. */
384         }
385
386         is_set = malloc(num_msgs * sizeof(char));
387         memset(is_set, 0, (num_msgs * sizeof(char)) );
388
389         /* Decide which message set we're manipulating */
390         switch(which_set) {
391                 case ctdlsetseen_seen:
392                         safestrncpy(vset, vbuf.v_seen, sizeof vset);
393                         break;
394                 case ctdlsetseen_answered:
395                         safestrncpy(vset, vbuf.v_answered, sizeof vset);
396                         break;
397         }
398
399         /* lprintf(CTDL_DEBUG, "before optimize: %s\n", vset); */
400
401         /* Translate the existing sequence set into an array of booleans */
402         num_sets = num_tokens(vset, ',');
403         for (s=0; s<num_sets; ++s) {
404                 extract_token(setstr, vset, s, ',', sizeof setstr);
405
406                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
407                 if (num_tokens(setstr, ':') >= 2) {
408                         extract_token(histr, setstr, 1, ':', sizeof histr);
409                         if (!strcmp(histr, "*")) {
410                                 snprintf(histr, sizeof histr, "%ld", LONG_MAX);
411                         }
412                 }
413                 else {
414                         strcpy(histr, lostr);
415                 }
416                 lo = atol(lostr);
417                 hi = atol(histr);
418
419                 for (i = 0; i < num_msgs; ++i) {
420                         if ((msglist[i] >= lo) && (msglist[i] <= hi)) {
421                                 is_set[i] = 1;
422                         }
423                 }
424         }
425
426         /* Now translate the array of booleans back into a sequence set */
427         strcpy(vset, "");
428         lo = (-1L);
429         hi = (-1L);
430
431         for (i=0; i<num_msgs; ++i) {
432
433                 is_seen = is_set[i];    /* Default to existing setting */
434
435                 for (k=0; k<num_target_msgnums; ++k) {
436                         if (msglist[i] == target_msgnums[k]) {
437                                 is_seen = target_setting;
438                         }
439                 }
440
441                 if (is_seen) {
442                         if (lo < 0L) lo = msglist[i];
443                         hi = msglist[i];
444                 }
445
446                 if (  ((is_seen == 0) && (was_seen == 1))
447                    || ((is_seen == 1) && (i == num_msgs-1)) ) {
448
449                         /* begin trim-o-matic code */
450                         j=9;
451                         trimming = 0;
452                         while ( (strlen(vset) + 20) > sizeof vset) {
453                                 remove_token(vset, 0, ',');
454                                 trimming = 1;
455                                 if (j--) break; /* loop no more than 9 times */
456                         }
457                         if ( (trimming) && (which_set == ctdlsetseen_seen) ) {
458                                 t = atol(vset);
459                                 if (t<2) t=2;
460                                 --t;
461                                 snprintf(lostr, sizeof lostr,
462                                         "1:%ld,%s", t, vset);
463                                 safestrncpy(vset, lostr, sizeof vset);
464                         }
465                         /* end trim-o-matic code */
466
467                         tmp = strlen(vset);
468                         if (tmp > 0) {
469                                 strcat(vset, ",");
470                                 ++tmp;
471                         }
472                         if (lo == hi) {
473                                 snprintf(&vset[tmp], (sizeof vset) - tmp,
474                                          "%ld", lo);
475                         }
476                         else {
477                                 snprintf(&vset[tmp], (sizeof vset) - tmp,
478                                          "%ld:%ld", lo, hi);
479                         }
480                         lo = (-1L);
481                         hi = (-1L);
482                 }
483                 was_seen = is_seen;
484         }
485
486         /* Decide which message set we're manipulating */
487         switch (which_set) {
488                 case ctdlsetseen_seen:
489                         safestrncpy(vbuf.v_seen, vset, sizeof vbuf.v_seen);
490                         break;
491                 case ctdlsetseen_answered:
492                         safestrncpy(vbuf.v_answered, vset,
493                                                 sizeof vbuf.v_answered);
494                         break;
495         }
496         free(is_set);
497
498         /* lprintf(CTDL_DEBUG, " after optimize: %s\n", vset); */
499         free(msglist);
500         CtdlSetRelationship(&vbuf,
501                 ((which_user != NULL) ? which_user : &CC->user),
502                 ((which_room != NULL) ? which_room : &CC->room)
503         );
504 }
505
506
507 /*
508  * API function to perform an operation for each qualifying message in the
509  * current room.  (Returns the number of messages processed.)
510  */
511 int CtdlForEachMessage(int mode, long ref, char *search_string,
512                         char *content_type,
513                         struct CtdlMessage *compare,
514                         void (*CallBack) (long, void *),
515                         void *userdata)
516 {
517
518         int a, i, j;
519         struct visit vbuf;
520         struct cdbdata *cdbfr;
521         long *msglist = NULL;
522         int num_msgs = 0;
523         int num_processed = 0;
524         long thismsg;
525         struct MetaData smi;
526         struct CtdlMessage *msg = NULL;
527         int is_seen = 0;
528         long lastold = 0L;
529         int printed_lastold = 0;
530         int num_search_msgs = 0;
531         long *search_msgs = NULL;
532         regex_t re;
533         regmatch_t pm;
534
535         if (content_type) if (strlen(content_type) > 0) {
536                 regcomp(&re, content_type, 0);
537         }
538
539         /* Learn about the user and room in question */
540         getuser(&CC->user, CC->curr_user);
541         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
542
543         /* Load the message list */
544         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
545         if (cdbfr != NULL) {
546                 msglist = (long *) cdbfr->ptr;
547                 cdbfr->ptr = NULL;      /* CtdlForEachMessage() now owns this memory */
548                 num_msgs = cdbfr->len / sizeof(long);
549                 cdb_free(cdbfr);
550         } else {
551                 return 0;       /* No messages at all?  No further action. */
552         }
553
554
555         /*
556          * Now begin the traversal.
557          */
558         if (num_msgs > 0) for (a = 0; a < num_msgs; ++a) {
559
560                 /* If the caller is looking for a specific MIME type, filter
561                  * out all messages which are not of the type requested.
562                  */
563                 if (content_type != NULL) if (strlen(content_type) > 0) {
564
565                         /* This call to GetMetaData() sits inside this loop
566                          * so that we only do the extra database read per msg
567                          * if we need to.  Doing the extra read all the time
568                          * really kills the server.  If we ever need to use
569                          * metadata for another search criterion, we need to
570                          * move the read somewhere else -- but still be smart
571                          * enough to only do the read if the caller has
572                          * specified something that will need it.
573                          */
574                         GetMetaData(&smi, msglist[a]);
575
576                         /* if (strcasecmp(smi.meta_content_type, content_type)) { old non-regex way */
577                         if (regexec(&re, smi.meta_content_type, 1, &pm, 0) != 0) {
578                                 msglist[a] = 0L;
579                         }
580                 }
581         }
582
583         num_msgs = sort_msglist(msglist, num_msgs);
584
585         /* If a template was supplied, filter out the messages which
586          * don't match.  (This could induce some delays!)
587          */
588         if (num_msgs > 0) {
589                 if (compare != NULL) {
590                         for (a = 0; a < num_msgs; ++a) {
591                                 msg = CtdlFetchMessage(msglist[a], 1);
592                                 if (msg != NULL) {
593                                         if (CtdlMsgCmp(msg, compare)) {
594                                                 msglist[a] = 0L;
595                                         }
596                                         CtdlFreeMessage(msg);
597                                 }
598                         }
599                 }
600         }
601
602         /* If a search string was specified, get a message list from
603          * the full text index and remove messages which aren't on both
604          * lists.
605          *
606          * How this works:
607          * Since the lists are sorted and strictly ascending, and the
608          * output list is guaranteed to be shorter than or equal to the
609          * input list, we overwrite the bottom of the input list.  This
610          * eliminates the need to memmove big chunks of the list over and
611          * over again.
612          */
613         if ( (num_msgs > 0) && (mode == MSGS_SEARCH) && (search_string) ) {
614                 ft_search(&num_search_msgs, &search_msgs, search_string);
615                 if (num_search_msgs > 0) {
616         
617                         int orig_num_msgs;
618
619                         orig_num_msgs = num_msgs;
620                         num_msgs = 0;
621                         for (i=0; i<orig_num_msgs; ++i) {
622                                 for (j=0; j<num_search_msgs; ++j) {
623                                         if (msglist[i] == search_msgs[j]) {
624                                                 msglist[num_msgs++] = msglist[i];
625                                         }
626                                 }
627                         }
628                 }
629                 else {
630                         num_msgs = 0;   /* No messages qualify */
631                 }
632                 if (search_msgs != NULL) free(search_msgs);
633
634                 /* Now that we've purged messages which don't contain the search
635                  * string, treat a MSGS_SEARCH just like a MSGS_ALL from this
636                  * point on.
637                  */
638                 mode = MSGS_ALL;
639         }
640
641         /*
642          * Now iterate through the message list, according to the
643          * criteria supplied by the caller.
644          */
645         if (num_msgs > 0)
646                 for (a = 0; a < num_msgs; ++a) {
647                         thismsg = msglist[a];
648                         if (mode == MSGS_ALL) {
649                                 is_seen = 0;
650                         }
651                         else {
652                                 is_seen = is_msg_in_sequence_set(
653                                                         vbuf.v_seen, thismsg);
654                                 if (is_seen) lastold = thismsg;
655                         }
656                         if ((thismsg > 0L)
657                             && (
658
659                                        (mode == MSGS_ALL)
660                                        || ((mode == MSGS_OLD) && (is_seen))
661                                        || ((mode == MSGS_NEW) && (!is_seen))
662                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
663                                    || ((mode == MSGS_FIRST) && (a < ref))
664                                 || ((mode == MSGS_GT) && (thismsg > ref))
665                                 || ((mode == MSGS_EQ) && (thismsg == ref))
666                             )
667                             ) {
668                                 if ((mode == MSGS_NEW) && (CC->user.flags & US_LASTOLD) && (lastold > 0L) && (printed_lastold == 0) && (!is_seen)) {
669                                         if (CallBack)
670                                                 CallBack(lastold, userdata);
671                                         printed_lastold = 1;
672                                         ++num_processed;
673                                 }
674                                 if (CallBack) CallBack(thismsg, userdata);
675                                 ++num_processed;
676                         }
677                 }
678         free(msglist);          /* Clean up */
679         return num_processed;
680 }
681
682
683
684 /*
685  * cmd_msgs()  -  get list of message #'s in this room
686  *              implements the MSGS server command using CtdlForEachMessage()
687  */
688 void cmd_msgs(char *cmdbuf)
689 {
690         int mode = 0;
691         char which[16];
692         char buf[256];
693         char tfield[256];
694         char tvalue[256];
695         int cm_ref = 0;
696         int i;
697         int with_template = 0;
698         struct CtdlMessage *template = NULL;
699         int with_headers = 0;
700         char search_string[1024];
701
702         extract_token(which, cmdbuf, 0, '|', sizeof which);
703         cm_ref = extract_int(cmdbuf, 1);
704         extract_token(search_string, cmdbuf, 1, '|', sizeof search_string);
705         with_template = extract_int(cmdbuf, 2);
706         with_headers = extract_int(cmdbuf, 3);
707
708         strcat(which, "   ");
709         if (!strncasecmp(which, "OLD", 3))
710                 mode = MSGS_OLD;
711         else if (!strncasecmp(which, "NEW", 3))
712                 mode = MSGS_NEW;
713         else if (!strncasecmp(which, "FIRST", 5))
714                 mode = MSGS_FIRST;
715         else if (!strncasecmp(which, "LAST", 4))
716                 mode = MSGS_LAST;
717         else if (!strncasecmp(which, "GT", 2))
718                 mode = MSGS_GT;
719         else if (!strncasecmp(which, "SEARCH", 6))
720                 mode = MSGS_SEARCH;
721         else
722                 mode = MSGS_ALL;
723
724         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
725                 cprintf("%d not logged in\n", ERROR + NOT_LOGGED_IN);
726                 return;
727         }
728
729         if ( (mode == MSGS_SEARCH) && (!config.c_enable_fulltext) ) {
730                 cprintf("%d Full text index is not enabled on this server.\n",
731                         ERROR + CMD_NOT_SUPPORTED);
732                 return;
733         }
734
735         if (with_template) {
736                 unbuffer_output();
737                 cprintf("%d Send template then receive message list\n",
738                         START_CHAT_MODE);
739                 template = (struct CtdlMessage *)
740                         malloc(sizeof(struct CtdlMessage));
741                 memset(template, 0, sizeof(struct CtdlMessage));
742                 template->cm_magic = CTDLMESSAGE_MAGIC;
743                 template->cm_anon_type = MES_NORMAL;
744
745                 while(client_getln(buf, sizeof buf), strcmp(buf,"000")) {
746                         extract_token(tfield, buf, 0, '|', sizeof tfield);
747                         extract_token(tvalue, buf, 1, '|', sizeof tvalue);
748                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
749                                 if (!strcasecmp(tfield, msgkeys[i])) {
750                                         template->cm_fields[i] =
751                                                 strdup(tvalue);
752                                 }
753                         }
754                 }
755                 buffer_output();
756         }
757         else {
758                 cprintf("%d  \n", LISTING_FOLLOWS);
759         }
760
761         CtdlForEachMessage(mode,
762                         ( (mode == MSGS_SEARCH) ? 0 : cm_ref ),
763                         ( (mode == MSGS_SEARCH) ? search_string : NULL ),
764                         NULL,
765                         template,
766                         (with_headers ? headers_listing : simple_listing),
767                         NULL
768         );
769         if (template != NULL) CtdlFreeMessage(template);
770         cprintf("000\n");
771 }
772
773
774
775
776 /* 
777  * help_subst()  -  support routine for help file viewer
778  */
779 void help_subst(char *strbuf, char *source, char *dest)
780 {
781         char workbuf[SIZ];
782         int p;
783
784         while (p = pattern2(strbuf, source), (p >= 0)) {
785                 strcpy(workbuf, &strbuf[p + strlen(source)]);
786                 strcpy(&strbuf[p], dest);
787                 strcat(strbuf, workbuf);
788         }
789 }
790
791
792 void do_help_subst(char *buffer)
793 {
794         char buf2[16];
795
796         help_subst(buffer, "^nodename", config.c_nodename);
797         help_subst(buffer, "^humannode", config.c_humannode);
798         help_subst(buffer, "^fqdn", config.c_fqdn);
799         help_subst(buffer, "^username", CC->user.fullname);
800         snprintf(buf2, sizeof buf2, "%ld", CC->user.usernum);
801         help_subst(buffer, "^usernum", buf2);
802         help_subst(buffer, "^sysadm", config.c_sysadm);
803         help_subst(buffer, "^variantname", CITADEL);
804         snprintf(buf2, sizeof buf2, "%d", config.c_maxsessions);
805         help_subst(buffer, "^maxsessions", buf2);
806         help_subst(buffer, "^bbsdir", ctdl_bbsbase_dir);
807 }
808
809
810
811 /*
812  * memfmout()  -  Citadel text formatter and paginator.
813  *           Although the original purpose of this routine was to format
814  *           text to the reader's screen width, all we're really using it
815  *           for here is to format text out to 80 columns before sending it
816  *           to the client.  The client software may reformat it again.
817  */
818 void memfmout(
819         char *mptr,             /* where are we going to get our text from? */
820         char subst,             /* nonzero if we should do substitutions */
821         char *nl)               /* string to terminate lines with */
822 {
823         int a, b, c;
824         int real = 0;
825         int old = 0;
826         cit_uint8_t ch;
827         char aaa[140];
828         char buffer[SIZ];
829         static int width = 80;
830
831         strcpy(aaa, "");
832         old = 255;
833         strcpy(buffer, "");
834         c = 1;                  /* c is the current pos */
835
836         do {
837                 if (subst) {
838                         while (ch = *mptr, ((ch != 0) && (strlen(buffer) < 126))) {
839                                 ch = *mptr++;
840                                 buffer[strlen(buffer) + 1] = 0;
841                                 buffer[strlen(buffer)] = ch;
842                         }
843
844                         if (buffer[0] == '^')
845                                 do_help_subst(buffer);
846
847                         buffer[strlen(buffer) + 1] = 0;
848                         a = buffer[0];
849                         strcpy(buffer, &buffer[1]);
850                 } else {
851                         ch = *mptr++;
852                 }
853
854                 old = real;
855                 real = ch;
856
857                 if (((ch == 13) || (ch == 10)) && (old != 13) && (old != 10)) {
858                         ch = 32;
859                 }
860                 if (((old == 13) || (old == 10)) && (isspace(real))) {
861                         cprintf("%s", nl);
862                         c = 1;
863                 }
864                 if (ch > 32) {
865                         if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
866                                 cprintf("%s%s", nl, aaa);
867                                 c = strlen(aaa);
868                                 aaa[0] = 0;
869                         }
870                         b = strlen(aaa);
871                         aaa[b] = ch;
872                         aaa[b + 1] = 0;
873                 }
874                 if (ch == 32) {
875                         if ((strlen(aaa) + c) > (width - 5)) {
876                                 cprintf("%s", nl);
877                                 c = 1;
878                         }
879                         cprintf("%s ", aaa);
880                         ++c;
881                         c = c + strlen(aaa);
882                         strcpy(aaa, "");
883                 }
884                 if ((ch == 13) || (ch == 10)) {
885                         cprintf("%s%s", aaa, nl);
886                         c = 1;
887                         strcpy(aaa, "");
888                 }
889
890         } while (ch > 0);
891
892         cprintf("%s%s", aaa, nl);
893 }
894
895
896
897 /*
898  * Callback function for mime parser that simply lists the part
899  */
900 void list_this_part(char *name, char *filename, char *partnum, char *disp,
901                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
902                     void *cbuserdata)
903 {
904         struct ma_info *ma;
905         
906         ma = (struct ma_info *)cbuserdata;
907         if (ma->is_ma == 0) {
908                 cprintf("part=%s|%s|%s|%s|%s|%ld\n",
909                         name, filename, partnum, disp, cbtype, (long)length);
910         }
911 }
912
913 /* 
914  * Callback function for multipart prefix
915  */
916 void list_this_pref(char *name, char *filename, char *partnum, char *disp,
917                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
918                     void *cbuserdata)
919 {
920         struct ma_info *ma;
921         
922         ma = (struct ma_info *)cbuserdata;
923         if (!strcasecmp(cbtype, "multipart/alternative")) {
924                 ++ma->is_ma;
925         }
926
927         if (ma->is_ma == 0) {
928                 cprintf("pref=%s|%s\n", partnum, cbtype);
929         }
930 }
931
932 /* 
933  * Callback function for multipart sufffix
934  */
935 void list_this_suff(char *name, char *filename, char *partnum, char *disp,
936                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
937                     void *cbuserdata)
938 {
939         struct ma_info *ma;
940         
941         ma = (struct ma_info *)cbuserdata;
942         if (ma->is_ma == 0) {
943                 cprintf("suff=%s|%s\n", partnum, cbtype);
944         }
945         if (!strcasecmp(cbtype, "multipart/alternative")) {
946                 --ma->is_ma;
947         }
948 }
949
950
951 /*
952  * Callback function for mime parser that opens a section for downloading
953  */
954 void mime_download(char *name, char *filename, char *partnum, char *disp,
955                    void *content, char *cbtype, char *cbcharset, size_t length,
956                    char *encoding, void *cbuserdata)
957 {
958
959         /* Silently go away if there's already a download open... */
960         if (CC->download_fp != NULL)
961                 return;
962
963         /* ...or if this is not the desired section */
964         if (strcasecmp(CC->download_desired_section, partnum))
965                 return;
966
967         CC->download_fp = tmpfile();
968         if (CC->download_fp == NULL)
969                 return;
970
971         fwrite(content, length, 1, CC->download_fp);
972         fflush(CC->download_fp);
973         rewind(CC->download_fp);
974
975         OpenCmdResult(filename, cbtype);
976 }
977
978
979
980 /*
981  * Callback function for mime parser that outputs a section all at once
982  */
983 void mime_spew_section(char *name, char *filename, char *partnum, char *disp,
984                    void *content, char *cbtype, char *cbcharset, size_t length,
985                    char *encoding, void *cbuserdata)
986 {
987         int *found_it = (int *)cbuserdata;
988
989         /* ...or if this is not the desired section */
990         if (strcasecmp(CC->download_desired_section, partnum))
991                 return;
992
993         *found_it = 1;
994
995         cprintf("%d %d\n", BINARY_FOLLOWS, length);
996         client_write(content, length);
997 }
998
999
1000
1001 /*
1002  * Load a message from disk into memory.
1003  * This is used by CtdlOutputMsg() and other fetch functions.
1004  *
1005  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
1006  *       using the CtdlMessageFree() function.
1007  */
1008 struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body)
1009 {
1010         struct cdbdata *dmsgtext;
1011         struct CtdlMessage *ret = NULL;
1012         char *mptr;
1013         char *upper_bound;
1014         cit_uint8_t ch;
1015         cit_uint8_t field_header;
1016
1017         lprintf(CTDL_DEBUG, "CtdlFetchMessage(%ld, %d)\n", msgnum, with_body);
1018
1019         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
1020         if (dmsgtext == NULL) {
1021                 return NULL;
1022         }
1023         mptr = dmsgtext->ptr;
1024         upper_bound = mptr + dmsgtext->len;
1025
1026         /* Parse the three bytes that begin EVERY message on disk.
1027          * The first is always 0xFF, the on-disk magic number.
1028          * The second is the anonymous/public type byte.
1029          * The third is the format type byte (vari, fixed, or MIME).
1030          */
1031         ch = *mptr++;
1032         if (ch != 255) {
1033                 lprintf(CTDL_ERR,
1034                         "Message %ld appears to be corrupted.\n",
1035                         msgnum);
1036                 cdb_free(dmsgtext);
1037                 return NULL;
1038         }
1039         ret = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1040         memset(ret, 0, sizeof(struct CtdlMessage));
1041
1042         ret->cm_magic = CTDLMESSAGE_MAGIC;
1043         ret->cm_anon_type = *mptr++;    /* Anon type byte */
1044         ret->cm_format_type = *mptr++;  /* Format type byte */
1045
1046         /*
1047          * The rest is zero or more arbitrary fields.  Load them in.
1048          * We're done when we encounter either a zero-length field or
1049          * have just processed the 'M' (message text) field.
1050          */
1051         do {
1052                 if (mptr >= upper_bound) {
1053                         break;
1054                 }
1055                 field_header = *mptr++;
1056                 ret->cm_fields[field_header] = strdup(mptr);
1057
1058                 while (*mptr++ != 0);   /* advance to next field */
1059
1060         } while ((mptr < upper_bound) && (field_header != 'M'));
1061
1062         cdb_free(dmsgtext);
1063
1064         /* Always make sure there's something in the msg text field.  If
1065          * it's NULL, the message text is most likely stored separately,
1066          * so go ahead and fetch that.  Failing that, just set a dummy
1067          * body so other code doesn't barf.
1068          */
1069         if ( (ret->cm_fields['M'] == NULL) && (with_body) ) {
1070                 dmsgtext = cdb_fetch(CDB_BIGMSGS, &msgnum, sizeof(long));
1071                 if (dmsgtext != NULL) {
1072                         ret->cm_fields['M'] = strdup(dmsgtext->ptr);
1073                         cdb_free(dmsgtext);
1074                 }
1075         }
1076         if (ret->cm_fields['M'] == NULL) {
1077                 ret->cm_fields['M'] = strdup("\r\n\r\n (no text)\r\n");
1078         }
1079
1080         /* Perform "before read" hooks (aborting if any return nonzero) */
1081         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
1082                 CtdlFreeMessage(ret);
1083                 return NULL;
1084         }
1085
1086         return (ret);
1087 }
1088
1089
1090 /*
1091  * Returns 1 if the supplied pointer points to a valid Citadel message.
1092  * If the pointer is NULL or the magic number check fails, returns 0.
1093  */
1094 int is_valid_message(struct CtdlMessage *msg) {
1095         if (msg == NULL)
1096                 return 0;
1097         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
1098                 lprintf(CTDL_WARNING, "is_valid_message() -- self-check failed\n");
1099                 return 0;
1100         }
1101         return 1;
1102 }
1103
1104
1105 /*
1106  * 'Destructor' for struct CtdlMessage
1107  */
1108 void CtdlFreeMessage(struct CtdlMessage *msg)
1109 {
1110         int i;
1111
1112         if (is_valid_message(msg) == 0) 
1113         {
1114                 if (msg != NULL) free (msg);
1115                 return;
1116         }
1117
1118         for (i = 0; i < 256; ++i)
1119                 if (msg->cm_fields[i] != NULL) {
1120                         free(msg->cm_fields[i]);
1121                 }
1122
1123         msg->cm_magic = 0;      /* just in case */
1124         free(msg);
1125 }
1126
1127
1128 /*
1129  * Pre callback function for multipart/alternative
1130  *
1131  * NOTE: this differs from the standard behavior for a reason.  Normally when
1132  *       displaying multipart/alternative you want to show the _last_ usable
1133  *       format in the message.  Here we show the _first_ one, because it's
1134  *       usually text/plain.  Since this set of functions is designed for text
1135  *       output to non-MIME-aware clients, this is the desired behavior.
1136  *
1137  */
1138 void fixed_output_pre(char *name, char *filename, char *partnum, char *disp,
1139                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1140                 void *cbuserdata)
1141 {
1142         struct ma_info *ma;
1143         
1144         ma = (struct ma_info *)cbuserdata;
1145         lprintf(CTDL_DEBUG, "fixed_output_pre() type=<%s>\n", cbtype);  
1146         if (!strcasecmp(cbtype, "multipart/alternative")) {
1147                 ++ma->is_ma;
1148                 ma->did_print = 0;
1149         }
1150         if (!strcasecmp(cbtype, "message/rfc822")) {
1151                 ++ma->freeze;
1152         }
1153 }
1154
1155 /*
1156  * Post callback function for multipart/alternative
1157  */
1158 void fixed_output_post(char *name, char *filename, char *partnum, char *disp,
1159                 void *content, char *cbtype, char *cbcharset, size_t length,
1160                 char *encoding, void *cbuserdata)
1161 {
1162         struct ma_info *ma;
1163         
1164         ma = (struct ma_info *)cbuserdata;
1165         lprintf(CTDL_DEBUG, "fixed_output_post() type=<%s>\n", cbtype); 
1166         if (!strcasecmp(cbtype, "multipart/alternative")) {
1167                 --ma->is_ma;
1168                 ma->did_print = 0;
1169         }
1170         if (!strcasecmp(cbtype, "message/rfc822")) {
1171                 --ma->freeze;
1172         }
1173 }
1174
1175 /*
1176  * Inline callback function for mime parser that wants to display text
1177  */
1178 void fixed_output(char *name, char *filename, char *partnum, char *disp,
1179                 void *content, char *cbtype, char *cbcharset, size_t length,
1180                 char *encoding, void *cbuserdata)
1181 {
1182         char *ptr;
1183         char *wptr;
1184         size_t wlen;
1185         struct ma_info *ma;
1186
1187         ma = (struct ma_info *)cbuserdata;
1188
1189         lprintf(CTDL_DEBUG,
1190                 "fixed_output() part %s: %s (%s) (%ld bytes)\n",
1191                 partnum, filename, cbtype, (long)length);
1192
1193         /*
1194          * If we're in the middle of a multipart/alternative scope and
1195          * we've already printed another section, skip this one.
1196          */     
1197         if ( (ma->is_ma) && (ma->did_print) ) {
1198                 lprintf(CTDL_DEBUG, "Skipping part %s (%s)\n",
1199                         partnum, cbtype);
1200                 return;
1201         }
1202         ma->did_print = 1;
1203
1204         if ( (!strcasecmp(cbtype, "text/plain")) 
1205            || (strlen(cbtype)==0) ) {
1206                 wptr = content;
1207                 if (length > 0) {
1208                         client_write(wptr, length);
1209                         if (wptr[length-1] != '\n') {
1210                                 cprintf("\n");
1211                         }
1212                 }
1213                 return;
1214         }
1215
1216         if (!strcasecmp(cbtype, "text/html")) {
1217                 ptr = html_to_ascii(content, length, 80, 0);
1218                 wlen = strlen(ptr);
1219                 client_write(ptr, wlen);
1220                 if (ptr[wlen-1] != '\n') {
1221                         cprintf("\n");
1222                 }
1223                 free(ptr);
1224                 return;
1225         }
1226
1227         if (ma->use_fo_hooks) {
1228                 if (PerformFixedOutputHooks(cbtype, content, length)) {
1229                 /* above function returns nonzero if it handled the part */
1230                         return;
1231                 }
1232         }
1233
1234         if (strncasecmp(cbtype, "multipart/", 10)) {
1235                 cprintf("Part %s: %s (%s) (%ld bytes)\r\n",
1236                         partnum, filename, cbtype, (long)length);
1237                 return;
1238         }
1239 }
1240
1241 /*
1242  * The client is elegant and sophisticated and wants to be choosy about
1243  * MIME content types, so figure out which multipart/alternative part
1244  * we're going to send.
1245  *
1246  * We use a system of weights.  When we find a part that matches one of the
1247  * MIME types we've declared as preferential, we can store it in ma->chosen_part
1248  * and then set ma->chosen_pref to that MIME type's position in our preference
1249  * list.  If we then hit another match, we only replace the first match if
1250  * the preference value is lower.
1251  */
1252 void choose_preferred(char *name, char *filename, char *partnum, char *disp,
1253                 void *content, char *cbtype, char *cbcharset, size_t length,
1254                 char *encoding, void *cbuserdata)
1255 {
1256         char buf[1024];
1257         int i;
1258         struct ma_info *ma;
1259         
1260         ma = (struct ma_info *)cbuserdata;
1261
1262         if (ma->is_ma > 0) {
1263                 for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1264                         extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1265                         if ( (!strcasecmp(buf, cbtype)) && (!ma->freeze) ) {
1266                                 if (i < ma->chosen_pref) {
1267                                         safestrncpy(ma->chosen_part, partnum, sizeof ma->chosen_part);
1268                                         ma->chosen_pref = i;
1269                                 }
1270                         }
1271                 }
1272         }
1273 }
1274
1275 /*
1276  * Now that we've chosen our preferred part, output it.
1277  */
1278 void output_preferred(char *name, char *filename, char *partnum, char *disp,
1279                 void *content, char *cbtype, char *cbcharset, size_t length,
1280                 char *encoding, void *cbuserdata)
1281 {
1282         int i;
1283         char buf[128];
1284         int add_newline = 0;
1285         char *text_content;
1286         struct ma_info *ma;
1287         
1288         ma = (struct ma_info *)cbuserdata;
1289
1290         /* This is not the MIME part you're looking for... */
1291         if (strcasecmp(partnum, ma->chosen_part)) return;
1292
1293         /* If the content-type of this part is in our preferred formats
1294          * list, we can simply output it verbatim.
1295          */
1296         for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1297                 extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1298                 if (!strcasecmp(buf, cbtype)) {
1299                         /* Yeah!  Go!  W00t!! */
1300
1301                         text_content = (char *)content;
1302                         if (text_content[length-1] != '\n') {
1303                                 ++add_newline;
1304                         }
1305                         cprintf("Content-type: %s", cbtype);
1306                         if (strlen(cbcharset) > 0) {
1307                                 cprintf("; charset=%s", cbcharset);
1308                         }
1309                         cprintf("\nContent-length: %d\n",
1310                                 (int)(length + add_newline) );
1311                         if (strlen(encoding) > 0) {
1312                                 cprintf("Content-transfer-encoding: %s\n", encoding);
1313                         }
1314                         else {
1315                                 cprintf("Content-transfer-encoding: 7bit\n");
1316                         }
1317                         cprintf("X-Citadel-MSG4-Partnum: %s\n", partnum);
1318                         cprintf("\n");
1319                         client_write(content, length);
1320                         if (add_newline) cprintf("\n");
1321                         return;
1322                 }
1323         }
1324
1325         /* No translations required or possible: output as text/plain */
1326         cprintf("Content-type: text/plain\n\n");
1327         fixed_output(name, filename, partnum, disp, content, cbtype, cbcharset,
1328                         length, encoding, cbuserdata);
1329 }
1330
1331
1332 struct encapmsg {
1333         char desired_section[64];
1334         char *msg;
1335         size_t msglen;
1336 };
1337
1338
1339 /*
1340  * Callback function for
1341  */
1342 void extract_encapsulated_message(char *name, char *filename, char *partnum, char *disp,
1343                    void *content, char *cbtype, char *cbcharset, size_t length,
1344                    char *encoding, void *cbuserdata)
1345 {
1346         struct encapmsg *encap;
1347
1348         encap = (struct encapmsg *)cbuserdata;
1349
1350         /* Only proceed if this is the desired section... */
1351         if (!strcasecmp(encap->desired_section, partnum)) {
1352                 encap->msglen = length;
1353                 encap->msg = malloc(length + 2);
1354                 memcpy(encap->msg, content, length);
1355                 return;
1356         }
1357
1358 }
1359
1360
1361
1362
1363 /*
1364  * Get a message off disk.  (returns om_* values found in msgbase.h)
1365  * 
1366  */
1367 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
1368                 int mode,               /* how would you like that message? */
1369                 int headers_only,       /* eschew the message body? */
1370                 int do_proto,           /* do Citadel protocol responses? */
1371                 int crlf,               /* Use CRLF newlines instead of LF? */
1372                 char *section           /* NULL or a message/rfc822 section */
1373 ) {
1374         struct CtdlMessage *TheMessage = NULL;
1375         int retcode = om_no_such_msg;
1376         struct encapmsg encap;
1377
1378         lprintf(CTDL_DEBUG, "CtdlOutputMsg() msgnum=%ld, mode=%d, section=%s\n", 
1379                 msg_num, mode,
1380                 (section ? section : "<>")
1381         );
1382
1383         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
1384                 if (do_proto) cprintf("%d Not logged in.\n",
1385                         ERROR + NOT_LOGGED_IN);
1386                 return(om_not_logged_in);
1387         }
1388
1389         /* FIXME: check message id against msglist for this room */
1390
1391         /*
1392          * Fetch the message from disk.  If we're in any sort of headers
1393          * only mode, request that we don't even bother loading the body
1394          * into memory.
1395          */
1396         if ( (headers_only == HEADERS_FAST) || (headers_only == HEADERS_ONLY) ) {
1397                 TheMessage = CtdlFetchMessage(msg_num, 0);
1398         }
1399         else {
1400                 TheMessage = CtdlFetchMessage(msg_num, 1);
1401         }
1402
1403         if (TheMessage == NULL) {
1404                 if (do_proto) cprintf("%d Can't locate msg %ld on disk\n",
1405                         ERROR + MESSAGE_NOT_FOUND, msg_num);
1406                 return(om_no_such_msg);
1407         }
1408
1409         /* Here is the weird form of this command, to process only an
1410          * encapsulated message/rfc822 section.
1411          */
1412         if (section) if (strlen(section)>0) if (strcmp(section, "0")) {
1413                 memset(&encap, 0, sizeof encap);
1414                 safestrncpy(encap.desired_section, section, sizeof encap.desired_section);
1415                 mime_parser(TheMessage->cm_fields['M'],
1416                         NULL,
1417                         *extract_encapsulated_message,
1418                         NULL, NULL, (void *)&encap, 0
1419                 );
1420                 CtdlFreeMessage(TheMessage);
1421                 TheMessage = NULL;
1422
1423                 if (encap.msg) {
1424                         encap.msg[encap.msglen] = 0;
1425                         TheMessage = convert_internet_message(encap.msg);
1426                         encap.msg = NULL;       /* no free() here, TheMessage owns it now */
1427
1428                         /* Now we let it fall through to the bottom of this
1429                          * function, because TheMessage now contains the
1430                          * encapsulated message instead of the top-level
1431                          * message.  Isn't that neat?
1432                          */
1433
1434                 }
1435                 else {
1436                         if (do_proto) cprintf("%d msg %ld has no part %s\n",
1437                                 ERROR + MESSAGE_NOT_FOUND, msg_num, section);
1438                         retcode = om_no_such_msg;
1439                 }
1440
1441         }
1442
1443         /* Ok, output the message now */
1444         retcode = CtdlOutputPreLoadedMsg(
1445                 TheMessage, mode,
1446                 headers_only, do_proto, crlf);
1447         CtdlFreeMessage(TheMessage);
1448
1449         return(retcode);
1450 }
1451
1452
1453 /*
1454  * Get a message off disk.  (returns om_* values found in msgbase.h)
1455  * 
1456  */
1457 int CtdlOutputPreLoadedMsg(
1458                 struct CtdlMessage *TheMessage,
1459                 int mode,               /* how would you like that message? */
1460                 int headers_only,       /* eschew the message body? */
1461                 int do_proto,           /* do Citadel protocol responses? */
1462                 int crlf                /* Use CRLF newlines instead of LF? */
1463 ) {
1464         int i, k;
1465         char buf[SIZ];
1466         cit_uint8_t ch;
1467         char allkeys[30];
1468         char display_name[256];
1469         char *mptr;
1470         char *nl;       /* newline string */
1471         int suppress_f = 0;
1472         int subject_found = 0;
1473         struct ma_info ma;
1474
1475         /* Buffers needed for RFC822 translation.  These are all filled
1476          * using functions that are bounds-checked, and therefore we can
1477          * make them substantially smaller than SIZ.
1478          */
1479         char suser[100];
1480         char luser[100];
1481         char fuser[100];
1482         char snode[100];
1483         char lnode[100];
1484         char mid[100];
1485         char datestamp[100];
1486
1487         lprintf(CTDL_DEBUG, "CtdlOutputPreLoadedMsg(TheMessage=%s, %d, %d, %d, %d\n",
1488                 ((TheMessage == NULL) ? "NULL" : "not null"),
1489                 mode, headers_only, do_proto, crlf);
1490
1491         strcpy(mid, "unknown");
1492         nl = (crlf ? "\r\n" : "\n");
1493
1494         if (!is_valid_message(TheMessage)) {
1495                 lprintf(CTDL_ERR,
1496                         "ERROR: invalid preloaded message for output\n");
1497                 return(om_no_such_msg);
1498         }
1499
1500         /* Are we downloading a MIME component? */
1501         if (mode == MT_DOWNLOAD) {
1502                 if (TheMessage->cm_format_type != FMT_RFC822) {
1503                         if (do_proto)
1504                                 cprintf("%d This is not a MIME message.\n",
1505                                 ERROR + ILLEGAL_VALUE);
1506                 } else if (CC->download_fp != NULL) {
1507                         if (do_proto) cprintf(
1508                                 "%d You already have a download open.\n",
1509                                 ERROR + RESOURCE_BUSY);
1510                 } else {
1511                         /* Parse the message text component */
1512                         mptr = TheMessage->cm_fields['M'];
1513                         mime_parser(mptr, NULL, *mime_download, NULL, NULL, NULL, 0);
1514                         /* If there's no file open by this time, the requested
1515                          * section wasn't found, so print an error
1516                          */
1517                         if (CC->download_fp == NULL) {
1518                                 if (do_proto) cprintf(
1519                                         "%d Section %s not found.\n",
1520                                         ERROR + FILE_NOT_FOUND,
1521                                         CC->download_desired_section);
1522                         }
1523                 }
1524                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
1525         }
1526
1527         /* MT_SPEW_SECTION is like MT_DOWNLOAD except it outputs the whole MIME part
1528          * in a single server operation instead of opening a download file.
1529          */
1530         if (mode == MT_SPEW_SECTION) {
1531                 if (TheMessage->cm_format_type != FMT_RFC822) {
1532                         if (do_proto)
1533                                 cprintf("%d This is not a MIME message.\n",
1534                                 ERROR + ILLEGAL_VALUE);
1535                 } else {
1536                         /* Parse the message text component */
1537                         int found_it = 0;
1538
1539                         mptr = TheMessage->cm_fields['M'];
1540                         mime_parser(mptr, NULL, *mime_spew_section, NULL, NULL, (void *)&found_it, 0);
1541                         /* If section wasn't found, print an error
1542                          */
1543                         if (!found_it) {
1544                                 if (do_proto) cprintf(
1545                                         "%d Section %s not found.\n",
1546                                         ERROR + FILE_NOT_FOUND,
1547                                         CC->download_desired_section);
1548                         }
1549                 }
1550                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
1551         }
1552
1553         /* now for the user-mode message reading loops */
1554         if (do_proto) cprintf("%d msg:\n", LISTING_FOLLOWS);
1555
1556         /* Does the caller want to skip the headers? */
1557         if (headers_only == HEADERS_NONE) goto START_TEXT;
1558
1559         /* Tell the client which format type we're using. */
1560         if ( (mode == MT_CITADEL) && (do_proto) ) {
1561                 cprintf("type=%d\n", TheMessage->cm_format_type);
1562         }
1563
1564         /* nhdr=yes means that we're only displaying headers, no body */
1565         if ( (TheMessage->cm_anon_type == MES_ANONONLY)
1566            && (mode == MT_CITADEL)
1567            && (do_proto)
1568            ) {
1569                 cprintf("nhdr=yes\n");
1570         }
1571
1572         /* begin header processing loop for Citadel message format */
1573
1574         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
1575
1576                 safestrncpy(display_name, "<unknown>", sizeof display_name);
1577                 if (TheMessage->cm_fields['A']) {
1578                         strcpy(buf, TheMessage->cm_fields['A']);
1579                         if (TheMessage->cm_anon_type == MES_ANONONLY) {
1580                                 safestrncpy(display_name, "****", sizeof display_name);
1581                         }
1582                         else if (TheMessage->cm_anon_type == MES_ANONOPT) {
1583                                 safestrncpy(display_name, "anonymous", sizeof display_name);
1584                         }
1585                         else {
1586                                 safestrncpy(display_name, buf, sizeof display_name);
1587                         }
1588                         if ((is_room_aide())
1589                             && ((TheMessage->cm_anon_type == MES_ANONONLY)
1590                              || (TheMessage->cm_anon_type == MES_ANONOPT))) {
1591                                 size_t tmp = strlen(display_name);
1592                                 snprintf(&display_name[tmp],
1593                                          sizeof display_name - tmp,
1594                                          " [%s]", buf);
1595                         }
1596                 }
1597
1598                 /* Don't show Internet address for users on the
1599                  * local Citadel network.
1600                  */
1601                 suppress_f = 0;
1602                 if (TheMessage->cm_fields['N'] != NULL)
1603                    if (strlen(TheMessage->cm_fields['N']) > 0)
1604                       if (haschar(TheMessage->cm_fields['N'], '.') == 0) {
1605                         suppress_f = 1;
1606                 }
1607                 
1608                 /* Now spew the header fields in the order we like them. */
1609                 safestrncpy(allkeys, FORDER, sizeof allkeys);
1610                 for (i=0; i<strlen(allkeys); ++i) {
1611                         k = (int) allkeys[i];
1612                         if (k != 'M') {
1613                                 if ( (TheMessage->cm_fields[k] != NULL)
1614                                    && (msgkeys[k] != NULL) ) {
1615                                         if (k == 'A') {
1616                                                 if (do_proto) cprintf("%s=%s\n",
1617                                                         msgkeys[k],
1618                                                         display_name);
1619                                         }
1620                                         else if ((k == 'F') && (suppress_f)) {
1621                                                 /* do nothing */
1622                                         }
1623                                         /* Masquerade display name if needed */
1624                                         else {
1625                                                 if (do_proto) cprintf("%s=%s\n",
1626                                                         msgkeys[k],
1627                                                         TheMessage->cm_fields[k]
1628                                         );
1629                                         }
1630                                 }
1631                         }
1632                 }
1633
1634         }
1635
1636         /* begin header processing loop for RFC822 transfer format */
1637
1638         strcpy(suser, "");
1639         strcpy(luser, "");
1640         strcpy(fuser, "");
1641         strcpy(snode, NODENAME);
1642         strcpy(lnode, HUMANNODE);
1643         if (mode == MT_RFC822) {
1644                 for (i = 0; i < 256; ++i) {
1645                         if (TheMessage->cm_fields[i]) {
1646                                 mptr = TheMessage->cm_fields[i];
1647
1648                                 if (i == 'A') {
1649                                         safestrncpy(luser, mptr, sizeof luser);
1650                                         safestrncpy(suser, mptr, sizeof suser);
1651                                 }
1652                                 else if (i == 'Y') {
1653                                         cprintf("CC: %s%s", mptr, nl);
1654                                 }
1655                                 else if (i == 'P') {
1656                                         cprintf("Return-Path: %s%s", mptr, nl);
1657                                 }
1658                                 else if (i == 'V') {
1659                                         cprintf("Envelope-To: %s%s", mptr, nl);
1660                                 }
1661                                 else if (i == 'U') {
1662                                         cprintf("Subject: %s%s", mptr, nl);
1663                                         subject_found = 1;
1664                                 }
1665                                 else if (i == 'I')
1666                                         safestrncpy(mid, mptr, sizeof mid);
1667                                 else if (i == 'H')
1668                                         safestrncpy(lnode, mptr, sizeof lnode);
1669                                 else if (i == 'F')
1670                                         safestrncpy(fuser, mptr, sizeof fuser);
1671                                 /* else if (i == 'O')
1672                                         cprintf("X-Citadel-Room: %s%s",
1673                                                 mptr, nl); */
1674                                 else if (i == 'N')
1675                                         safestrncpy(snode, mptr, sizeof snode);
1676                                 else if (i == 'R')
1677                                         cprintf("To: %s%s", mptr, nl);
1678                                 else if (i == 'T') {
1679                                         datestring(datestamp, sizeof datestamp,
1680                                                 atol(mptr), DATESTRING_RFC822);
1681                                         cprintf("Date: %s%s", datestamp, nl);
1682                                 }
1683                         }
1684                 }
1685                 if (subject_found == 0) {
1686                         cprintf("Subject: (no subject)%s", nl);
1687                 }
1688         }
1689
1690         for (i=0; i<strlen(suser); ++i) {
1691                 suser[i] = tolower(suser[i]);
1692                 if (!isalnum(suser[i])) suser[i]='_';
1693         }
1694
1695         if (mode == MT_RFC822) {
1696                 if (!strcasecmp(snode, NODENAME)) {
1697                         safestrncpy(snode, FQDN, sizeof snode);
1698                 }
1699
1700                 /* Construct a fun message id */
1701                 cprintf("Message-ID: <%s", mid);
1702                 if (strchr(mid, '@')==NULL) {
1703                         cprintf("@%s", snode);
1704                 }
1705                 cprintf(">%s", nl);
1706
1707                 if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONONLY)) {
1708                         cprintf("From: \"----\" <x@x.org>%s", nl);
1709                 }
1710                 else if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONOPT)) {
1711                         cprintf("From: \"anonymous\" <x@x.org>%s", nl);
1712                 }
1713                 else if (strlen(fuser) > 0) {
1714                         cprintf("From: \"%s\" <%s>%s", luser, fuser, nl);
1715                 }
1716                 else {
1717                         cprintf("From: \"%s\" <%s@%s>%s", luser, suser, snode, nl);
1718                 }
1719
1720                 cprintf("Organization: %s%s", lnode, nl);
1721
1722                 /* Blank line signifying RFC822 end-of-headers */
1723                 if (TheMessage->cm_format_type != FMT_RFC822) {
1724                         cprintf("%s", nl);
1725                 }
1726         }
1727
1728         /* end header processing loop ... at this point, we're in the text */
1729 START_TEXT:
1730         if (headers_only == HEADERS_FAST) goto DONE;
1731         mptr = TheMessage->cm_fields['M'];
1732
1733         /* Tell the client about the MIME parts in this message */
1734         if (TheMessage->cm_format_type == FMT_RFC822) {
1735                 if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1736                         memset(&ma, 0, sizeof(struct ma_info));
1737                         mime_parser(mptr, NULL,
1738                                 (do_proto ? *list_this_part : NULL),
1739                                 (do_proto ? *list_this_pref : NULL),
1740                                 (do_proto ? *list_this_suff : NULL),
1741                                 (void *)&ma, 0);
1742                 }
1743                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
1744                         char *start_of_text = NULL;
1745                         start_of_text = strstr(mptr, "\n\r\n");
1746                         if (start_of_text == NULL) start_of_text = strstr(mptr, "\n\n");
1747                         if (start_of_text == NULL) start_of_text = mptr;
1748                         ++start_of_text;
1749                         start_of_text = strstr(start_of_text, "\n");
1750                         ++start_of_text;
1751
1752                         char outbuf[1024];
1753                         int outlen = 0;
1754                         int nllen = strlen(nl);
1755                         while (ch=*mptr, ch!=0) {
1756                                 if (ch==13) {
1757                                         /* do nothing */
1758                                 }
1759                                 else {
1760                                         if (
1761                                                 ((headers_only == HEADERS_NONE) && (mptr >= start_of_text))
1762                                            ||   ((headers_only == HEADERS_ONLY) && (mptr < start_of_text))
1763                                            ||   ((headers_only != HEADERS_NONE) && (headers_only != HEADERS_ONLY))
1764                                         ) {
1765                                                 if (ch == 10) {
1766                                                         sprintf(&outbuf[outlen], "%s", nl);
1767                                                         outlen += nllen;
1768                                                 }
1769                                                 else {
1770                                                         outbuf[outlen++] = ch;
1771                                                 }
1772                                         }
1773                                 }
1774                                 ++mptr;
1775                                 if (outlen > 1000) {
1776                                         client_write(outbuf, outlen);
1777                                         outlen = 0;
1778                                 }
1779                         }
1780                         if (outlen > 0) {
1781                                 client_write(outbuf, outlen);
1782                                 outlen = 0;
1783                         }
1784
1785                         goto DONE;
1786                 }
1787         }
1788
1789         if (headers_only == HEADERS_ONLY) {
1790                 goto DONE;
1791         }
1792
1793         /* signify start of msg text */
1794         if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1795                 if (do_proto) cprintf("text\n");
1796         }
1797
1798         /* If the format type on disk is 1 (fixed-format), then we want
1799          * everything to be output completely literally ... regardless of
1800          * what message transfer format is in use.
1801          */
1802         if (TheMessage->cm_format_type == FMT_FIXED) {
1803                 if (mode == MT_MIME) {
1804                         cprintf("Content-type: text/plain\n\n");
1805                 }
1806                 strcpy(buf, "");
1807                 while (ch = *mptr++, ch > 0) {
1808                         if (ch == 13)
1809                                 ch = 10;
1810                         if ((ch == 10) || (strlen(buf) > 250)) {
1811                                 cprintf("%s%s", buf, nl);
1812                                 strcpy(buf, "");
1813                         } else {
1814                                 buf[strlen(buf) + 1] = 0;
1815                                 buf[strlen(buf)] = ch;
1816                         }
1817                 }
1818                 if (strlen(buf) > 0)
1819                         cprintf("%s%s", buf, nl);
1820         }
1821
1822         /* If the message on disk is format 0 (Citadel vari-format), we
1823          * output using the formatter at 80 columns.  This is the final output
1824          * form if the transfer format is RFC822, but if the transfer format
1825          * is Citadel proprietary, it'll still work, because the indentation
1826          * for new paragraphs is correct and the client will reformat the
1827          * message to the reader's screen width.
1828          */
1829         if (TheMessage->cm_format_type == FMT_CITADEL) {
1830                 if (mode == MT_MIME) {
1831                         cprintf("Content-type: text/x-citadel-variformat\n\n");
1832                 }
1833                 memfmout(mptr, 0, nl);
1834         }
1835
1836         /* If the message on disk is format 4 (MIME), we've gotta hand it
1837          * off to the MIME parser.  The client has already been told that
1838          * this message is format 1 (fixed format), so the callback function
1839          * we use will display those parts as-is.
1840          */
1841         if (TheMessage->cm_format_type == FMT_RFC822) {
1842                 memset(&ma, 0, sizeof(struct ma_info));
1843
1844                 if (mode == MT_MIME) {
1845                         ma.use_fo_hooks = 0;
1846                         strcpy(ma.chosen_part, "1");
1847                         ma.chosen_pref = 9999;
1848                         mime_parser(mptr, NULL,
1849                                 *choose_preferred, *fixed_output_pre,
1850                                 *fixed_output_post, (void *)&ma, 0);
1851                         mime_parser(mptr, NULL,
1852                                 *output_preferred, NULL, NULL, (void *)&ma, 0);
1853                 }
1854                 else {
1855                         ma.use_fo_hooks = 1;
1856                         mime_parser(mptr, NULL,
1857                                 *fixed_output, *fixed_output_pre,
1858                                 *fixed_output_post, (void *)&ma, 0);
1859                 }
1860
1861         }
1862
1863 DONE:   /* now we're done */
1864         if (do_proto) cprintf("000\n");
1865         return(om_ok);
1866 }
1867
1868
1869
1870 /*
1871  * display a message (mode 0 - Citadel proprietary)
1872  */
1873 void cmd_msg0(char *cmdbuf)
1874 {
1875         long msgid;
1876         int headers_only = HEADERS_ALL;
1877
1878         msgid = extract_long(cmdbuf, 0);
1879         headers_only = extract_int(cmdbuf, 1);
1880
1881         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0, NULL);
1882         return;
1883 }
1884
1885
1886 /*
1887  * display a message (mode 2 - RFC822)
1888  */
1889 void cmd_msg2(char *cmdbuf)
1890 {
1891         long msgid;
1892         int headers_only = HEADERS_ALL;
1893
1894         msgid = extract_long(cmdbuf, 0);
1895         headers_only = extract_int(cmdbuf, 1);
1896
1897         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1, NULL);
1898 }
1899
1900
1901
1902 /* 
1903  * display a message (mode 3 - IGnet raw format - internal programs only)
1904  */
1905 void cmd_msg3(char *cmdbuf)
1906 {
1907         long msgnum;
1908         struct CtdlMessage *msg = NULL;
1909         struct ser_ret smr;
1910
1911         if (CC->internal_pgm == 0) {
1912                 cprintf("%d This command is for internal programs only.\n",
1913                         ERROR + HIGHER_ACCESS_REQUIRED);
1914                 return;
1915         }
1916
1917         msgnum = extract_long(cmdbuf, 0);
1918         msg = CtdlFetchMessage(msgnum, 1);
1919         if (msg == NULL) {
1920                 cprintf("%d Message %ld not found.\n", 
1921                         ERROR + MESSAGE_NOT_FOUND, msgnum);
1922                 return;
1923         }
1924
1925         serialize_message(&smr, msg);
1926         CtdlFreeMessage(msg);
1927
1928         if (smr.len == 0) {
1929                 cprintf("%d Unable to serialize message\n",
1930                         ERROR + INTERNAL_ERROR);
1931                 return;
1932         }
1933
1934         cprintf("%d %ld\n", BINARY_FOLLOWS, (long)smr.len);
1935         client_write((char *)smr.ser, (int)smr.len);
1936         free(smr.ser);
1937 }
1938
1939
1940
1941 /* 
1942  * Display a message using MIME content types
1943  */
1944 void cmd_msg4(char *cmdbuf)
1945 {
1946         long msgid;
1947         char section[64];
1948
1949         msgid = extract_long(cmdbuf, 0);
1950         extract_token(section, cmdbuf, 1, '|', sizeof section);
1951         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0, (section[0] ? section : NULL) );
1952 }
1953
1954
1955
1956 /* 
1957  * Client tells us its preferred message format(s)
1958  */
1959 void cmd_msgp(char *cmdbuf)
1960 {
1961         safestrncpy(CC->preferred_formats, cmdbuf,
1962                         sizeof(CC->preferred_formats));
1963         cprintf("%d ok\n", CIT_OK);
1964 }
1965
1966
1967 /*
1968  * Open a component of a MIME message as a download file 
1969  */
1970 void cmd_opna(char *cmdbuf)
1971 {
1972         long msgid;
1973         char desired_section[128];
1974
1975         msgid = extract_long(cmdbuf, 0);
1976         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
1977         safestrncpy(CC->download_desired_section, desired_section,
1978                 sizeof CC->download_desired_section);
1979         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1, NULL);
1980 }                       
1981
1982
1983 /*
1984  * Open a component of a MIME message and transmit it all at once
1985  */
1986 void cmd_dlat(char *cmdbuf)
1987 {
1988         long msgid;
1989         char desired_section[128];
1990
1991         msgid = extract_long(cmdbuf, 0);
1992         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
1993         safestrncpy(CC->download_desired_section, desired_section,
1994                 sizeof CC->download_desired_section);
1995         CtdlOutputMsg(msgid, MT_SPEW_SECTION, 0, 1, 1, NULL);
1996 }                       
1997
1998
1999 /*
2000  * Save one or more message pointers into a specified room
2001  * (Returns 0 for success, nonzero for failure)
2002  * roomname may be NULL to use the current room
2003  *
2004  * Note that the 'supplied_msg' field may be set to NULL, in which case
2005  * the message will be fetched from disk, by number, if we need to perform
2006  * replication checks.  This adds an additional database read, so if the
2007  * caller already has the message in memory then it should be supplied.  (Obviously
2008  * this mode of operation only works if we're saving a single message.)
2009  */
2010 int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newmsgs,
2011                                 int do_repl_check, struct CtdlMessage *supplied_msg)
2012 {
2013         int i, j, unique;
2014         char hold_rm[ROOMNAMELEN];
2015         struct cdbdata *cdbfr;
2016         int num_msgs;
2017         long *msglist;
2018         long highest_msg = 0L;
2019
2020         long msgid = 0;
2021         struct CtdlMessage *msg = NULL;
2022
2023         long *msgs_to_be_merged = NULL;
2024         int num_msgs_to_be_merged = 0;
2025
2026         lprintf(CTDL_DEBUG,
2027                 "CtdlSaveMsgPointersInRoom(room=%s, num_msgs=%d, repl=%d)\n",
2028                 roomname, num_newmsgs, do_repl_check);
2029
2030         strcpy(hold_rm, CC->room.QRname);
2031
2032         /* Sanity checks */
2033         if (newmsgidlist == NULL) return(ERROR + INTERNAL_ERROR);
2034         if (num_newmsgs < 1) return(ERROR + INTERNAL_ERROR);
2035         if (num_newmsgs > 1) supplied_msg = NULL;
2036
2037         /* Now the regular stuff */
2038         if (lgetroom(&CC->room,
2039            ((roomname != NULL) ? roomname : CC->room.QRname) )
2040            != 0) {
2041                 lprintf(CTDL_ERR, "No such room <%s>\n", roomname);
2042                 return(ERROR + ROOM_NOT_FOUND);
2043         }
2044
2045
2046         msgs_to_be_merged = malloc(sizeof(long) * num_newmsgs);
2047         num_msgs_to_be_merged = 0;
2048
2049
2050         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
2051         if (cdbfr == NULL) {
2052                 msglist = NULL;
2053                 num_msgs = 0;
2054         } else {
2055                 msglist = (long *) cdbfr->ptr;
2056                 cdbfr->ptr = NULL;      /* CtdlSaveMsgPointerInRoom() now owns this memory */
2057                 num_msgs = cdbfr->len / sizeof(long);
2058                 cdb_free(cdbfr);
2059         }
2060
2061
2062         /* Create a list of msgid's which were supplied by the caller, but do
2063          * not already exist in the target room.  It is absolutely taboo to
2064          * have more than one reference to the same message in a room.
2065          */
2066         for (i=0; i<num_newmsgs; ++i) {
2067                 unique = 1;
2068                 if (num_msgs > 0) for (j=0; j<num_msgs; ++j) {
2069                         if (msglist[j] == newmsgidlist[i]) {
2070                                 unique = 0;
2071                         }
2072                 }
2073                 if (unique) {
2074                         msgs_to_be_merged[num_msgs_to_be_merged++] = newmsgidlist[i];
2075                 }
2076         }
2077
2078         lprintf(9, "%d unique messages to be merged\n", num_msgs_to_be_merged);
2079
2080         /*
2081          * Now merge the new messages
2082          */
2083         msglist = realloc(msglist, (sizeof(long) * (num_msgs + num_msgs_to_be_merged)) );
2084         if (msglist == NULL) {
2085                 lprintf(CTDL_ALERT, "ERROR: can't realloc message list!\n");
2086         }
2087         memcpy(&msglist[num_msgs], msgs_to_be_merged, (sizeof(long) * num_msgs_to_be_merged) );
2088         num_msgs += num_msgs_to_be_merged;
2089
2090         /* Sort the message list, so all the msgid's are in order */
2091         num_msgs = sort_msglist(msglist, num_msgs);
2092
2093         /* Determine the highest message number */
2094         highest_msg = msglist[num_msgs - 1];
2095
2096         /* Write it back to disk. */
2097         cdb_store(CDB_MSGLISTS, &CC->room.QRnumber, (int)sizeof(long),
2098                   msglist, (int)(num_msgs * sizeof(long)));
2099
2100         /* Free up the memory we used. */
2101         free(msglist);
2102
2103         /* Update the highest-message pointer and unlock the room. */
2104         CC->room.QRhighest = highest_msg;
2105         lputroom(&CC->room);
2106
2107         /* Perform replication checks if necessary */
2108         if ( (DoesThisRoomNeedEuidIndexing(&CC->room)) && (do_repl_check) ) {
2109                 lprintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom() doing repl checks\n");
2110
2111                 for (i=0; i<num_msgs_to_be_merged; ++i) {
2112                         msgid = msgs_to_be_merged[i];
2113         
2114                         if (supplied_msg != NULL) {
2115                                 msg = supplied_msg;
2116                         }
2117                         else {
2118                                 msg = CtdlFetchMessage(msgid, 0);
2119                         }
2120         
2121                         if (msg != NULL) {
2122                                 ReplicationChecks(msg);
2123                 
2124                                 /* If the message has an Exclusive ID, index that... */
2125                                 if (msg->cm_fields['E'] != NULL) {
2126                                         index_message_by_euid(msg->cm_fields['E'], &CC->room, msgid);
2127                                 }
2128
2129                                 /* Free up the memory we may have allocated */
2130                                 if (msg != supplied_msg) {
2131                                         CtdlFreeMessage(msg);
2132                                 }
2133                         }
2134         
2135                 }
2136         }
2137
2138         else {
2139                 lprintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom() skips repl checks\n");
2140         }
2141
2142         /* Submit this room for net processing */
2143         network_queue_room(&CC->room, NULL);
2144
2145 #ifdef HAVE_LIBSIEVE
2146         /* If this is someone's inbox, submit the room for sieve processing */
2147         if (!strcasecmp(&CC->room.QRname[11], MAILROOM)) {
2148                 sieve_queue_room(&CC->room);
2149         }
2150 #endif /* HAVE_LIBSIEVE */
2151
2152         /* Go back to the room we were in before we wandered here... */
2153         getroom(&CC->room, hold_rm);
2154
2155         /* Bump the reference count for all messages which were merged */
2156         for (i=0; i<num_msgs_to_be_merged; ++i) {
2157                 AdjRefCount(msgs_to_be_merged[i], +1);
2158         }
2159
2160         /* Free up memory... */
2161         if (msgs_to_be_merged != NULL) {
2162                 free(msgs_to_be_merged);
2163         }
2164
2165         /* Return success. */
2166         return (0);
2167 }
2168
2169
2170 /*
2171  * This is the same as CtdlSaveMsgPointersInRoom() but it only accepts
2172  * a single message.
2173  */
2174 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid,
2175                         int do_repl_check, struct CtdlMessage *supplied_msg)
2176 {
2177         return CtdlSaveMsgPointersInRoom(roomname, &msgid, 1, do_repl_check, supplied_msg);
2178 }
2179
2180
2181
2182
2183 /*
2184  * Message base operation to save a new message to the message store
2185  * (returns new message number)
2186  *
2187  * This is the back end for CtdlSubmitMsg() and should not be directly
2188  * called by server-side modules.
2189  *
2190  */
2191 long send_message(struct CtdlMessage *msg) {
2192         long newmsgid;
2193         long retval;
2194         char msgidbuf[256];
2195         struct ser_ret smr;
2196         int is_bigmsg = 0;
2197         char *holdM = NULL;
2198
2199         /* Get a new message number */
2200         newmsgid = get_new_message_number();
2201         snprintf(msgidbuf, sizeof msgidbuf, "%010ld@%s", newmsgid, config.c_fqdn);
2202
2203         /* Generate an ID if we don't have one already */
2204         if (msg->cm_fields['I']==NULL) {
2205                 msg->cm_fields['I'] = strdup(msgidbuf);
2206         }
2207
2208         /* If the message is big, set its body aside for storage elsewhere */
2209         if (msg->cm_fields['M'] != NULL) {
2210                 if (strlen(msg->cm_fields['M']) > BIGMSG) {
2211                         is_bigmsg = 1;
2212                         holdM = msg->cm_fields['M'];
2213                         msg->cm_fields['M'] = NULL;
2214                 }
2215         }
2216
2217         /* Serialize our data structure for storage in the database */  
2218         serialize_message(&smr, msg);
2219
2220         if (is_bigmsg) {
2221                 msg->cm_fields['M'] = holdM;
2222         }
2223
2224         if (smr.len == 0) {
2225                 cprintf("%d Unable to serialize message\n",
2226                         ERROR + INTERNAL_ERROR);
2227                 return (-1L);
2228         }
2229
2230         /* Write our little bundle of joy into the message base */
2231         if (cdb_store(CDB_MSGMAIN, &newmsgid, (int)sizeof(long),
2232                       smr.ser, smr.len) < 0) {
2233                 lprintf(CTDL_ERR, "Can't store message\n");
2234                 retval = 0L;
2235         } else {
2236                 if (is_bigmsg) {
2237                         cdb_store(CDB_BIGMSGS,
2238                                 &newmsgid,
2239                                 (int)sizeof(long),
2240                                 holdM,
2241                                 (strlen(holdM) + 1)
2242                         );
2243                 }
2244                 retval = newmsgid;
2245         }
2246
2247         /* Free the memory we used for the serialized message */
2248         free(smr.ser);
2249
2250         /* Return the *local* message ID to the caller
2251          * (even if we're storing an incoming network message)
2252          */
2253         return(retval);
2254 }
2255
2256
2257
2258 /*
2259  * Serialize a struct CtdlMessage into the format used on disk and network.
2260  * 
2261  * This function loads up a "struct ser_ret" (defined in server.h) which
2262  * contains the length of the serialized message and a pointer to the
2263  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
2264  */
2265 void serialize_message(struct ser_ret *ret,             /* return values */
2266                         struct CtdlMessage *msg)        /* unserialized msg */
2267 {
2268         size_t wlen, fieldlen;
2269         int i;
2270         static char *forder = FORDER;
2271
2272         /*
2273          * Check for valid message format
2274          */
2275         if (is_valid_message(msg) == 0) {
2276                 lprintf(CTDL_ERR, "serialize_message() aborting due to invalid message\n");
2277                 ret->len = 0;
2278                 ret->ser = NULL;
2279                 return;
2280         }
2281
2282         ret->len = 3;
2283         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
2284                 ret->len = ret->len +
2285                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
2286
2287         ret->ser = malloc(ret->len);
2288         if (ret->ser == NULL) {
2289                 lprintf(CTDL_ERR, "serialize_message() malloc(%ld) failed: %s\n",
2290                         (long)ret->len, strerror(errno));
2291                 ret->len = 0;
2292                 ret->ser = NULL;
2293                 return;
2294         }
2295
2296         ret->ser[0] = 0xFF;
2297         ret->ser[1] = msg->cm_anon_type;
2298         ret->ser[2] = msg->cm_format_type;
2299         wlen = 3;
2300
2301         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
2302                 fieldlen = strlen(msg->cm_fields[(int)forder[i]]);
2303                 ret->ser[wlen++] = (char)forder[i];
2304                 safestrncpy((char *)&ret->ser[wlen], msg->cm_fields[(int)forder[i]], fieldlen+1);
2305                 wlen = wlen + fieldlen + 1;
2306         }
2307         if (ret->len != wlen) lprintf(CTDL_ERR, "ERROR: len=%ld wlen=%ld\n",
2308                 (long)ret->len, (long)wlen);
2309
2310         return;
2311 }
2312
2313
2314
2315 /*
2316  * Check to see if any messages already exist in the current room which
2317  * carry the same Exclusive ID as this one.  If any are found, delete them.
2318  */
2319 void ReplicationChecks(struct CtdlMessage *msg) {
2320         long old_msgnum = (-1L);
2321
2322         if (DoesThisRoomNeedEuidIndexing(&CC->room) == 0) return;
2323
2324         lprintf(CTDL_DEBUG, "Performing replication checks in <%s>\n",
2325                 CC->room.QRname);
2326
2327         /* No exclusive id?  Don't do anything. */
2328         if (msg == NULL) return;
2329         if (msg->cm_fields['E'] == NULL) return;
2330         if (strlen(msg->cm_fields['E']) == 0) return;
2331         /*lprintf(CTDL_DEBUG, "Exclusive ID: <%s> for room <%s>\n",
2332                 msg->cm_fields['E'], CC->room.QRname);*/
2333
2334         old_msgnum = locate_message_by_euid(msg->cm_fields['E'], &CC->room);
2335         if (old_msgnum > 0L) {
2336                 lprintf(CTDL_DEBUG, "ReplicationChecks() replacing message %ld\n", old_msgnum);
2337                 CtdlDeleteMessages(CC->room.QRname, &old_msgnum, 1, "");
2338         }
2339 }
2340
2341
2342
2343 /*
2344  * Save a message to disk and submit it into the delivery system.
2345  */
2346 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
2347                 struct recptypes *recps,        /* recipients (if mail) */
2348                 char *force                     /* force a particular room? */
2349 ) {
2350         char submit_filename[128];
2351         char generated_timestamp[32];
2352         char hold_rm[ROOMNAMELEN];
2353         char actual_rm[ROOMNAMELEN];
2354         char force_room[ROOMNAMELEN];
2355         char content_type[SIZ];                 /* We have to learn this */
2356         char recipient[SIZ];
2357         long newmsgid;
2358         char *mptr = NULL;
2359         struct ctdluser userbuf;
2360         int a, i;
2361         struct MetaData smi;
2362         FILE *network_fp = NULL;
2363         static int seqnum = 1;
2364         struct CtdlMessage *imsg = NULL;
2365         char *instr = NULL;
2366         size_t instr_alloc = 0;
2367         struct ser_ret smr;
2368         char *hold_R, *hold_D;
2369         char *collected_addresses = NULL;
2370         struct addresses_to_be_filed *aptr = NULL;
2371         char *saved_rfc822_version = NULL;
2372         int qualified_for_journaling = 0;
2373
2374         lprintf(CTDL_DEBUG, "CtdlSubmitMsg() called\n");
2375         if (is_valid_message(msg) == 0) return(-1);     /* self check */
2376
2377         /* If this message has no timestamp, we take the liberty of
2378          * giving it one, right now.
2379          */
2380         if (msg->cm_fields['T'] == NULL) {
2381                 snprintf(generated_timestamp, sizeof generated_timestamp, "%ld", (long)time(NULL));
2382                 msg->cm_fields['T'] = strdup(generated_timestamp);
2383         }
2384
2385         /* If this message has no path, we generate one.
2386          */
2387         if (msg->cm_fields['P'] == NULL) {
2388                 if (msg->cm_fields['A'] != NULL) {
2389                         msg->cm_fields['P'] = strdup(msg->cm_fields['A']);
2390                         for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
2391                                 if (isspace(msg->cm_fields['P'][a])) {
2392                                         msg->cm_fields['P'][a] = ' ';
2393                                 }
2394                         }
2395                 }
2396                 else {
2397                         msg->cm_fields['P'] = strdup("unknown");
2398                 }
2399         }
2400
2401         if (force == NULL) {
2402                 strcpy(force_room, "");
2403         }
2404         else {
2405                 strcpy(force_room, force);
2406         }
2407
2408         /* Learn about what's inside, because it's what's inside that counts */
2409         if (msg->cm_fields['M'] == NULL) {
2410                 lprintf(CTDL_ERR, "ERROR: attempt to save message with NULL body\n");
2411                 return(-2);
2412         }
2413
2414         switch (msg->cm_format_type) {
2415         case 0:
2416                 strcpy(content_type, "text/x-citadel-variformat");
2417                 break;
2418         case 1:
2419                 strcpy(content_type, "text/plain");
2420                 break;
2421         case 4:
2422                 strcpy(content_type, "text/plain");
2423                 mptr = bmstrcasestr(msg->cm_fields['M'], "Content-type:");
2424                 if (mptr != NULL) {
2425                         safestrncpy(content_type, &mptr[13], sizeof content_type);
2426                         striplt(content_type);
2427                         for (a = 0; a < strlen(content_type); ++a) {
2428                                 if ((content_type[a] == ';')
2429                                     || (content_type[a] == ' ')
2430                                     || (content_type[a] == 13)
2431                                     || (content_type[a] == 10)) {
2432                                         content_type[a] = 0;
2433                                 }
2434                         }
2435                 }
2436         }
2437
2438         /* Goto the correct room */
2439         lprintf(CTDL_DEBUG, "Selected room %s\n", (recps) ? CC->room.QRname : SENTITEMS);
2440         strcpy(hold_rm, CC->room.QRname);
2441         strcpy(actual_rm, CC->room.QRname);
2442         if (recps != NULL) {
2443                 strcpy(actual_rm, SENTITEMS);
2444         }
2445
2446         /* If the user is a twit, move to the twit room for posting */
2447         if (TWITDETECT) {
2448                 if (CC->user.axlevel == 2) {
2449                         strcpy(hold_rm, actual_rm);
2450                         strcpy(actual_rm, config.c_twitroom);
2451                         lprintf(CTDL_DEBUG, "Diverting to twit room\n");
2452                 }
2453         }
2454
2455         /* ...or if this message is destined for Aide> then go there. */
2456         if (strlen(force_room) > 0) {
2457                 strcpy(actual_rm, force_room);
2458         }
2459
2460         lprintf(CTDL_DEBUG, "Final selection: %s\n", actual_rm);
2461         if (strcasecmp(actual_rm, CC->room.QRname)) {
2462                 /* getroom(&CC->room, actual_rm); */
2463                 usergoto(actual_rm, 0, 1, NULL, NULL);
2464         }
2465
2466         /*
2467          * If this message has no O (room) field, generate one.
2468          */
2469         if (msg->cm_fields['O'] == NULL) {
2470                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2471         }
2472
2473         /* Perform "before save" hooks (aborting if any return nonzero) */
2474         lprintf(CTDL_DEBUG, "Performing before-save hooks\n");
2475         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-3);
2476
2477         /*
2478          * If this message has an Exclusive ID, and the room is replication
2479          * checking enabled, then do replication checks.
2480          */
2481         if (DoesThisRoomNeedEuidIndexing(&CC->room)) {
2482                 ReplicationChecks(msg);
2483         }
2484
2485         /* Save it to disk */
2486         lprintf(CTDL_DEBUG, "Saving to disk\n");
2487         newmsgid = send_message(msg);
2488         if (newmsgid <= 0L) return(-5);
2489
2490         /* Write a supplemental message info record.  This doesn't have to
2491          * be a critical section because nobody else knows about this message
2492          * yet.
2493          */
2494         lprintf(CTDL_DEBUG, "Creating MetaData record\n");
2495         memset(&smi, 0, sizeof(struct MetaData));
2496         smi.meta_msgnum = newmsgid;
2497         smi.meta_refcount = 0;
2498         safestrncpy(smi.meta_content_type, content_type,
2499                         sizeof smi.meta_content_type);
2500
2501         /*
2502          * Measure how big this message will be when rendered as RFC822.
2503          * We do this for two reasons:
2504          * 1. We need the RFC822 length for the new metadata record, so the
2505          *    POP and IMAP services don't have to calculate message lengths
2506          *    while the user is waiting (multiplied by potentially hundreds
2507          *    or thousands of messages).
2508          * 2. If journaling is enabled, we will need an RFC822 version of the
2509          *    message to attach to the journalized copy.
2510          */
2511         if (CC->redirect_buffer != NULL) {
2512                 lprintf(CTDL_ALERT, "CC->redirect_buffer is not NULL during message submission!\n");
2513                 abort();
2514         }
2515         CC->redirect_buffer = malloc(SIZ);
2516         CC->redirect_len = 0;
2517         CC->redirect_alloc = SIZ;
2518         CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ALL, 0, 1);
2519         smi.meta_rfc822_length = CC->redirect_len;
2520         saved_rfc822_version = CC->redirect_buffer;
2521         CC->redirect_buffer = NULL;
2522         CC->redirect_len = 0;
2523         CC->redirect_alloc = 0;
2524
2525         PutMetaData(&smi);
2526
2527         /* Now figure out where to store the pointers */
2528         lprintf(CTDL_DEBUG, "Storing pointers\n");
2529
2530         /* If this is being done by the networker delivering a private
2531          * message, we want to BYPASS saving the sender's copy (because there
2532          * is no local sender; it would otherwise go to the Trashcan).
2533          */
2534         if ((!CC->internal_pgm) || (recps == NULL)) {
2535                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 1, msg) != 0) {
2536                         lprintf(CTDL_ERR, "ERROR saving message pointer!\n");
2537                         CtdlSaveMsgPointerInRoom(config.c_aideroom, newmsgid, 0, msg);
2538                 }
2539         }
2540
2541         /* For internet mail, drop a copy in the outbound queue room */
2542         if (recps != NULL)
2543          if (recps->num_internet > 0) {
2544                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0, msg);
2545         }
2546
2547         /* If other rooms are specified, drop them there too. */
2548         if (recps != NULL)
2549          if (recps->num_room > 0)
2550           for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
2551                 extract_token(recipient, recps->recp_room, i,
2552                                         '|', sizeof recipient);
2553                 lprintf(CTDL_DEBUG, "Delivering to room <%s>\n", recipient);
2554                 CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0, msg);
2555         }
2556
2557         /* Bump this user's messages posted counter. */
2558         lprintf(CTDL_DEBUG, "Updating user\n");
2559         lgetuser(&CC->user, CC->curr_user);
2560         CC->user.posted = CC->user.posted + 1;
2561         lputuser(&CC->user);
2562
2563         /* If this is private, local mail, make a copy in the
2564          * recipient's mailbox and bump the reference count.
2565          */
2566         if (recps != NULL)
2567          if (recps->num_local > 0)
2568           for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
2569                 extract_token(recipient, recps->recp_local, i,
2570                                         '|', sizeof recipient);
2571                 lprintf(CTDL_DEBUG, "Delivering private local mail to <%s>\n",
2572                         recipient);
2573                 if (getuser(&userbuf, recipient) == 0) {
2574                         // Add a flag so the Funambol module knows its mail
2575                         msg->cm_fields['W'] = strdup(recipient);
2576                         MailboxName(actual_rm, sizeof actual_rm, &userbuf, MAILROOM);
2577                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0, msg);
2578                         BumpNewMailCounter(userbuf.usernum);
2579                         if (strlen(config.c_funambol_host) > 0) {
2580                         /* Generate a instruction message for the Funambol notification
2581                          * server, in the same style as the SMTP queue
2582                          */
2583                            instr_alloc = 1024;
2584                            instr = malloc(instr_alloc);
2585                            snprintf(instr, instr_alloc,
2586                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2587                         "bounceto|%s@%s\n",
2588                         SPOOLMIME, newmsgid, (long)time(NULL),
2589                         msg->cm_fields['A'], msg->cm_fields['N']
2590                         );
2591
2592                            imsg = malloc(sizeof(struct CtdlMessage));
2593                            memset(imsg, 0, sizeof(struct CtdlMessage));
2594                            imsg->cm_magic = CTDLMESSAGE_MAGIC;
2595                            imsg->cm_anon_type = MES_NORMAL;
2596                            imsg->cm_format_type = FMT_RFC822;
2597                            imsg->cm_fields['A'] = strdup("Citadel");
2598                            imsg->cm_fields['J'] = strdup("do not journal");
2599                            imsg->cm_fields['M'] = instr;        /* imsg owns this memory now */
2600                            imsg->cm_fields['W'] = strdup(recipient);
2601                            CtdlSubmitMsg(imsg, NULL, FNBL_QUEUE_ROOM);
2602                            CtdlFreeMessage(imsg);
2603                         }
2604                 }
2605                 else {
2606                         lprintf(CTDL_DEBUG, "No user <%s>\n", recipient);
2607                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2608                                 newmsgid, 0, msg);
2609                 }
2610         }
2611
2612         /* Perform "after save" hooks */
2613         lprintf(CTDL_DEBUG, "Performing after-save hooks\n");
2614         PerformMessageHooks(msg, EVT_AFTERSAVE);
2615
2616         /* For IGnet mail, we have to save a new copy into the spooler for
2617          * each recipient, with the R and D fields set to the recipient and
2618          * destination-node.  This has two ugly side effects: all other
2619          * recipients end up being unlisted in this recipient's copy of the
2620          * message, and it has to deliver multiple messages to the same
2621          * node.  We'll revisit this again in a year or so when everyone has
2622          * a network spool receiver that can handle the new style messages.
2623          */
2624         if (recps != NULL)
2625          if (recps->num_ignet > 0)
2626           for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
2627                 extract_token(recipient, recps->recp_ignet, i,
2628                                 '|', sizeof recipient);
2629
2630                 hold_R = msg->cm_fields['R'];
2631                 hold_D = msg->cm_fields['D'];
2632                 msg->cm_fields['R'] = malloc(SIZ);
2633                 msg->cm_fields['D'] = malloc(128);
2634                 extract_token(msg->cm_fields['R'], recipient, 0, '@', SIZ);
2635                 extract_token(msg->cm_fields['D'], recipient, 1, '@', 128);
2636                 
2637                 serialize_message(&smr, msg);
2638                 if (smr.len > 0) {
2639                         snprintf(submit_filename, sizeof submit_filename,
2640                                          "%s/netmail.%04lx.%04x.%04x",
2641                                          ctdl_netin_dir,
2642                                          (long) getpid(), CC->cs_pid, ++seqnum);
2643                         network_fp = fopen(submit_filename, "wb+");
2644                         if (network_fp != NULL) {
2645                                 fwrite(smr.ser, smr.len, 1, network_fp);
2646                                 fclose(network_fp);
2647                         }
2648                         free(smr.ser);
2649                 }
2650
2651                 free(msg->cm_fields['R']);
2652                 free(msg->cm_fields['D']);
2653                 msg->cm_fields['R'] = hold_R;
2654                 msg->cm_fields['D'] = hold_D;
2655         }
2656
2657         /* Go back to the room we started from */
2658         lprintf(CTDL_DEBUG, "Returning to original room %s\n", hold_rm);
2659         if (strcasecmp(hold_rm, CC->room.QRname))
2660                 usergoto(hold_rm, 0, 1, NULL, NULL);
2661
2662         /* For internet mail, generate delivery instructions.
2663          * Yes, this is recursive.  Deal with it.  Infinite recursion does
2664          * not happen because the delivery instructions message does not
2665          * contain a recipient.
2666          */
2667         if (recps != NULL)
2668          if (recps->num_internet > 0) {
2669                 lprintf(CTDL_DEBUG, "Generating delivery instructions\n");
2670                 instr_alloc = 1024;
2671                 instr = malloc(instr_alloc);
2672                 snprintf(instr, instr_alloc,
2673                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2674                         "bounceto|%s@%s\n",
2675                         SPOOLMIME, newmsgid, (long)time(NULL),
2676                         msg->cm_fields['A'], msg->cm_fields['N']
2677                 );
2678
2679                 for (i=0; i<num_tokens(recps->recp_internet, '|'); ++i) {
2680                         size_t tmp = strlen(instr);
2681                         extract_token(recipient, recps->recp_internet, i, '|', sizeof recipient);
2682                         if ((tmp + strlen(recipient) + 32) > instr_alloc) {
2683                                 instr_alloc = instr_alloc * 2;
2684                                 instr = realloc(instr, instr_alloc);
2685                         }
2686                         snprintf(&instr[tmp], instr_alloc - tmp, "remote|%s|0||\n", recipient);
2687                 }
2688
2689                 imsg = malloc(sizeof(struct CtdlMessage));
2690                 memset(imsg, 0, sizeof(struct CtdlMessage));
2691                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
2692                 imsg->cm_anon_type = MES_NORMAL;
2693                 imsg->cm_format_type = FMT_RFC822;
2694                 imsg->cm_fields['A'] = strdup("Citadel");
2695                 imsg->cm_fields['J'] = strdup("do not journal");
2696                 imsg->cm_fields['M'] = instr;   /* imsg owns this memory now */
2697                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM);
2698                 CtdlFreeMessage(imsg);
2699         }
2700
2701         /*
2702          * Any addresses to harvest for someone's address book?
2703          */
2704         if ( (CC->logged_in) && (recps != NULL) ) {
2705                 collected_addresses = harvest_collected_addresses(msg);
2706         }
2707
2708         if (collected_addresses != NULL) {
2709                 begin_critical_section(S_ATBF);
2710                 aptr = (struct addresses_to_be_filed *)
2711                         malloc(sizeof(struct addresses_to_be_filed));
2712                 aptr->next = atbf;
2713                 MailboxName(actual_rm, sizeof actual_rm,
2714                         &CC->user, USERCONTACTSROOM);
2715                 aptr->roomname = strdup(actual_rm);
2716                 aptr->collected_addresses = collected_addresses;
2717                 atbf = aptr;
2718                 end_critical_section(S_ATBF);
2719         }
2720
2721         /*
2722          * Determine whether this message qualifies for journaling.
2723          */
2724         if (msg->cm_fields['J'] != NULL) {
2725                 qualified_for_journaling = 0;
2726         }
2727         else {
2728                 if (recps == NULL) {
2729                         qualified_for_journaling = config.c_journal_pubmsgs;
2730                 }
2731                 else if (recps->num_local + recps->num_ignet + recps->num_internet > 0) {
2732                         qualified_for_journaling = config.c_journal_email;
2733                 }
2734                 else {
2735                         qualified_for_journaling = config.c_journal_pubmsgs;
2736                 }
2737         }
2738
2739         /*
2740          * Do we have to perform journaling?  If so, hand off the saved
2741          * RFC822 version will be handed off to the journaler for background
2742          * submit.  Otherwise, we have to free the memory ourselves.
2743          */
2744         if (saved_rfc822_version != NULL) {
2745                 if (qualified_for_journaling) {
2746                         JournalBackgroundSubmit(msg, saved_rfc822_version, recps);
2747                 }
2748                 else {
2749                         free(saved_rfc822_version);
2750                 }
2751         }
2752
2753         /* Done. */
2754         return(newmsgid);
2755 }
2756
2757
2758
2759
2760
2761 /*
2762  * Convenience function for generating small administrative messages.
2763  */
2764 void quickie_message(char *from, char *fromaddr, char *to, char *room, char *text, 
2765                         int format_type, char *subject)
2766 {
2767         struct CtdlMessage *msg;
2768         struct recptypes *recp = NULL;
2769
2770         msg = malloc(sizeof(struct CtdlMessage));
2771         memset(msg, 0, sizeof(struct CtdlMessage));
2772         msg->cm_magic = CTDLMESSAGE_MAGIC;
2773         msg->cm_anon_type = MES_NORMAL;
2774         msg->cm_format_type = format_type;
2775
2776         if (from != NULL) {
2777                 msg->cm_fields['A'] = strdup(from);
2778         }
2779         else if (fromaddr != NULL) {
2780                 msg->cm_fields['A'] = strdup(fromaddr);
2781                 if (strchr(msg->cm_fields['A'], '@')) {
2782                         *strchr(msg->cm_fields['A'], '@') = 0;
2783                 }
2784         }
2785         else {
2786                 msg->cm_fields['A'] = strdup("Citadel");
2787         }
2788
2789         if (fromaddr != NULL) msg->cm_fields['F'] = strdup(fromaddr);
2790         if (room != NULL) msg->cm_fields['O'] = strdup(room);
2791         msg->cm_fields['N'] = strdup(NODENAME);
2792         if (to != NULL) {
2793                 msg->cm_fields['R'] = strdup(to);
2794                 recp = validate_recipients(to);
2795         }
2796         if (subject != NULL) {
2797                 msg->cm_fields['U'] = strdup(subject);
2798         }
2799         msg->cm_fields['M'] = strdup(text);
2800
2801         CtdlSubmitMsg(msg, recp, room);
2802         CtdlFreeMessage(msg);
2803         if (recp != NULL) free_recipients(recp);
2804 }
2805
2806
2807
2808 /*
2809  * Back end function used by CtdlMakeMessage() and similar functions
2810  */
2811 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
2812                         size_t maxlen,          /* maximum message length */
2813                         char *exist,            /* if non-null, append to it;
2814                                                    exist is ALWAYS freed  */
2815                         int crlf                /* CRLF newlines instead of LF */
2816                         ) {
2817         char buf[1024];
2818         int linelen;
2819         size_t message_len = 0;
2820         size_t buffer_len = 0;
2821         char *ptr;
2822         char *m;
2823         int flushing = 0;
2824         int finished = 0;
2825         int dotdot = 0;
2826
2827         if (exist == NULL) {
2828                 m = malloc(4096);
2829                 m[0] = 0;
2830                 buffer_len = 4096;
2831                 message_len = 0;
2832         }
2833         else {
2834                 message_len = strlen(exist);
2835                 buffer_len = message_len + 4096;
2836                 m = realloc(exist, buffer_len);
2837                 if (m == NULL) {
2838                         free(exist);
2839                         return m;
2840                 }
2841         }
2842
2843         /* Do we need to change leading ".." to "." for SMTP escaping? */
2844         if (!strcmp(terminator, ".")) {
2845                 dotdot = 1;
2846         }
2847
2848         /* flush the input if we have nowhere to store it */
2849         if (m == NULL) {
2850                 flushing = 1;
2851         }
2852
2853         /* read in the lines of message text one by one */
2854         do {
2855                 if (client_getln(buf, (sizeof buf - 3)) < 1) finished = 1;
2856                 if (!strcmp(buf, terminator)) finished = 1;
2857                 if (crlf) {
2858                         strcat(buf, "\r\n");
2859                 }
2860                 else {
2861                         strcat(buf, "\n");
2862                 }
2863
2864                 /* Unescape SMTP-style input of two dots at the beginning of the line */
2865                 if (dotdot) {
2866                         if (!strncmp(buf, "..", 2)) {
2867                                 strcpy(buf, &buf[1]);
2868                         }
2869                 }
2870
2871                 if ( (!flushing) && (!finished) ) {
2872                         /* Measure the line */
2873                         linelen = strlen(buf);
2874         
2875                         /* augment the buffer if we have to */
2876                         if ((message_len + linelen) >= buffer_len) {
2877                                 ptr = realloc(m, (buffer_len * 2) );
2878                                 if (ptr == NULL) {      /* flush if can't allocate */
2879                                         flushing = 1;
2880                                 } else {
2881                                         buffer_len = (buffer_len * 2);
2882                                         m = ptr;
2883                                         lprintf(CTDL_DEBUG, "buffer_len is now %ld\n", (long)buffer_len);
2884                                 }
2885                         }
2886         
2887                         /* Add the new line to the buffer.  NOTE: this loop must avoid
2888                         * using functions like strcat() and strlen() because they
2889                         * traverse the entire buffer upon every call, and doing that
2890                         * for a multi-megabyte message slows it down beyond usability.
2891                         */
2892                         strcpy(&m[message_len], buf);
2893                         message_len += linelen;
2894                 }
2895
2896                 /* if we've hit the max msg length, flush the rest */
2897                 if (message_len >= maxlen) flushing = 1;
2898
2899         } while (!finished);
2900         return(m);
2901 }
2902
2903
2904
2905
2906 /*
2907  * Build a binary message to be saved on disk.
2908  * (NOTE: if you supply 'preformatted_text', the buffer you give it
2909  * will become part of the message.  This means you are no longer
2910  * responsible for managing that memory -- it will be freed along with
2911  * the rest of the fields when CtdlFreeMessage() is called.)
2912  */
2913
2914 struct CtdlMessage *CtdlMakeMessage(
2915         struct ctdluser *author,        /* author's user structure */
2916         char *recipient,                /* NULL if it's not mail */
2917         char *recp_cc,                  /* NULL if it's not mail */
2918         char *room,                     /* room where it's going */
2919         int type,                       /* see MES_ types in header file */
2920         int format_type,                /* variformat, plain text, MIME... */
2921         char *fake_name,                /* who we're masquerading as */
2922         char *my_email,                 /* which of my email addresses to use (empty is ok) */
2923         char *subject,                  /* Subject (optional) */
2924         char *supplied_euid,            /* ...or NULL if this is irrelevant */
2925         char *preformatted_text         /* ...or NULL to read text from client */
2926 ) {
2927         char dest_node[256];
2928         char buf[1024];
2929         struct CtdlMessage *msg;
2930
2931         msg = malloc(sizeof(struct CtdlMessage));
2932         memset(msg, 0, sizeof(struct CtdlMessage));
2933         msg->cm_magic = CTDLMESSAGE_MAGIC;
2934         msg->cm_anon_type = type;
2935         msg->cm_format_type = format_type;
2936
2937         /* Don't confuse the poor folks if it's not routed mail. */
2938         strcpy(dest_node, "");
2939
2940         striplt(recipient);
2941         striplt(recp_cc);
2942
2943         snprintf(buf, sizeof buf, "cit%ld", author->usernum);   /* Path */
2944         msg->cm_fields['P'] = strdup(buf);
2945
2946         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
2947         msg->cm_fields['T'] = strdup(buf);
2948
2949         if (fake_name[0])                                       /* author */
2950                 msg->cm_fields['A'] = strdup(fake_name);
2951         else
2952                 msg->cm_fields['A'] = strdup(author->fullname);
2953
2954         if (CC->room.QRflags & QR_MAILBOX) {            /* room */
2955                 msg->cm_fields['O'] = strdup(&CC->room.QRname[11]);
2956         }
2957         else {
2958                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2959         }
2960
2961         msg->cm_fields['N'] = strdup(NODENAME);         /* nodename */
2962         msg->cm_fields['H'] = strdup(HUMANNODE);                /* hnodename */
2963
2964         if (recipient[0] != 0) {
2965                 msg->cm_fields['R'] = strdup(recipient);
2966         }
2967         if (recp_cc[0] != 0) {
2968                 msg->cm_fields['Y'] = strdup(recp_cc);
2969         }
2970         if (dest_node[0] != 0) {
2971                 msg->cm_fields['D'] = strdup(dest_node);
2972         }
2973
2974         if (strlen(my_email) > 0) {
2975                 msg->cm_fields['F'] = strdup(my_email);
2976         }
2977         else if ( (author == &CC->user) && (strlen(CC->cs_inet_email) > 0) ) {
2978                 msg->cm_fields['F'] = strdup(CC->cs_inet_email);
2979         }
2980
2981         if (subject != NULL) {
2982                 long length;
2983                 striplt(subject);
2984                 length = strlen(subject);
2985                 if (length > 0) {
2986                         long i;
2987                         long IsAscii;
2988                         IsAscii = -1;
2989                         i = 0;
2990                         while ((subject[i] != '\0') &&
2991                                (IsAscii = isascii(subject[i]) != 0 ))
2992                                 i++;
2993                         if (IsAscii != 0)
2994                                 msg->cm_fields['U'] = strdup(subject);
2995                         else /* ok, we've got utf8 in the string. */
2996                         {
2997                                 msg->cm_fields['U'] = rfc2047encode(subject, length);
2998                         }
2999
3000                 }
3001         }
3002
3003         if (supplied_euid != NULL) {
3004                 msg->cm_fields['E'] = strdup(supplied_euid);
3005         }
3006
3007         if (preformatted_text != NULL) {
3008                 msg->cm_fields['M'] = preformatted_text;
3009         }
3010         else {
3011                 msg->cm_fields['M'] = CtdlReadMessageBody("000", config.c_maxmsglen, NULL, 0);
3012         }
3013
3014         return(msg);
3015 }
3016
3017
3018 /*
3019  * Check to see whether we have permission to post a message in the current
3020  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
3021  * returns 0 on success.
3022  */
3023 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, size_t n) {
3024         int ra;
3025
3026         if (!(CC->logged_in)) {
3027                 snprintf(errmsgbuf, n, "Not logged in.");
3028                 return (ERROR + NOT_LOGGED_IN);
3029         }
3030
3031         if ((CC->user.axlevel < 2)
3032             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
3033                 snprintf(errmsgbuf, n, "Need to be validated to enter "
3034                                 "(except in %s> to sysop)", MAILROOM);
3035                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3036         }
3037
3038         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
3039         if (!(ra & UA_POSTALLOWED)) {
3040                 snprintf(errmsgbuf, n, "Higher access is required to post in this room.");
3041                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3042         }
3043
3044         strcpy(errmsgbuf, "Ok");
3045         return(0);
3046 }
3047
3048
3049 /*
3050  * Check to see if the specified user has Internet mail permission
3051  * (returns nonzero if permission is granted)
3052  */
3053 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
3054
3055         /* Do not allow twits to send Internet mail */
3056         if (who->axlevel <= 2) return(0);
3057
3058         /* Globally enabled? */
3059         if (config.c_restrict == 0) return(1);
3060
3061         /* User flagged ok? */
3062         if (who->flags & US_INTERNET) return(2);
3063
3064         /* Aide level access? */
3065         if (who->axlevel >= 6) return(3);
3066
3067         /* No mail for you! */
3068         return(0);
3069 }
3070
3071
3072 /*
3073  * Validate recipients, count delivery types and errors, and handle aliasing
3074  * FIXME check for dupes!!!!!
3075  *
3076  * Returns 0 if all addresses are ok, ret->num_error = -1 if no addresses 
3077  * were specified, or the number of addresses found invalid.
3078  *
3079  * Caller needs to free the result using free_recipients()
3080  */
3081 struct recptypes *validate_recipients(char *supplied_recipients) {
3082         struct recptypes *ret;
3083         char *recipients = NULL;
3084         char this_recp[256];
3085         char this_recp_cooked[256];
3086         char append[SIZ];
3087         int num_recps = 0;
3088         int i, j;
3089         int mailtype;
3090         int invalid;
3091         struct ctdluser tempUS;
3092         struct ctdlroom tempQR;
3093         int in_quotes = 0;
3094
3095         /* Initialize */
3096         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
3097         if (ret == NULL) return(NULL);
3098
3099         /* Set all strings to null and numeric values to zero */
3100         memset(ret, 0, sizeof(struct recptypes));
3101
3102         if (supplied_recipients == NULL) {
3103                 recipients = strdup("");
3104         }
3105         else {
3106                 recipients = strdup(supplied_recipients);
3107         }
3108
3109         /* Allocate some memory.  Yes, this allocates 500% more memory than we will
3110          * actually need, but it's healthier for the heap than doing lots of tiny
3111          * realloc() calls instead.
3112          */
3113
3114         ret->errormsg = malloc(strlen(recipients) + 1024);
3115         ret->recp_local = malloc(strlen(recipients) + 1024);
3116         ret->recp_internet = malloc(strlen(recipients) + 1024);
3117         ret->recp_ignet = malloc(strlen(recipients) + 1024);
3118         ret->recp_room = malloc(strlen(recipients) + 1024);
3119         ret->display_recp = malloc(strlen(recipients) + 1024);
3120
3121         ret->errormsg[0] = 0;
3122         ret->recp_local[0] = 0;
3123         ret->recp_internet[0] = 0;
3124         ret->recp_ignet[0] = 0;
3125         ret->recp_room[0] = 0;
3126         ret->display_recp[0] = 0;
3127
3128         ret->recptypes_magic = RECPTYPES_MAGIC;
3129
3130         /* Change all valid separator characters to commas */
3131         for (i=0; i<strlen(recipients); ++i) {
3132                 if ((recipients[i] == ';') || (recipients[i] == '|')) {
3133                         recipients[i] = ',';
3134                 }
3135         }
3136
3137         /* Now start extracting recipients... */
3138
3139         while (strlen(recipients) > 0) {
3140
3141                 for (i=0; i<=strlen(recipients); ++i) {
3142                         if (recipients[i] == '\"') in_quotes = 1 - in_quotes;
3143                         if ( ( (recipients[i] == ',') && (!in_quotes) ) || (recipients[i] == 0) ) {
3144                                 safestrncpy(this_recp, recipients, i+1);
3145                                 this_recp[i] = 0;
3146                                 if (recipients[i] == ',') {
3147                                         strcpy(recipients, &recipients[i+1]);
3148                                 }
3149                                 else {
3150                                         strcpy(recipients, "");
3151                                 }
3152                                 break;
3153                         }
3154                 }
3155
3156                 striplt(this_recp);
3157                 lprintf(CTDL_DEBUG, "Evaluating recipient #%d: %s\n", num_recps, this_recp);
3158                 ++num_recps;
3159                 mailtype = alias(this_recp);
3160                 mailtype = alias(this_recp);
3161                 mailtype = alias(this_recp);
3162                 for (j=0; j<=strlen(this_recp); ++j) {
3163                         if (this_recp[j]=='_') {
3164                                 this_recp_cooked[j] = ' ';
3165                         }
3166                         else {
3167                                 this_recp_cooked[j] = this_recp[j];
3168                         }
3169                 }
3170                 invalid = 0;
3171                 switch(mailtype) {
3172                         case MES_LOCAL:
3173                                 if (!strcasecmp(this_recp, "sysop")) {
3174                                         ++ret->num_room;
3175                                         strcpy(this_recp, config.c_aideroom);
3176                                         if (strlen(ret->recp_room) > 0) {
3177                                                 strcat(ret->recp_room, "|");
3178                                         }
3179                                         strcat(ret->recp_room, this_recp);
3180                                 }
3181                                 else if (getuser(&tempUS, this_recp) == 0) {
3182                                         ++ret->num_local;
3183                                         strcpy(this_recp, tempUS.fullname);
3184                                         if (strlen(ret->recp_local) > 0) {
3185                                                 strcat(ret->recp_local, "|");
3186                                         }
3187                                         strcat(ret->recp_local, this_recp);
3188                                 }
3189                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
3190                                         ++ret->num_local;
3191                                         strcpy(this_recp, tempUS.fullname);
3192                                         if (strlen(ret->recp_local) > 0) {
3193                                                 strcat(ret->recp_local, "|");
3194                                         }
3195                                         strcat(ret->recp_local, this_recp);
3196                                 }
3197                                 else if ( (!strncasecmp(this_recp, "room_", 5))
3198                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
3199                                         ++ret->num_room;
3200                                         if (strlen(ret->recp_room) > 0) {
3201                                                 strcat(ret->recp_room, "|");
3202                                         }
3203                                         strcat(ret->recp_room, &this_recp_cooked[5]);
3204                                 }
3205                                 else {
3206                                         ++ret->num_error;
3207                                         invalid = 1;
3208                                 }
3209                                 break;
3210                         case MES_INTERNET:
3211                                 /* Yes, you're reading this correctly: if the target
3212                                  * domain points back to the local system or an attached
3213                                  * Citadel directory, the address is invalid.  That's
3214                                  * because if the address were valid, we would have
3215                                  * already translated it to a local address by now.
3216                                  */
3217                                 if (IsDirectory(this_recp)) {
3218                                         ++ret->num_error;
3219                                         invalid = 1;
3220                                 }
3221                                 else {
3222                                         ++ret->num_internet;
3223                                         if (strlen(ret->recp_internet) > 0) {
3224                                                 strcat(ret->recp_internet, "|");
3225                                         }
3226                                         strcat(ret->recp_internet, this_recp);
3227                                 }
3228                                 break;
3229                         case MES_IGNET:
3230                                 ++ret->num_ignet;
3231                                 if (strlen(ret->recp_ignet) > 0) {
3232                                         strcat(ret->recp_ignet, "|");
3233                                 }
3234                                 strcat(ret->recp_ignet, this_recp);
3235                                 break;
3236                         case MES_ERROR:
3237                                 ++ret->num_error;
3238                                 invalid = 1;
3239                                 break;
3240                 }
3241                 if (invalid) {
3242                         if (strlen(ret->errormsg) == 0) {
3243                                 snprintf(append, sizeof append,
3244                                          "Invalid recipient: %s",
3245                                          this_recp);
3246                         }
3247                         else {
3248                                 snprintf(append, sizeof append, ", %s", this_recp);
3249                         }
3250                         if ( (strlen(ret->errormsg) + strlen(append)) < SIZ) {
3251                                 strcat(ret->errormsg, append);
3252                         }
3253                 }
3254                 else {
3255                         if (strlen(ret->display_recp) == 0) {
3256                                 strcpy(append, this_recp);
3257                         }
3258                         else {
3259                                 snprintf(append, sizeof append, ", %s", this_recp);
3260                         }
3261                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
3262                                 strcat(ret->display_recp, append);
3263                         }
3264                 }
3265         }
3266
3267         if ((ret->num_local + ret->num_internet + ret->num_ignet +
3268            ret->num_room + ret->num_error) == 0) {
3269                 ret->num_error = (-1);
3270                 strcpy(ret->errormsg, "No recipients specified.");
3271         }
3272
3273         lprintf(CTDL_DEBUG, "validate_recipients()\n");
3274         lprintf(CTDL_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
3275         lprintf(CTDL_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
3276         lprintf(CTDL_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
3277         lprintf(CTDL_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
3278         lprintf(CTDL_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
3279
3280         free(recipients);
3281         return(ret);
3282 }
3283
3284
3285 /*
3286  * Destructor for struct recptypes
3287  */
3288 void free_recipients(struct recptypes *valid) {
3289
3290         if (valid == NULL) {
3291                 return;
3292         }
3293
3294         if (valid->recptypes_magic != RECPTYPES_MAGIC) {
3295                 lprintf(CTDL_EMERG, "Attempt to call free_recipients() on some other data type!\n");
3296                 abort();
3297         }
3298
3299         if (valid->errormsg != NULL)            free(valid->errormsg);
3300         if (valid->recp_local != NULL)          free(valid->recp_local);
3301         if (valid->recp_internet != NULL)       free(valid->recp_internet);
3302         if (valid->recp_ignet != NULL)          free(valid->recp_ignet);
3303         if (valid->recp_room != NULL)           free(valid->recp_room);
3304         if (valid->display_recp != NULL)        free(valid->display_recp);
3305         free(valid);
3306 }
3307
3308
3309
3310 /*
3311  * message entry  -  mode 0 (normal)
3312  */
3313 void cmd_ent0(char *entargs)
3314 {
3315         int post = 0;
3316         char recp[SIZ];
3317         char cc[SIZ];
3318         char bcc[SIZ];
3319         char supplied_euid[128];
3320         int anon_flag = 0;
3321         int format_type = 0;
3322         char newusername[256];
3323         char newuseremail[256];
3324         struct CtdlMessage *msg;
3325         int anonymous = 0;
3326         char errmsg[SIZ];
3327         int err = 0;
3328         struct recptypes *valid = NULL;
3329         struct recptypes *valid_to = NULL;
3330         struct recptypes *valid_cc = NULL;
3331         struct recptypes *valid_bcc = NULL;
3332         char subject[SIZ];
3333         int do_confirm = 0;
3334         long msgnum;
3335         int i, j;
3336         char buf[256];
3337         int newuseremail_ok = 0;
3338
3339         unbuffer_output();
3340
3341         post = extract_int(entargs, 0);
3342         extract_token(recp, entargs, 1, '|', sizeof recp);
3343         anon_flag = extract_int(entargs, 2);
3344         format_type = extract_int(entargs, 3);
3345         extract_token(subject, entargs, 4, '|', sizeof subject);
3346         extract_token(newusername, entargs, 5, '|', sizeof newusername);
3347         do_confirm = extract_int(entargs, 6);
3348         extract_token(cc, entargs, 7, '|', sizeof cc);
3349         extract_token(bcc, entargs, 8, '|', sizeof bcc);
3350         switch(CC->room.QRdefaultview) {
3351                 case VIEW_NOTES:
3352                 case VIEW_WIKI:
3353                         extract_token(supplied_euid, entargs, 9, '|', sizeof supplied_euid);
3354                         break;
3355                 default:
3356                         supplied_euid[0] = 0;
3357                         break;
3358         }
3359         extract_token(newuseremail, entargs, 10, '|', sizeof newuseremail);
3360
3361         /* first check to make sure the request is valid. */
3362
3363         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg);
3364         if (err)
3365         {
3366                 cprintf("%d %s\n", err, errmsg);
3367                 return;
3368         }
3369
3370         /* Check some other permission type things. */
3371
3372         if (strlen(newusername) == 0) {
3373                 strcpy(newusername, CC->user.fullname);
3374         }
3375         if (  (CC->user.axlevel < 6)
3376            && (strcasecmp(newusername, CC->user.fullname))
3377            && (strcasecmp(newusername, CC->cs_inet_fn))
3378         ) {     
3379                 cprintf("%d You don't have permission to author messages as '%s'.\n",
3380                         ERROR + HIGHER_ACCESS_REQUIRED,
3381                         newusername
3382                 );
3383                 return;
3384         }
3385
3386
3387         if (strlen(newuseremail) == 0) {
3388                 newuseremail_ok = 1;
3389         }
3390
3391         if (strlen(newuseremail) > 0) {
3392                 if (!strcasecmp(newuseremail, CC->cs_inet_email)) {
3393                         newuseremail_ok = 1;
3394                 }
3395                 else if (strlen(CC->cs_inet_other_emails) > 0) {
3396                         j = num_tokens(CC->cs_inet_other_emails, '|');
3397                         for (i=0; i<j; ++i) {
3398                                 extract_token(buf, CC->cs_inet_other_emails, i, '|', sizeof buf);
3399                                 if (!strcasecmp(newuseremail, buf)) {
3400                                         newuseremail_ok = 1;
3401                                 }
3402                         }
3403                 }
3404         }
3405
3406         if (!newuseremail_ok) {
3407                 cprintf("%d You don't have permission to author messages as '%s'.\n",
3408                         ERROR + HIGHER_ACCESS_REQUIRED,
3409                         newuseremail
3410                 );
3411                 return;
3412         }
3413
3414         CC->cs_flags |= CS_POSTING;
3415
3416         /* In mailbox rooms we have to behave a little differently --
3417          * make sure the user has specified at least one recipient.  Then
3418          * validate the recipient(s).  We do this for the Mail> room, as
3419          * well as any room which has the "Mailbox" view set.
3420          */
3421
3422         if (  ( (CC->room.QRflags & QR_MAILBOX) && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) )
3423            || ( (CC->room.QRflags & QR_MAILBOX) && (CC->curr_view == VIEW_MAILBOX) )
3424         ) {
3425                 if (CC->user.axlevel < 2) {
3426                         strcpy(recp, "sysop");
3427                         strcpy(cc, "");
3428                         strcpy(bcc, "");
3429                 }
3430
3431                 valid_to = validate_recipients(recp);
3432                 if (valid_to->num_error > 0) {
3433                         cprintf("%d Invalid recipient (To)\n", ERROR + NO_SUCH_USER);
3434                         free_recipients(valid_to);
3435                         return;
3436                 }
3437
3438                 valid_cc = validate_recipients(cc);
3439                 if (valid_cc->num_error > 0) {
3440                         cprintf("%d Invalid recipient (CC)\n", ERROR + NO_SUCH_USER);
3441                         free_recipients(valid_to);
3442                         free_recipients(valid_cc);
3443                         return;
3444                 }
3445
3446                 valid_bcc = validate_recipients(bcc);
3447                 if (valid_bcc->num_error > 0) {
3448                         cprintf("%d Invalid recipient (BCC)\n", ERROR + NO_SUCH_USER);
3449                         free_recipients(valid_to);
3450                         free_recipients(valid_cc);
3451                         free_recipients(valid_bcc);
3452                         return;
3453                 }
3454
3455                 /* Recipient required, but none were specified */
3456                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
3457                         free_recipients(valid_to);
3458                         free_recipients(valid_cc);
3459                         free_recipients(valid_bcc);
3460                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
3461                         return;
3462                 }
3463
3464                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
3465                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
3466                                 cprintf("%d You do not have permission "
3467                                         "to send Internet mail.\n",
3468                                         ERROR + HIGHER_ACCESS_REQUIRED);
3469                                 free_recipients(valid_to);
3470                                 free_recipients(valid_cc);
3471                                 free_recipients(valid_bcc);
3472                                 return;
3473                         }
3474                 }
3475
3476                 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)
3477                    && (CC->user.axlevel < 4) ) {
3478                         cprintf("%d Higher access required for network mail.\n",
3479                                 ERROR + HIGHER_ACCESS_REQUIRED);
3480                         free_recipients(valid_to);
3481                         free_recipients(valid_cc);
3482                         free_recipients(valid_bcc);
3483                         return;
3484                 }
3485         
3486                 if ((RESTRICT_INTERNET == 1)
3487                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
3488                     && ((CC->user.flags & US_INTERNET) == 0)
3489                     && (!CC->internal_pgm)) {
3490                         cprintf("%d You don't have access to Internet mail.\n",
3491                                 ERROR + HIGHER_ACCESS_REQUIRED);
3492                         free_recipients(valid_to);
3493                         free_recipients(valid_cc);
3494                         free_recipients(valid_bcc);
3495                         return;
3496                 }
3497
3498         }
3499
3500         /* Is this a room which has anonymous-only or anonymous-option? */
3501         anonymous = MES_NORMAL;
3502         if (CC->room.QRflags & QR_ANONONLY) {
3503                 anonymous = MES_ANONONLY;
3504         }
3505         if (CC->room.QRflags & QR_ANONOPT) {
3506                 if (anon_flag == 1) {   /* only if the user requested it */
3507                         anonymous = MES_ANONOPT;
3508                 }
3509         }
3510
3511         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
3512                 recp[0] = 0;
3513         }
3514
3515         /* If we're only checking the validity of the request, return
3516          * success without creating the message.
3517          */
3518         if (post == 0) {
3519                 cprintf("%d %s\n", CIT_OK,
3520                         ((valid_to != NULL) ? valid_to->display_recp : "") );
3521                 free_recipients(valid_to);
3522                 free_recipients(valid_cc);
3523                 free_recipients(valid_bcc);
3524                 return;
3525         }
3526
3527         /* We don't need these anymore because we'll do it differently below */
3528         free_recipients(valid_to);
3529         free_recipients(valid_cc);
3530         free_recipients(valid_bcc);
3531
3532         /* Read in the message from the client. */
3533         if (do_confirm) {
3534                 cprintf("%d send message\n", START_CHAT_MODE);
3535         } else {
3536                 cprintf("%d send message\n", SEND_LISTING);
3537         }
3538
3539         msg = CtdlMakeMessage(&CC->user, recp, cc,
3540                 CC->room.QRname, anonymous, format_type,
3541                 newusername, newuseremail, subject,
3542                 ((strlen(supplied_euid) > 0) ? supplied_euid : NULL),
3543                 NULL);
3544
3545         /* Put together one big recipients struct containing to/cc/bcc all in
3546          * one.  This is for the envelope.
3547          */
3548         char *all_recps = malloc(SIZ * 3);
3549         strcpy(all_recps, recp);
3550         if (strlen(cc) > 0) {
3551                 if (strlen(all_recps) > 0) {
3552                         strcat(all_recps, ",");
3553                 }
3554                 strcat(all_recps, cc);
3555         }
3556         if (strlen(bcc) > 0) {
3557                 if (strlen(all_recps) > 0) {
3558                         strcat(all_recps, ",");
3559                 }
3560                 strcat(all_recps, bcc);
3561         }
3562         if (strlen(all_recps) > 0) {
3563                 valid = validate_recipients(all_recps);
3564         }
3565         else {
3566                 valid = NULL;
3567         }
3568         free(all_recps);
3569
3570         if (msg != NULL) {
3571                 msgnum = CtdlSubmitMsg(msg, valid, "");
3572
3573                 if (do_confirm) {
3574                         cprintf("%ld\n", msgnum);
3575                         if (msgnum >= 0L) {
3576                                 cprintf("Message accepted.\n");
3577                         }
3578                         else {
3579                                 cprintf("Internal error.\n");
3580                         }
3581                         if (msg->cm_fields['E'] != NULL) {
3582                                 cprintf("%s\n", msg->cm_fields['E']);
3583                         } else {
3584                                 cprintf("\n");
3585                         }
3586                         cprintf("000\n");
3587                 }
3588
3589                 CtdlFreeMessage(msg);
3590         }
3591         if (valid != NULL) {
3592                 free_recipients(valid);
3593         }
3594         return;
3595 }
3596
3597
3598
3599 /*
3600  * API function to delete messages which match a set of criteria
3601  * (returns the actual number of messages deleted)
3602  */
3603 int CtdlDeleteMessages(char *room_name,         /* which room */
3604                         long *dmsgnums,         /* array of msg numbers to be deleted */
3605                         int num_dmsgnums,       /* number of msgs to be deleted, or 0 for "any" */
3606                         char *content_type      /* or "" for any.  regular expressions expected. */
3607 )
3608 {
3609         struct ctdlroom qrbuf;
3610         struct cdbdata *cdbfr;
3611         long *msglist = NULL;
3612         long *dellist = NULL;
3613         int num_msgs = 0;
3614         int i, j;
3615         int num_deleted = 0;
3616         int delete_this;
3617         struct MetaData smi;
3618         regex_t re;
3619         regmatch_t pm;
3620
3621         if (content_type) if (strlen(content_type) > 0) {
3622                 regcomp(&re, content_type, 0);
3623         }
3624         lprintf(CTDL_DEBUG, "CtdlDeleteMessages(%s, %d msgs, %s)\n",
3625                 room_name, num_dmsgnums, content_type);
3626
3627         /* get room record, obtaining a lock... */
3628         if (lgetroom(&qrbuf, room_name) != 0) {
3629                 lprintf(CTDL_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
3630                         room_name);
3631                 return (0);     /* room not found */
3632         }
3633         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
3634
3635         if (cdbfr != NULL) {
3636                 dellist = malloc(cdbfr->len);
3637                 msglist = (long *) cdbfr->ptr;
3638                 cdbfr->ptr = NULL;      /* CtdlDeleteMessages() now owns this memory */
3639                 num_msgs = cdbfr->len / sizeof(long);
3640                 cdb_free(cdbfr);
3641         }
3642         if (num_msgs > 0) {
3643                 for (i = 0; i < num_msgs; ++i) {
3644                         delete_this = 0x00;
3645
3646                         /* Set/clear a bit for each criterion */
3647
3648                         /* 0 messages in the list or a null list means that we are
3649                          * interested in deleting any messages which meet the other criteria.
3650                          */
3651                         if ((num_dmsgnums == 0) || (dmsgnums == NULL)) {
3652                                 delete_this |= 0x01;
3653                         }
3654                         else {
3655                                 for (j=0; j<num_dmsgnums; ++j) {
3656                                         if (msglist[i] == dmsgnums[j]) {
3657                                                 delete_this |= 0x01;
3658                                         }
3659                                 }
3660                         }
3661
3662                         if (strlen(content_type) == 0) {
3663                                 delete_this |= 0x02;
3664                         } else {
3665                                 GetMetaData(&smi, msglist[i]);
3666                                 if (regexec(&re, smi.meta_content_type, 1, &pm, 0) == 0) {
3667                                         delete_this |= 0x02;
3668                                 }
3669                         }
3670
3671                         /* Delete message only if all bits are set */
3672                         if (delete_this == 0x03) {
3673                                 dellist[num_deleted++] = msglist[i];
3674                                 msglist[i] = 0L;
3675                         }
3676                 }
3677
3678                 num_msgs = sort_msglist(msglist, num_msgs);
3679                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
3680                           msglist, (int)(num_msgs * sizeof(long)));
3681
3682                 qrbuf.QRhighest = msglist[num_msgs - 1];
3683         }
3684         lputroom(&qrbuf);
3685
3686         /* Go through the messages we pulled out of the index, and decrement
3687          * their reference counts by 1.  If this is the only room the message
3688          * was in, the reference count will reach zero and the message will
3689          * automatically be deleted from the database.  We do this in a
3690          * separate pass because there might be plug-in hooks getting called,
3691          * and we don't want that happening during an S_ROOMS critical
3692          * section.
3693          */
3694         if (num_deleted) for (i=0; i<num_deleted; ++i) {
3695                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
3696                 AdjRefCount(dellist[i], -1);
3697         }
3698
3699         /* Now free the memory we used, and go away. */
3700         if (msglist != NULL) free(msglist);
3701         if (dellist != NULL) free(dellist);
3702         lprintf(CTDL_DEBUG, "%d message(s) deleted.\n", num_deleted);
3703         return (num_deleted);
3704 }
3705
3706
3707
3708 /*
3709  * Check whether the current user has permission to delete messages from
3710  * the current room (returns 1 for yes, 0 for no)
3711  */
3712 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
3713         int ra;
3714         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
3715         if (ra & UA_DELETEALLOWED) return(1);
3716         return(0);
3717 }
3718
3719
3720
3721
3722 /*
3723  * Delete message from current room
3724  */
3725 void cmd_dele(char *args)
3726 {
3727         int num_deleted;
3728         int i;
3729         char msgset[SIZ];
3730         char msgtok[32];
3731         long *msgs;
3732         int num_msgs = 0;
3733
3734         extract_token(msgset, args, 0, '|', sizeof msgset);
3735         num_msgs = num_tokens(msgset, ',');
3736         if (num_msgs < 1) {
3737                 cprintf("%d Nothing to do.\n", CIT_OK);
3738                 return;
3739         }
3740
3741         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
3742                 cprintf("%d Higher access required.\n",
3743                         ERROR + HIGHER_ACCESS_REQUIRED);
3744                 return;
3745         }
3746
3747         /*
3748          * Build our message set to be moved/copied
3749          */
3750         msgs = malloc(num_msgs * sizeof(long));
3751         for (i=0; i<num_msgs; ++i) {
3752                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
3753                 msgs[i] = atol(msgtok);
3754         }
3755
3756         num_deleted = CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
3757         free(msgs);
3758
3759         if (num_deleted) {
3760                 cprintf("%d %d message%s deleted.\n", CIT_OK,
3761                         num_deleted, ((num_deleted != 1) ? "s" : ""));
3762         } else {
3763                 cprintf("%d Message not found.\n", ERROR + MESSAGE_NOT_FOUND);
3764         }
3765 }
3766
3767
3768 /*
3769  * Back end API function for moves and deletes (multiple messages)
3770  */
3771 int CtdlCopyMsgsToRoom(long *msgnums, int num_msgs, char *dest) {
3772         int err;
3773
3774         err = CtdlSaveMsgPointersInRoom(dest, msgnums, num_msgs, 1, NULL);
3775         if (err != 0) return(err);
3776
3777         return(0);
3778 }
3779
3780
3781
3782
3783 /*
3784  * move or copy a message to another room
3785  */
3786 void cmd_move(char *args)
3787 {
3788         char msgset[SIZ];
3789         char msgtok[32];
3790         long *msgs;
3791         int num_msgs = 0;
3792
3793         char targ[ROOMNAMELEN];
3794         struct ctdlroom qtemp;
3795         int err;
3796         int is_copy = 0;
3797         int ra;
3798         int permit = 0;
3799         int i;
3800
3801         extract_token(msgset, args, 0, '|', sizeof msgset);
3802         num_msgs = num_tokens(msgset, ',');
3803         if (num_msgs < 1) {
3804                 cprintf("%d Nothing to do.\n", CIT_OK);
3805                 return;
3806         }
3807
3808         extract_token(targ, args, 1, '|', sizeof targ);
3809         convert_room_name_macros(targ, sizeof targ);
3810         targ[ROOMNAMELEN - 1] = 0;
3811         is_copy = extract_int(args, 2);
3812
3813         if (getroom(&qtemp, targ) != 0) {
3814                 cprintf("%d '%s' does not exist.\n",
3815                         ERROR + ROOM_NOT_FOUND, targ);
3816                 return;
3817         }
3818
3819         getuser(&CC->user, CC->curr_user);
3820         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
3821
3822         /* Check for permission to perform this operation.
3823          * Remember: "CC->room" is source, "qtemp" is target.
3824          */
3825         permit = 0;
3826
3827         /* Aides can move/copy */
3828         if (CC->user.axlevel >= 6) permit = 1;
3829
3830         /* Room aides can move/copy */
3831         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
3832
3833         /* Permit move/copy from personal rooms */
3834         if ((CC->room.QRflags & QR_MAILBOX)
3835            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3836
3837         /* Permit only copy from public to personal room */
3838         if ( (is_copy)
3839            && (!(CC->room.QRflags & QR_MAILBOX))
3840            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3841
3842         /* Permit message removal from collaborative delete rooms */
3843         if (CC->room.QRflags2 & QR2_COLLABDEL) permit = 1;
3844
3845         /* User must have access to target room */
3846         if (!(ra & UA_KNOWN))  permit = 0;
3847
3848         if (!permit) {
3849                 cprintf("%d Higher access required.\n",
3850                         ERROR + HIGHER_ACCESS_REQUIRED);
3851                 return;
3852         }
3853
3854         /*
3855          * Build our message set to be moved/copied
3856          */
3857         msgs = malloc(num_msgs * sizeof(long));
3858         for (i=0; i<num_msgs; ++i) {
3859                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
3860                 msgs[i] = atol(msgtok);
3861         }
3862
3863         /*
3864          * Do the copy
3865          */
3866         err = CtdlCopyMsgsToRoom(msgs, num_msgs, targ);
3867         if (err != 0) {
3868                 cprintf("%d Cannot store message(s) in %s: error %d\n",
3869                         err, targ, err);
3870                 free(msgs);
3871                 return;
3872         }
3873
3874         /* Now delete the message from the source room,
3875          * if this is a 'move' rather than a 'copy' operation.
3876          */
3877         if (is_copy == 0) {
3878                 CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
3879         }
3880         free(msgs);
3881
3882         cprintf("%d Message(s) %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
3883 }
3884
3885
3886
3887 /*
3888  * GetMetaData()  -  Get the supplementary record for a message
3889  */
3890 void GetMetaData(struct MetaData *smibuf, long msgnum)
3891 {
3892
3893         struct cdbdata *cdbsmi;
3894         long TheIndex;
3895
3896         memset(smibuf, 0, sizeof(struct MetaData));
3897         smibuf->meta_msgnum = msgnum;
3898         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
3899
3900         /* Use the negative of the message number for its supp record index */
3901         TheIndex = (0L - msgnum);
3902
3903         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
3904         if (cdbsmi == NULL) {
3905                 return;         /* record not found; go with defaults */
3906         }
3907         memcpy(smibuf, cdbsmi->ptr,
3908                ((cdbsmi->len > sizeof(struct MetaData)) ?
3909                 sizeof(struct MetaData) : cdbsmi->len));
3910         cdb_free(cdbsmi);
3911         return;
3912 }
3913
3914
3915 /*
3916  * PutMetaData()  -  (re)write supplementary record for a message
3917  */
3918 void PutMetaData(struct MetaData *smibuf)
3919 {
3920         long TheIndex;
3921
3922         /* Use the negative of the message number for the metadata db index */
3923         TheIndex = (0L - smibuf->meta_msgnum);
3924
3925         cdb_store(CDB_MSGMAIN,
3926                   &TheIndex, (int)sizeof(long),
3927                   smibuf, (int)sizeof(struct MetaData));
3928
3929 }
3930
3931 /*
3932  * AdjRefCount  -  submit an adjustment to the reference count for a message.
3933  *                 (These are just queued -- we actually process them later.)
3934  */
3935 void AdjRefCount(long msgnum, int incr)
3936 {
3937         struct arcq new_arcq;
3938
3939         begin_critical_section(S_SUPPMSGMAIN);
3940         if (arcfp == NULL) {
3941                 arcfp = fopen(file_arcq, "ab+");
3942         }
3943         end_critical_section(S_SUPPMSGMAIN);
3944
3945         /* msgnum < 0 means that we're trying to close the file */
3946         if (msgnum < 0) {
3947                 lprintf(CTDL_DEBUG, "Closing the AdjRefCount queue file\n");
3948                 begin_critical_section(S_SUPPMSGMAIN);
3949                 if (arcfp != NULL) {
3950                         fclose(arcfp);
3951                         arcfp = NULL;
3952                 }
3953                 end_critical_section(S_SUPPMSGMAIN);
3954                 return;
3955         }
3956
3957         /*
3958          * If we can't open the queue, perform the operation synchronously.
3959          */
3960         if (arcfp == NULL) {
3961                 TDAP_AdjRefCount(msgnum, incr);
3962                 return;
3963         }
3964
3965         new_arcq.arcq_msgnum = msgnum;
3966         new_arcq.arcq_delta = incr;
3967         fwrite(&new_arcq, sizeof(struct arcq), 1, arcfp);
3968         fflush(arcfp);
3969
3970         return;
3971 }
3972
3973
3974 /*
3975  * TDAP_ProcessAdjRefCountQueue()
3976  *
3977  * Process the queue of message count adjustments that was created by calls
3978  * to AdjRefCount() ... by reading the queue and calling TDAP_AdjRefCount()
3979  * for each one.  This should be an "off hours" operation.
3980  */
3981 int TDAP_ProcessAdjRefCountQueue(void)
3982 {
3983         char file_arcq_temp[PATH_MAX];
3984         int r;
3985         FILE *fp;
3986         struct arcq arcq_rec;
3987         int num_records_processed = 0;
3988
3989         snprintf(file_arcq_temp, sizeof file_arcq_temp, "%s2", file_arcq);
3990
3991         begin_critical_section(S_SUPPMSGMAIN);
3992         if (arcfp != NULL) {
3993                 fclose(arcfp);
3994                 arcfp = NULL;
3995         }
3996
3997         r = link(file_arcq, file_arcq_temp);
3998         if (r != 0) {
3999                 lprintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4000                 end_critical_section(S_SUPPMSGMAIN);
4001                 return(num_records_processed);
4002         }
4003
4004         unlink(file_arcq);
4005         end_critical_section(S_SUPPMSGMAIN);
4006
4007         fp = fopen(file_arcq_temp, "rb");
4008         if (fp == NULL) {
4009                 lprintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4010                 return(num_records_processed);
4011         }
4012
4013         while (fread(&arcq_rec, sizeof(struct arcq), 1, fp) == 1) {
4014                 TDAP_AdjRefCount(arcq_rec.arcq_msgnum, arcq_rec.arcq_delta);
4015                 ++num_records_processed;
4016         }
4017
4018         fclose(fp);
4019         r = unlink(file_arcq_temp);
4020         if (r != 0) {
4021                 lprintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4022         }
4023
4024         return(num_records_processed);
4025 }
4026
4027
4028
4029 /*
4030  * TDAP_AdjRefCount  -  adjust the reference count for a message.
4031  *                      This one does it "for real" because it's called by
4032  *                      the autopurger function that processes the queue
4033  *                      created by AdjRefCount().   If a message's reference
4034  *                      count becomes zero, we also delete the message from
4035  *                      disk and de-index it.
4036  */
4037 void TDAP_AdjRefCount(long msgnum, int incr)
4038 {
4039
4040         struct MetaData smi;
4041         long delnum;
4042
4043         /* This is a *tight* critical section; please keep it that way, as
4044          * it may get called while nested in other critical sections.  
4045          * Complicating this any further will surely cause deadlock!
4046          */
4047         begin_critical_section(S_SUPPMSGMAIN);
4048         GetMetaData(&smi, msgnum);
4049         smi.meta_refcount += incr;
4050         PutMetaData(&smi);
4051         end_critical_section(S_SUPPMSGMAIN);
4052         lprintf(CTDL_DEBUG, "msg %ld ref count delta %d, is now %d\n",
4053                 msgnum, incr, smi.meta_refcount);
4054
4055         /* If the reference count is now zero, delete the message
4056          * (and its supplementary record as well).
4057          */
4058         if (smi.meta_refcount == 0) {
4059                 lprintf(CTDL_DEBUG, "Deleting message <%ld>\n", msgnum);
4060
4061                 /* Remove from fulltext index */
4062                 if (config.c_enable_fulltext) {
4063                         ft_index_message(msgnum, 0);
4064                 }
4065
4066                 /* Remove from message base */
4067                 delnum = msgnum;
4068                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
4069                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
4070
4071                 /* Remove metadata record */
4072                 delnum = (0L - msgnum);
4073                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
4074         }
4075
4076 }
4077
4078 /*
4079  * Write a generic object to this room
4080  *
4081  * Note: this could be much more efficient.  Right now we use two temporary
4082  * files, and still pull the message into memory as with all others.
4083  */
4084 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
4085                         char *content_type,     /* MIME type of this object */
4086                         char *tempfilename,     /* Where to fetch it from */
4087                         struct ctdluser *is_mailbox,    /* Mailbox room? */
4088                         int is_binary,          /* Is encoding necessary? */
4089                         int is_unique,          /* Del others of this type? */
4090                         unsigned int flags      /* Internal save flags */
4091                         )
4092 {
4093
4094         FILE *fp;
4095         struct ctdlroom qrbuf;
4096         char roomname[ROOMNAMELEN];
4097         struct CtdlMessage *msg;
4098
4099         char *raw_message = NULL;
4100         char *encoded_message = NULL;
4101         off_t raw_length = 0;
4102
4103         if (is_mailbox != NULL) {
4104                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
4105         }
4106         else {
4107                 safestrncpy(roomname, req_room, sizeof(roomname));
4108         }
4109
4110         fp = fopen(tempfilename, "rb");
4111         if (fp == NULL) {
4112                 lprintf(CTDL_CRIT, "Cannot open %s: %s\n",
4113                         tempfilename, strerror(errno));
4114                 return;
4115         }
4116         fseek(fp, 0L, SEEK_END);
4117         raw_length = ftell(fp);
4118         rewind(fp);
4119         lprintf(CTDL_DEBUG, "Raw length is %ld\n", (long)raw_length);
4120
4121         raw_message = malloc((size_t)raw_length + 2);
4122         fread(raw_message, (size_t)raw_length, 1, fp);
4123         fclose(fp);
4124
4125         if (is_binary) {
4126                 encoded_message = malloc((size_t)
4127                         (((raw_length * 134) / 100) + 4096 ) );
4128         }
4129         else {
4130                 encoded_message = malloc((size_t)(raw_length + 4096));
4131         }
4132
4133         sprintf(encoded_message, "Content-type: %s\n", content_type);
4134
4135         if (is_binary) {
4136                 sprintf(&encoded_message[strlen(encoded_message)],
4137                         "Content-transfer-encoding: base64\n\n"
4138                 );
4139         }
4140         else {
4141                 sprintf(&encoded_message[strlen(encoded_message)],
4142                         "Content-transfer-encoding: 7bit\n\n"
4143                 );
4144         }
4145
4146         if (is_binary) {
4147                 CtdlEncodeBase64(
4148                         &encoded_message[strlen(encoded_message)],
4149                         raw_message,
4150                         (int)raw_length
4151                 );
4152         }
4153         else {
4154                 raw_message[raw_length] = 0;
4155                 memcpy(
4156                         &encoded_message[strlen(encoded_message)],
4157                         raw_message,
4158                         (int)(raw_length+1)
4159                 );
4160         }
4161
4162         free(raw_message);
4163
4164         lprintf(CTDL_DEBUG, "Allocating\n");
4165         msg = malloc(sizeof(struct CtdlMessage));
4166         memset(msg, 0, sizeof(struct CtdlMessage));
4167         msg->cm_magic = CTDLMESSAGE_MAGIC;
4168         msg->cm_anon_type = MES_NORMAL;
4169         msg->cm_format_type = 4;
4170         msg->cm_fields['A'] = strdup(CC->user.fullname);
4171         msg->cm_fields['O'] = strdup(req_room);
4172         msg->cm_fields['N'] = strdup(config.c_nodename);
4173         msg->cm_fields['H'] = strdup(config.c_humannode);
4174         msg->cm_flags = flags;
4175         
4176         msg->cm_fields['M'] = encoded_message;
4177
4178         /* Create the requested room if we have to. */
4179         if (getroom(&qrbuf, roomname) != 0) {
4180                 create_room(roomname, 
4181                         ( (is_mailbox != NULL) ? 5 : 3 ),
4182                         "", 0, 1, 0, VIEW_BBS);
4183         }
4184         /* If the caller specified this object as unique, delete all
4185          * other objects of this type that are currently in the room.
4186          */
4187         if (is_unique) {
4188                 lprintf(CTDL_DEBUG, "Deleted %d other msgs of this type\n",
4189                         CtdlDeleteMessages(roomname, NULL, 0, content_type)
4190                 );
4191         }
4192         /* Now write the data */
4193         CtdlSubmitMsg(msg, NULL, roomname);
4194         CtdlFreeMessage(msg);
4195 }
4196
4197
4198
4199
4200
4201
4202 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
4203         config_msgnum = msgnum;
4204 }
4205
4206
4207 char *CtdlGetSysConfig(char *sysconfname) {
4208         char hold_rm[ROOMNAMELEN];
4209         long msgnum;
4210         char *conf;
4211         struct CtdlMessage *msg;
4212         char buf[SIZ];
4213         
4214         strcpy(hold_rm, CC->room.QRname);
4215         if (getroom(&CC->room, SYSCONFIGROOM) != 0) {
4216                 getroom(&CC->room, hold_rm);
4217                 return NULL;
4218         }
4219
4220
4221         /* We want the last (and probably only) config in this room */
4222         begin_critical_section(S_CONFIG);
4223         config_msgnum = (-1L);
4224         CtdlForEachMessage(MSGS_LAST, 1, NULL, sysconfname, NULL,
4225                 CtdlGetSysConfigBackend, NULL);
4226         msgnum = config_msgnum;
4227         end_critical_section(S_CONFIG);
4228
4229         if (msgnum < 0L) {
4230                 conf = NULL;
4231         }
4232         else {
4233                 msg = CtdlFetchMessage(msgnum, 1);
4234                 if (msg != NULL) {
4235                         conf = strdup(msg->cm_fields['M']);
4236                         CtdlFreeMessage(msg);
4237                 }
4238                 else {
4239                         conf = NULL;
4240                 }
4241         }
4242
4243         getroom(&CC->room, hold_rm);
4244
4245         if (conf != NULL) do {
4246                 extract_token(buf, conf, 0, '\n', sizeof buf);
4247                 strcpy(conf, &conf[strlen(buf)+1]);
4248         } while ( (strlen(conf)>0) && (strlen(buf)>0) );
4249
4250         return(conf);
4251 }
4252
4253 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
4254         char temp[PATH_MAX];
4255         FILE *fp;
4256
4257         CtdlMakeTempFileName(temp, sizeof temp);
4258
4259         fp = fopen(temp, "w");
4260         if (fp == NULL) return;
4261         fprintf(fp, "%s", sysconfdata);
4262         fclose(fp);
4263
4264         /* this handy API function does all the work for us */
4265         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
4266         unlink(temp);
4267 }
4268
4269
4270 /*
4271  * Determine whether a given Internet address belongs to the current user
4272  */
4273 int CtdlIsMe(char *addr, int addr_buf_len)
4274 {
4275         struct recptypes *recp;
4276         int i;
4277
4278         recp = validate_recipients(addr);
4279         if (recp == NULL) return(0);
4280
4281         if (recp->num_local == 0) {
4282                 free_recipients(recp);
4283                 return(0);
4284         }
4285
4286         for (i=0; i<recp->num_local; ++i) {
4287                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
4288                 if (!strcasecmp(addr, CC->user.fullname)) {
4289                         free_recipients(recp);
4290                         return(1);
4291                 }
4292         }
4293
4294         free_recipients(recp);
4295         return(0);
4296 }
4297
4298
4299 /*
4300  * Citadel protocol command to do the same
4301  */
4302 void cmd_isme(char *argbuf) {
4303         char addr[256];
4304
4305         if (CtdlAccessCheck(ac_logged_in)) return;
4306         extract_token(addr, argbuf, 0, '|', sizeof addr);
4307
4308         if (CtdlIsMe(addr, sizeof addr)) {
4309                 cprintf("%d %s\n", CIT_OK, addr);
4310         }
4311         else {
4312                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
4313         }
4314
4315 }