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