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