* give message sender in while evaluating the recipient...
[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 "euidindex.h"
52 #include "journaling.h"
53 #include "citadel_dirs.h"
54 #include "clientsocket.h"
55 #include "serv_network.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, NULL, 0);
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, 
3095                                           size_t n, 
3096                                           const char* RemoteIdentifier,
3097                                           int PostPublic) {
3098         int ra;
3099
3100         if (!(CC->logged_in) && 
3101             (PostPublic == POST_LOGGED_IN)) {
3102                 snprintf(errmsgbuf, n, "Not logged in.");
3103                 return (ERROR + NOT_LOGGED_IN);
3104         }
3105         else if (PostPublic == CHECK_EXISTANCE) {
3106                 SpoolControl *sc;
3107                 char filename[SIZ];
3108                 char room_to_spool[SIZ];
3109                 int found;
3110
3111                 if (RemoteIdentifier == NULL)
3112                 {
3113                         snprintf(errmsgbuf, n, "Need sender to permit access.");
3114                         return (0);
3115                 }
3116                 if (getroom(&CC->room, room_to_spool) != 0) {
3117                         lprintf(CTDL_CRIT, "ERROR: cannot load <%s>\n", room_to_spool);
3118                         return (0);
3119                 }
3120                 
3121                 assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir);
3122                 
3123                 lprintf(CTDL_INFO, "Networking started for <%s>\n", CC->room.QRname);
3124                 begin_critical_section(S_NETCONFIGS);
3125                 if (!read_spoolcontrol_file(&sc, filename))
3126                 {
3127                         end_critical_section(S_NETCONFIGS);
3128                         snprintf(errmsgbuf, n, "No Subscribers found.");
3129                         return (0);
3130                 }
3131                 end_critical_section(S_NETCONFIGS);
3132                 found = is_recipient (sc, RemoteIdentifier);
3133                 free_spoolcontrol_struct(&sc);
3134                 return (found);
3135         }
3136         else if (!(CC->logged_in)) {
3137                 if ((CC->room.QRflags & QR_READONLY)) {
3138                         snprintf(errmsgbuf, n, "Not logged in.");
3139                         return (ERROR + NOT_LOGGED_IN);
3140                 }
3141                 else if (CC->room.QRflags2 & QR2_SUBSONLY){
3142                         ////TODO: check if we're in that list...
3143                         return (0);
3144                 }
3145                 else if (CC->room.QRflags2 & QR2_MODERATED) {
3146                         return (0);
3147                 }
3148
3149         }
3150
3151         if ((CC->user.axlevel < 2)
3152             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
3153                 snprintf(errmsgbuf, n, "Need to be validated to enter "
3154                                 "(except in %s> to sysop)", MAILROOM);
3155                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3156         }
3157
3158         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
3159         if (!(ra & UA_POSTALLOWED)) {
3160                 snprintf(errmsgbuf, n, "Higher access is required to post in this room.");
3161                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3162         }
3163
3164         strcpy(errmsgbuf, "Ok");
3165         return(0);
3166 }
3167
3168
3169 /*
3170  * Check to see if the specified user has Internet mail permission
3171  * (returns nonzero if permission is granted)
3172  */
3173 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
3174
3175         /* Do not allow twits to send Internet mail */
3176         if (who->axlevel <= 2) return(0);
3177
3178         /* Globally enabled? */
3179         if (config.c_restrict == 0) return(1);
3180
3181         /* User flagged ok? */
3182         if (who->flags & US_INTERNET) return(2);
3183
3184         /* Aide level access? */
3185         if (who->axlevel >= 6) return(3);
3186
3187         /* No mail for you! */
3188         return(0);
3189 }
3190
3191
3192 /*
3193  * Validate recipients, count delivery types and errors, and handle aliasing
3194  * FIXME check for dupes!!!!!
3195  *
3196  * Returns 0 if all addresses are ok, ret->num_error = -1 if no addresses 
3197  * were specified, or the number of addresses found invalid.
3198  *
3199  * Caller needs to free the result using free_recipients()
3200  */
3201 struct recptypes *validate_recipients(char *supplied_recipients, 
3202                                       const char *RemoteIdentifier, 
3203                                       int Flags) {
3204         struct recptypes *ret;
3205         char *recipients = NULL;
3206         char this_recp[256];
3207         char this_recp_cooked[256];
3208         char append[SIZ];
3209         int num_recps = 0;
3210         int i, j;
3211         int mailtype;
3212         int invalid;
3213         struct ctdluser tempUS;
3214         struct ctdlroom tempQR;
3215         struct ctdlroom tempQR2;
3216         int err = 0;
3217         char errmsg[SIZ];
3218         int in_quotes = 0;
3219
3220         /* Initialize */
3221         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
3222         if (ret == NULL) return(NULL);
3223
3224         /* Set all strings to null and numeric values to zero */
3225         memset(ret, 0, sizeof(struct recptypes));
3226
3227         if (supplied_recipients == NULL) {
3228                 recipients = strdup("");
3229         }
3230         else {
3231                 recipients = strdup(supplied_recipients);
3232         }
3233
3234         /* Allocate some memory.  Yes, this allocates 500% more memory than we will
3235          * actually need, but it's healthier for the heap than doing lots of tiny
3236          * realloc() calls instead.
3237          */
3238
3239         ret->errormsg = malloc(strlen(recipients) + 1024);
3240         ret->recp_local = malloc(strlen(recipients) + 1024);
3241         ret->recp_internet = malloc(strlen(recipients) + 1024);
3242         ret->recp_ignet = malloc(strlen(recipients) + 1024);
3243         ret->recp_room = malloc(strlen(recipients) + 1024);
3244         ret->display_recp = malloc(strlen(recipients) + 1024);
3245
3246         ret->errormsg[0] = 0;
3247         ret->recp_local[0] = 0;
3248         ret->recp_internet[0] = 0;
3249         ret->recp_ignet[0] = 0;
3250         ret->recp_room[0] = 0;
3251         ret->display_recp[0] = 0;
3252
3253         ret->recptypes_magic = RECPTYPES_MAGIC;
3254
3255         /* Change all valid separator characters to commas */
3256         for (i=0; !IsEmptyStr(&recipients[i]); ++i) {
3257                 if ((recipients[i] == ';') || (recipients[i] == '|')) {
3258                         recipients[i] = ',';
3259                 }
3260         }
3261
3262         /* Now start extracting recipients... */
3263
3264         while (!IsEmptyStr(recipients)) {
3265
3266                 for (i=0; i<=strlen(recipients); ++i) {
3267                         if (recipients[i] == '\"') in_quotes = 1 - in_quotes;
3268                         if ( ( (recipients[i] == ',') && (!in_quotes) ) || (recipients[i] == 0) ) {
3269                                 safestrncpy(this_recp, recipients, i+1);
3270                                 this_recp[i] = 0;
3271                                 if (recipients[i] == ',') {
3272                                         strcpy(recipients, &recipients[i+1]);
3273                                 }
3274                                 else {
3275                                         strcpy(recipients, "");
3276                                 }
3277                                 break;
3278                         }
3279                 }
3280
3281                 striplt(this_recp);
3282                 lprintf(CTDL_DEBUG, "Evaluating recipient #%d: %s\n", num_recps, this_recp);
3283                 ++num_recps;
3284                 mailtype = alias(this_recp);
3285                 mailtype = alias(this_recp);
3286                 mailtype = alias(this_recp);
3287                 j = 0;
3288                 for (j=0; !IsEmptyStr(&this_recp[j]); ++j) {
3289                         if (this_recp[j]=='_') {
3290                                 this_recp_cooked[j] = ' ';
3291                         }
3292                         else {
3293                                 this_recp_cooked[j] = this_recp[j];
3294                         }
3295                 }
3296                 this_recp_cooked[j] = '\0';
3297                 invalid = 0;
3298                 switch(mailtype) {
3299                         case MES_LOCAL:
3300                                 if (!strcasecmp(this_recp, "sysop")) {
3301                                         ++ret->num_room;
3302                                         strcpy(this_recp, config.c_aideroom);
3303                                         if (!IsEmptyStr(ret->recp_room)) {
3304                                                 strcat(ret->recp_room, "|");
3305                                         }
3306                                         strcat(ret->recp_room, this_recp);
3307                                 }
3308                                 else if (getuser(&tempUS, this_recp) == 0) {
3309                                         ++ret->num_local;
3310                                         strcpy(this_recp, tempUS.fullname);
3311                                         if (!IsEmptyStr(ret->recp_local)) {
3312                                                 strcat(ret->recp_local, "|");
3313                                         }
3314                                         strcat(ret->recp_local, this_recp);
3315                                 }
3316                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
3317                                         ++ret->num_local;
3318                                         strcpy(this_recp, tempUS.fullname);
3319                                         if (!IsEmptyStr(ret->recp_local)) {
3320                                                 strcat(ret->recp_local, "|");
3321                                         }
3322                                         strcat(ret->recp_local, this_recp);
3323                                 }
3324                                 else if ( (!strncasecmp(this_recp, "room_", 5))
3325                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
3326
3327                                         /* Save room so we can restore it later */
3328                                         tempQR2 = CC->room;
3329                                         CC->room = tempQR;
3330                                         
3331                                         /* Check permissions to send mail to this room */
3332                                         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, 
3333                                                                                     sizeof errmsg, 
3334                                                                                     RemoteIdentifier,
3335                                                                                     Flags);
3336                                         if (err)
3337                                         {
3338                                                 cprintf("%d %s\n", err, errmsg);
3339                                                 ++ret->num_error;
3340                                                 invalid = 1;
3341                                         } 
3342                                         else {
3343                                                 ++ret->num_room;
3344                                                 if (!IsEmptyStr(ret->recp_room)) {
3345                                                         strcat(ret->recp_room, "|");
3346                                                 }
3347                                                 strcat(ret->recp_room, &this_recp_cooked[5]);
3348                                         }
3349                                         
3350                                         /* Restore room in case something needs it */
3351                                         CC->room = tempQR2;
3352
3353                                 }
3354                                 else {
3355                                         ++ret->num_error;
3356                                         invalid = 1;
3357                                 }
3358                                 break;
3359                         case MES_INTERNET:
3360                                 /* Yes, you're reading this correctly: if the target
3361                                  * domain points back to the local system or an attached
3362                                  * Citadel directory, the address is invalid.  That's
3363                                  * because if the address were valid, we would have
3364                                  * already translated it to a local address by now.
3365                                  */
3366                                 if (IsDirectory(this_recp, 0)) {
3367                                         ++ret->num_error;
3368                                         invalid = 1;
3369                                 }
3370                                 else {
3371                                         ++ret->num_internet;
3372                                         if (!IsEmptyStr(ret->recp_internet)) {
3373                                                 strcat(ret->recp_internet, "|");
3374                                         }
3375                                         strcat(ret->recp_internet, this_recp);
3376                                 }
3377                                 break;
3378                         case MES_IGNET:
3379                                 ++ret->num_ignet;
3380                                 if (!IsEmptyStr(ret->recp_ignet)) {
3381                                         strcat(ret->recp_ignet, "|");
3382                                 }
3383                                 strcat(ret->recp_ignet, this_recp);
3384                                 break;
3385                         case MES_ERROR:
3386                                 ++ret->num_error;
3387                                 invalid = 1;
3388                                 break;
3389                 }
3390                 if (invalid) {
3391                         if (IsEmptyStr(ret->errormsg)) {
3392                                 snprintf(append, sizeof append,
3393                                          "Invalid recipient: %s",
3394                                          this_recp);
3395                         }
3396                         else {
3397                                 snprintf(append, sizeof append, ", %s", this_recp);
3398                         }
3399                         if ( (strlen(ret->errormsg) + strlen(append)) < SIZ) {
3400                                 strcat(ret->errormsg, append);
3401                         }
3402                 }
3403                 else {
3404                         if (IsEmptyStr(ret->display_recp)) {
3405                                 strcpy(append, this_recp);
3406                         }
3407                         else {
3408                                 snprintf(append, sizeof append, ", %s", this_recp);
3409                         }
3410                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
3411                                 strcat(ret->display_recp, append);
3412                         }
3413                 }
3414         }
3415
3416         if ((ret->num_local + ret->num_internet + ret->num_ignet +
3417            ret->num_room + ret->num_error) == 0) {
3418                 ret->num_error = (-1);
3419                 strcpy(ret->errormsg, "No recipients specified.");
3420         }
3421
3422         lprintf(CTDL_DEBUG, "validate_recipients()\n");
3423         lprintf(CTDL_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
3424         lprintf(CTDL_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
3425         lprintf(CTDL_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
3426         lprintf(CTDL_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
3427         lprintf(CTDL_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
3428
3429         free(recipients);
3430         return(ret);
3431 }
3432
3433
3434 /*
3435  * Destructor for struct recptypes
3436  */
3437 void free_recipients(struct recptypes *valid) {
3438
3439         if (valid == NULL) {
3440                 return;
3441         }
3442
3443         if (valid->recptypes_magic != RECPTYPES_MAGIC) {
3444                 lprintf(CTDL_EMERG, "Attempt to call free_recipients() on some other data type!\n");
3445                 abort();
3446         }
3447
3448         if (valid->errormsg != NULL)            free(valid->errormsg);
3449         if (valid->recp_local != NULL)          free(valid->recp_local);
3450         if (valid->recp_internet != NULL)       free(valid->recp_internet);
3451         if (valid->recp_ignet != NULL)          free(valid->recp_ignet);
3452         if (valid->recp_room != NULL)           free(valid->recp_room);
3453         if (valid->display_recp != NULL)        free(valid->display_recp);
3454         free(valid);
3455 }
3456
3457
3458
3459 /*
3460  * message entry  -  mode 0 (normal)
3461  */
3462 void cmd_ent0(char *entargs)
3463 {
3464         int post = 0;
3465         char recp[SIZ];
3466         char cc[SIZ];
3467         char bcc[SIZ];
3468         char supplied_euid[128];
3469         int anon_flag = 0;
3470         int format_type = 0;
3471         char newusername[256];
3472         char newuseremail[256];
3473         struct CtdlMessage *msg;
3474         int anonymous = 0;
3475         char errmsg[SIZ];
3476         int err = 0;
3477         struct recptypes *valid = NULL;
3478         struct recptypes *valid_to = NULL;
3479         struct recptypes *valid_cc = NULL;
3480         struct recptypes *valid_bcc = NULL;
3481         char subject[SIZ];
3482         int subject_required = 0;
3483         int do_confirm = 0;
3484         long msgnum;
3485         int i, j;
3486         char buf[256];
3487         int newuseremail_ok = 0;
3488
3489         unbuffer_output();
3490
3491         post = extract_int(entargs, 0);
3492         extract_token(recp, entargs, 1, '|', sizeof recp);
3493         anon_flag = extract_int(entargs, 2);
3494         format_type = extract_int(entargs, 3);
3495         extract_token(subject, entargs, 4, '|', sizeof subject);
3496         extract_token(newusername, entargs, 5, '|', sizeof newusername);
3497         do_confirm = extract_int(entargs, 6);
3498         extract_token(cc, entargs, 7, '|', sizeof cc);
3499         extract_token(bcc, entargs, 8, '|', sizeof bcc);
3500         switch(CC->room.QRdefaultview) {
3501                 case VIEW_NOTES:
3502                 case VIEW_WIKI:
3503                         extract_token(supplied_euid, entargs, 9, '|', sizeof supplied_euid);
3504                         break;
3505                 default:
3506                         supplied_euid[0] = 0;
3507                         break;
3508         }
3509         extract_token(newuseremail, entargs, 10, '|', sizeof newuseremail);
3510
3511         /* first check to make sure the request is valid. */
3512
3513         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg, NULL, POST_LOGGED_IN);
3514         if (err)
3515         {
3516                 cprintf("%d %s\n", err, errmsg);
3517                 return;
3518         }
3519
3520         /* Check some other permission type things. */
3521
3522         if (IsEmptyStr(newusername)) {
3523                 strcpy(newusername, CC->user.fullname);
3524         }
3525         if (  (CC->user.axlevel < 6)
3526            && (strcasecmp(newusername, CC->user.fullname))
3527            && (strcasecmp(newusername, CC->cs_inet_fn))
3528         ) {     
3529                 cprintf("%d You don't have permission to author messages as '%s'.\n",
3530                         ERROR + HIGHER_ACCESS_REQUIRED,
3531                         newusername
3532                 );
3533                 return;
3534         }
3535
3536
3537         if (IsEmptyStr(newuseremail)) {
3538                 newuseremail_ok = 1;
3539         }
3540
3541         if (!IsEmptyStr(newuseremail)) {
3542                 if (!strcasecmp(newuseremail, CC->cs_inet_email)) {
3543                         newuseremail_ok = 1;
3544                 }
3545                 else if (!IsEmptyStr(CC->cs_inet_other_emails)) {
3546                         j = num_tokens(CC->cs_inet_other_emails, '|');
3547                         for (i=0; i<j; ++i) {
3548                                 extract_token(buf, CC->cs_inet_other_emails, i, '|', sizeof buf);
3549                                 if (!strcasecmp(newuseremail, buf)) {
3550                                         newuseremail_ok = 1;
3551                                 }
3552                         }
3553                 }
3554         }
3555
3556         if (!newuseremail_ok) {
3557                 cprintf("%d You don't have permission to author messages as '%s'.\n",
3558                         ERROR + HIGHER_ACCESS_REQUIRED,
3559                         newuseremail
3560                 );
3561                 return;
3562         }
3563
3564         CC->cs_flags |= CS_POSTING;
3565
3566         /* In mailbox rooms we have to behave a little differently --
3567          * make sure the user has specified at least one recipient.  Then
3568          * validate the recipient(s).  We do this for the Mail> room, as
3569          * well as any room which has the "Mailbox" view set.
3570          */
3571
3572         if (  ( (CC->room.QRflags & QR_MAILBOX) && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) )
3573            || ( (CC->room.QRflags & QR_MAILBOX) && (CC->curr_view == VIEW_MAILBOX) )
3574         ) {
3575                 if (CC->user.axlevel < 2) {
3576                         strcpy(recp, "sysop");
3577                         strcpy(cc, "");
3578                         strcpy(bcc, "");
3579                 }
3580
3581                 valid_to = validate_recipients(recp, NULL, 0);
3582                 if (valid_to->num_error > 0) {
3583                         cprintf("%d Invalid recipient (To)\n", ERROR + NO_SUCH_USER);
3584                         free_recipients(valid_to);
3585                         return;
3586                 }
3587
3588                 valid_cc = validate_recipients(cc, NULL, 0);
3589                 if (valid_cc->num_error > 0) {
3590                         cprintf("%d Invalid recipient (CC)\n", ERROR + NO_SUCH_USER);
3591                         free_recipients(valid_to);
3592                         free_recipients(valid_cc);
3593                         return;
3594                 }
3595
3596                 valid_bcc = validate_recipients(bcc, NULL, 0);
3597                 if (valid_bcc->num_error > 0) {
3598                         cprintf("%d Invalid recipient (BCC)\n", ERROR + NO_SUCH_USER);
3599                         free_recipients(valid_to);
3600                         free_recipients(valid_cc);
3601                         free_recipients(valid_bcc);
3602                         return;
3603                 }
3604
3605                 /* Recipient required, but none were specified */
3606                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
3607                         free_recipients(valid_to);
3608                         free_recipients(valid_cc);
3609                         free_recipients(valid_bcc);
3610                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
3611                         return;
3612                 }
3613
3614                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
3615                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
3616                                 cprintf("%d You do not have permission "
3617                                         "to send Internet mail.\n",
3618                                         ERROR + HIGHER_ACCESS_REQUIRED);
3619                                 free_recipients(valid_to);
3620                                 free_recipients(valid_cc);
3621                                 free_recipients(valid_bcc);
3622                                 return;
3623                         }
3624                 }
3625
3626                 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)
3627                    && (CC->user.axlevel < 4) ) {
3628                         cprintf("%d Higher access required for network mail.\n",
3629                                 ERROR + HIGHER_ACCESS_REQUIRED);
3630                         free_recipients(valid_to);
3631                         free_recipients(valid_cc);
3632                         free_recipients(valid_bcc);
3633                         return;
3634                 }
3635         
3636                 if ((RESTRICT_INTERNET == 1)
3637                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
3638                     && ((CC->user.flags & US_INTERNET) == 0)
3639                     && (!CC->internal_pgm)) {
3640                         cprintf("%d You don't have access to Internet mail.\n",
3641                                 ERROR + HIGHER_ACCESS_REQUIRED);
3642                         free_recipients(valid_to);
3643                         free_recipients(valid_cc);
3644                         free_recipients(valid_bcc);
3645                         return;
3646                 }
3647
3648         }
3649
3650         /* Is this a room which has anonymous-only or anonymous-option? */
3651         anonymous = MES_NORMAL;
3652         if (CC->room.QRflags & QR_ANONONLY) {
3653                 anonymous = MES_ANONONLY;
3654         }
3655         if (CC->room.QRflags & QR_ANONOPT) {
3656                 if (anon_flag == 1) {   /* only if the user requested it */
3657                         anonymous = MES_ANONOPT;
3658                 }
3659         }
3660
3661         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
3662                 recp[0] = 0;
3663         }
3664
3665         /* Recommend to the client that the use of a message subject is
3666          * strongly recommended in this room, if either the SUBJECTREQ flag
3667          * is set, or if there is one or more Internet email recipients.
3668          */
3669         if (CC->room.QRflags2 & QR2_SUBJECTREQ) subject_required = 1;
3670         if (valid_to) if (valid_to->num_internet > 0) subject_required = 1;
3671         if (valid_cc) if (valid_cc->num_internet > 0) subject_required = 1;
3672         if (valid_bcc) if (valid_bcc->num_internet > 0) subject_required = 1;
3673
3674         /* If we're only checking the validity of the request, return
3675          * success without creating the message.
3676          */
3677         if (post == 0) {
3678                 cprintf("%d %s|%d\n", CIT_OK,
3679                         ((valid_to != NULL) ? valid_to->display_recp : ""), 
3680                         subject_required);
3681                 free_recipients(valid_to);
3682                 free_recipients(valid_cc);
3683                 free_recipients(valid_bcc);
3684                 return;
3685         }
3686
3687         /* We don't need these anymore because we'll do it differently below */
3688         free_recipients(valid_to);
3689         free_recipients(valid_cc);
3690         free_recipients(valid_bcc);
3691
3692         /* Read in the message from the client. */
3693         if (do_confirm) {
3694                 cprintf("%d send message\n", START_CHAT_MODE);
3695         } else {
3696                 cprintf("%d send message\n", SEND_LISTING);
3697         }
3698
3699         msg = CtdlMakeMessage(&CC->user, recp, cc,
3700                 CC->room.QRname, anonymous, format_type,
3701                 newusername, newuseremail, subject,
3702                 ((!IsEmptyStr(supplied_euid)) ? supplied_euid : NULL),
3703                 NULL);
3704
3705         /* Put together one big recipients struct containing to/cc/bcc all in
3706          * one.  This is for the envelope.
3707          */
3708         char *all_recps = malloc(SIZ * 3);
3709         strcpy(all_recps, recp);
3710         if (!IsEmptyStr(cc)) {
3711                 if (!IsEmptyStr(all_recps)) {
3712                         strcat(all_recps, ",");
3713                 }
3714                 strcat(all_recps, cc);
3715         }
3716         if (!IsEmptyStr(bcc)) {
3717                 if (!IsEmptyStr(all_recps)) {
3718                         strcat(all_recps, ",");
3719                 }
3720                 strcat(all_recps, bcc);
3721         }
3722         if (!IsEmptyStr(all_recps)) {
3723                 valid = validate_recipients(all_recps, NULL, 0);
3724         }
3725         else {
3726                 valid = NULL;
3727         }
3728         free(all_recps);
3729
3730         if (msg != NULL) {
3731                 msgnum = CtdlSubmitMsg(msg, valid, "");
3732
3733                 if (do_confirm) {
3734                         cprintf("%ld\n", msgnum);
3735                         if (msgnum >= 0L) {
3736                                 cprintf("Message accepted.\n");
3737                         }
3738                         else {
3739                                 cprintf("Internal error.\n");
3740                         }
3741                         if (msg->cm_fields['E'] != NULL) {
3742                                 cprintf("%s\n", msg->cm_fields['E']);
3743                         } else {
3744                                 cprintf("\n");
3745                         }
3746                         cprintf("000\n");
3747                 }
3748
3749                 CtdlFreeMessage(msg);
3750         }
3751         if (valid != NULL) {
3752                 free_recipients(valid);
3753         }
3754         return;
3755 }
3756
3757
3758
3759 /*
3760  * API function to delete messages which match a set of criteria
3761  * (returns the actual number of messages deleted)
3762  */
3763 int CtdlDeleteMessages(char *room_name,         /* which room */
3764                         long *dmsgnums,         /* array of msg numbers to be deleted */
3765                         int num_dmsgnums,       /* number of msgs to be deleted, or 0 for "any" */
3766                         char *content_type      /* or "" for any.  regular expressions expected. */
3767 )
3768 {
3769         struct ctdlroom qrbuf;
3770         struct cdbdata *cdbfr;
3771         long *msglist = NULL;
3772         long *dellist = NULL;
3773         int num_msgs = 0;
3774         int i, j;
3775         int num_deleted = 0;
3776         int delete_this;
3777         struct MetaData smi;
3778         regex_t re;
3779         regmatch_t pm;
3780         int need_to_free_re = 0;
3781
3782         if (content_type) if (!IsEmptyStr(content_type)) {
3783                 regcomp(&re, content_type, 0);
3784                 need_to_free_re = 1;
3785         }
3786         lprintf(CTDL_DEBUG, "CtdlDeleteMessages(%s, %d msgs, %s)\n",
3787                 room_name, num_dmsgnums, content_type);
3788
3789         /* get room record, obtaining a lock... */
3790         if (lgetroom(&qrbuf, room_name) != 0) {
3791                 lprintf(CTDL_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
3792                         room_name);
3793                 if (need_to_free_re) regfree(&re);
3794                 return (0);     /* room not found */
3795         }
3796         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
3797
3798         if (cdbfr != NULL) {
3799                 dellist = malloc(cdbfr->len);
3800                 msglist = (long *) cdbfr->ptr;
3801                 cdbfr->ptr = NULL;      /* CtdlDeleteMessages() now owns this memory */
3802                 num_msgs = cdbfr->len / sizeof(long);
3803                 cdb_free(cdbfr);
3804         }
3805         if (num_msgs > 0) {
3806                 for (i = 0; i < num_msgs; ++i) {
3807                         delete_this = 0x00;
3808
3809                         /* Set/clear a bit for each criterion */
3810
3811                         /* 0 messages in the list or a null list means that we are
3812                          * interested in deleting any messages which meet the other criteria.
3813                          */
3814                         if ((num_dmsgnums == 0) || (dmsgnums == NULL)) {
3815                                 delete_this |= 0x01;
3816                         }
3817                         else {
3818                                 for (j=0; j<num_dmsgnums; ++j) {
3819                                         if (msglist[i] == dmsgnums[j]) {
3820                                                 delete_this |= 0x01;
3821                                         }
3822                                 }
3823                         }
3824
3825                         if (IsEmptyStr(content_type)) {
3826                                 delete_this |= 0x02;
3827                         } else {
3828                                 GetMetaData(&smi, msglist[i]);
3829                                 if (regexec(&re, smi.meta_content_type, 1, &pm, 0) == 0) {
3830                                         delete_this |= 0x02;
3831                                 }
3832                         }
3833
3834                         /* Delete message only if all bits are set */
3835                         if (delete_this == 0x03) {
3836                                 dellist[num_deleted++] = msglist[i];
3837                                 msglist[i] = 0L;
3838                         }
3839                 }
3840
3841                 num_msgs = sort_msglist(msglist, num_msgs);
3842                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
3843                           msglist, (int)(num_msgs * sizeof(long)));
3844
3845                 qrbuf.QRhighest = msglist[num_msgs - 1];
3846         }
3847         lputroom(&qrbuf);
3848
3849         /* Go through the messages we pulled out of the index, and decrement
3850          * their reference counts by 1.  If this is the only room the message
3851          * was in, the reference count will reach zero and the message will
3852          * automatically be deleted from the database.  We do this in a
3853          * separate pass because there might be plug-in hooks getting called,
3854          * and we don't want that happening during an S_ROOMS critical
3855          * section.
3856          */
3857         if (num_deleted) for (i=0; i<num_deleted; ++i) {
3858                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
3859                 AdjRefCount(dellist[i], -1);
3860         }
3861
3862         /* Now free the memory we used, and go away. */
3863         if (msglist != NULL) free(msglist);
3864         if (dellist != NULL) free(dellist);
3865         lprintf(CTDL_DEBUG, "%d message(s) deleted.\n", num_deleted);
3866         if (need_to_free_re) regfree(&re);
3867         return (num_deleted);
3868 }
3869
3870
3871
3872 /*
3873  * Check whether the current user has permission to delete messages from
3874  * the current room (returns 1 for yes, 0 for no)
3875  */
3876 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
3877         int ra;
3878         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
3879         if (ra & UA_DELETEALLOWED) return(1);
3880         return(0);
3881 }
3882
3883
3884
3885
3886 /*
3887  * Delete message from current room
3888  */
3889 void cmd_dele(char *args)
3890 {
3891         int num_deleted;
3892         int i;
3893         char msgset[SIZ];
3894         char msgtok[32];
3895         long *msgs;
3896         int num_msgs = 0;
3897
3898         extract_token(msgset, args, 0, '|', sizeof msgset);
3899         num_msgs = num_tokens(msgset, ',');
3900         if (num_msgs < 1) {
3901                 cprintf("%d Nothing to do.\n", CIT_OK);
3902                 return;
3903         }
3904
3905         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
3906                 cprintf("%d Higher access required.\n",
3907                         ERROR + HIGHER_ACCESS_REQUIRED);
3908                 return;
3909         }
3910
3911         /*
3912          * Build our message set to be moved/copied
3913          */
3914         msgs = malloc(num_msgs * sizeof(long));
3915         for (i=0; i<num_msgs; ++i) {
3916                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
3917                 msgs[i] = atol(msgtok);
3918         }
3919
3920         num_deleted = CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
3921         free(msgs);
3922
3923         if (num_deleted) {
3924                 cprintf("%d %d message%s deleted.\n", CIT_OK,
3925                         num_deleted, ((num_deleted != 1) ? "s" : ""));
3926         } else {
3927                 cprintf("%d Message not found.\n", ERROR + MESSAGE_NOT_FOUND);
3928         }
3929 }
3930
3931
3932 /*
3933  * Back end API function for moves and deletes (multiple messages)
3934  */
3935 int CtdlCopyMsgsToRoom(long *msgnums, int num_msgs, char *dest) {
3936         int err;
3937
3938         err = CtdlSaveMsgPointersInRoom(dest, msgnums, num_msgs, 1, NULL);
3939         if (err != 0) return(err);
3940
3941         return(0);
3942 }
3943
3944
3945
3946
3947 /*
3948  * move or copy a message to another room
3949  */
3950 void cmd_move(char *args)
3951 {
3952         char msgset[SIZ];
3953         char msgtok[32];
3954         long *msgs;
3955         int num_msgs = 0;
3956
3957         char targ[ROOMNAMELEN];
3958         struct ctdlroom qtemp;
3959         int err;
3960         int is_copy = 0;
3961         int ra;
3962         int permit = 0;
3963         int i;
3964
3965         extract_token(msgset, args, 0, '|', sizeof msgset);
3966         num_msgs = num_tokens(msgset, ',');
3967         if (num_msgs < 1) {
3968                 cprintf("%d Nothing to do.\n", CIT_OK);
3969                 return;
3970         }
3971
3972         extract_token(targ, args, 1, '|', sizeof targ);
3973         convert_room_name_macros(targ, sizeof targ);
3974         targ[ROOMNAMELEN - 1] = 0;
3975         is_copy = extract_int(args, 2);
3976
3977         if (getroom(&qtemp, targ) != 0) {
3978                 cprintf("%d '%s' does not exist.\n",
3979                         ERROR + ROOM_NOT_FOUND, targ);
3980                 return;
3981         }
3982
3983         getuser(&CC->user, CC->curr_user);
3984         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
3985
3986         /* Check for permission to perform this operation.
3987          * Remember: "CC->room" is source, "qtemp" is target.
3988          */
3989         permit = 0;
3990
3991         /* Aides can move/copy */
3992         if (CC->user.axlevel >= 6) permit = 1;
3993
3994         /* Room aides can move/copy */
3995         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
3996
3997         /* Permit move/copy from personal rooms */
3998         if ((CC->room.QRflags & QR_MAILBOX)
3999            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
4000
4001         /* Permit only copy from public to personal room */
4002         if ( (is_copy)
4003            && (!(CC->room.QRflags & QR_MAILBOX))
4004            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
4005
4006         /* Permit message removal from collaborative delete rooms */
4007         if (CC->room.QRflags2 & QR2_COLLABDEL) permit = 1;
4008
4009         /* User must have access to target room */
4010         if (!(ra & UA_KNOWN))  permit = 0;
4011
4012         if (!permit) {
4013                 cprintf("%d Higher access required.\n",
4014                         ERROR + HIGHER_ACCESS_REQUIRED);
4015                 return;
4016         }
4017
4018         /*
4019          * Build our message set to be moved/copied
4020          */
4021         msgs = malloc(num_msgs * sizeof(long));
4022         for (i=0; i<num_msgs; ++i) {
4023                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
4024                 msgs[i] = atol(msgtok);
4025         }
4026
4027         /*
4028          * Do the copy
4029          */
4030         err = CtdlCopyMsgsToRoom(msgs, num_msgs, targ);
4031         if (err != 0) {
4032                 cprintf("%d Cannot store message(s) in %s: error %d\n",
4033                         err, targ, err);
4034                 free(msgs);
4035                 return;
4036         }
4037
4038         /* Now delete the message from the source room,
4039          * if this is a 'move' rather than a 'copy' operation.
4040          */
4041         if (is_copy == 0) {
4042                 CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
4043         }
4044         free(msgs);
4045
4046         cprintf("%d Message(s) %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
4047 }
4048
4049
4050
4051 /*
4052  * GetMetaData()  -  Get the supplementary record for a message
4053  */
4054 void GetMetaData(struct MetaData *smibuf, long msgnum)
4055 {
4056
4057         struct cdbdata *cdbsmi;
4058         long TheIndex;
4059
4060         memset(smibuf, 0, sizeof(struct MetaData));
4061         smibuf->meta_msgnum = msgnum;
4062         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
4063
4064         /* Use the negative of the message number for its supp record index */
4065         TheIndex = (0L - msgnum);
4066
4067         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
4068         if (cdbsmi == NULL) {
4069                 return;         /* record not found; go with defaults */
4070         }
4071         memcpy(smibuf, cdbsmi->ptr,
4072                ((cdbsmi->len > sizeof(struct MetaData)) ?
4073                 sizeof(struct MetaData) : cdbsmi->len));
4074         cdb_free(cdbsmi);
4075         return;
4076 }
4077
4078
4079 /*
4080  * PutMetaData()  -  (re)write supplementary record for a message
4081  */
4082 void PutMetaData(struct MetaData *smibuf)
4083 {
4084         long TheIndex;
4085
4086         /* Use the negative of the message number for the metadata db index */
4087         TheIndex = (0L - smibuf->meta_msgnum);
4088
4089         cdb_store(CDB_MSGMAIN,
4090                   &TheIndex, (int)sizeof(long),
4091                   smibuf, (int)sizeof(struct MetaData));
4092
4093 }
4094
4095 /*
4096  * AdjRefCount  -  submit an adjustment to the reference count for a message.
4097  *                 (These are just queued -- we actually process them later.)
4098  */
4099 void AdjRefCount(long msgnum, int incr)
4100 {
4101         struct arcq new_arcq;
4102
4103         begin_critical_section(S_SUPPMSGMAIN);
4104         if (arcfp == NULL) {
4105                 arcfp = fopen(file_arcq, "ab+");
4106         }
4107         end_critical_section(S_SUPPMSGMAIN);
4108
4109         /* msgnum < 0 means that we're trying to close the file */
4110         if (msgnum < 0) {
4111                 lprintf(CTDL_DEBUG, "Closing the AdjRefCount queue file\n");
4112                 begin_critical_section(S_SUPPMSGMAIN);
4113                 if (arcfp != NULL) {
4114                         fclose(arcfp);
4115                         arcfp = NULL;
4116                 }
4117                 end_critical_section(S_SUPPMSGMAIN);
4118                 return;
4119         }
4120
4121         /*
4122          * If we can't open the queue, perform the operation synchronously.
4123          */
4124         if (arcfp == NULL) {
4125                 TDAP_AdjRefCount(msgnum, incr);
4126                 return;
4127         }
4128
4129         new_arcq.arcq_msgnum = msgnum;
4130         new_arcq.arcq_delta = incr;
4131         fwrite(&new_arcq, sizeof(struct arcq), 1, arcfp);
4132         fflush(arcfp);
4133
4134         return;
4135 }
4136
4137
4138 /*
4139  * TDAP_ProcessAdjRefCountQueue()
4140  *
4141  * Process the queue of message count adjustments that was created by calls
4142  * to AdjRefCount() ... by reading the queue and calling TDAP_AdjRefCount()
4143  * for each one.  This should be an "off hours" operation.
4144  */
4145 int TDAP_ProcessAdjRefCountQueue(void)
4146 {
4147         char file_arcq_temp[PATH_MAX];
4148         int r;
4149         FILE *fp;
4150         struct arcq arcq_rec;
4151         int num_records_processed = 0;
4152
4153         snprintf(file_arcq_temp, sizeof file_arcq_temp, "%s2", file_arcq);
4154
4155         begin_critical_section(S_SUPPMSGMAIN);
4156         if (arcfp != NULL) {
4157                 fclose(arcfp);
4158                 arcfp = NULL;
4159         }
4160
4161         r = link(file_arcq, file_arcq_temp);
4162         if (r != 0) {
4163                 lprintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4164                 end_critical_section(S_SUPPMSGMAIN);
4165                 return(num_records_processed);
4166         }
4167
4168         unlink(file_arcq);
4169         end_critical_section(S_SUPPMSGMAIN);
4170
4171         fp = fopen(file_arcq_temp, "rb");
4172         if (fp == NULL) {
4173                 lprintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4174                 return(num_records_processed);
4175         }
4176
4177         while (fread(&arcq_rec, sizeof(struct arcq), 1, fp) == 1) {
4178                 TDAP_AdjRefCount(arcq_rec.arcq_msgnum, arcq_rec.arcq_delta);
4179                 ++num_records_processed;
4180         }
4181
4182         fclose(fp);
4183         r = unlink(file_arcq_temp);
4184         if (r != 0) {
4185                 lprintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4186         }
4187
4188         return(num_records_processed);
4189 }
4190
4191
4192
4193 /*
4194  * TDAP_AdjRefCount  -  adjust the reference count for a message.
4195  *                      This one does it "for real" because it's called by
4196  *                      the autopurger function that processes the queue
4197  *                      created by AdjRefCount().   If a message's reference
4198  *                      count becomes zero, we also delete the message from
4199  *                      disk and de-index it.
4200  */
4201 void TDAP_AdjRefCount(long msgnum, int incr)
4202 {
4203
4204         struct MetaData smi;
4205         long delnum;
4206
4207         /* This is a *tight* critical section; please keep it that way, as
4208          * it may get called while nested in other critical sections.  
4209          * Complicating this any further will surely cause deadlock!
4210          */
4211         begin_critical_section(S_SUPPMSGMAIN);
4212         GetMetaData(&smi, msgnum);
4213         smi.meta_refcount += incr;
4214         PutMetaData(&smi);
4215         end_critical_section(S_SUPPMSGMAIN);
4216         lprintf(CTDL_DEBUG, "msg %ld ref count delta %d, is now %d\n",
4217                 msgnum, incr, smi.meta_refcount);
4218
4219         /* If the reference count is now zero, delete the message
4220          * (and its supplementary record as well).
4221          */
4222         if (smi.meta_refcount == 0) {
4223                 lprintf(CTDL_DEBUG, "Deleting message <%ld>\n", msgnum);
4224                 
4225                 /* Call delete hooks with NULL room to show it has gone altogether */
4226                 PerformDeleteHooks(NULL, msgnum);
4227
4228                 /* Remove from message base */
4229                 delnum = msgnum;
4230                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
4231                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
4232
4233                 /* Remove metadata record */
4234                 delnum = (0L - msgnum);
4235                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
4236         }
4237
4238 }
4239
4240 /*
4241  * Write a generic object to this room
4242  *
4243  * Note: this could be much more efficient.  Right now we use two temporary
4244  * files, and still pull the message into memory as with all others.
4245  */
4246 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
4247                         char *content_type,     /* MIME type of this object */
4248                         char *tempfilename,     /* Where to fetch it from */
4249                         struct ctdluser *is_mailbox,    /* Mailbox room? */
4250                         int is_binary,          /* Is encoding necessary? */
4251                         int is_unique,          /* Del others of this type? */
4252                         unsigned int flags      /* Internal save flags */
4253                         )
4254 {
4255
4256         FILE *fp;
4257         struct ctdlroom qrbuf;
4258         char roomname[ROOMNAMELEN];
4259         struct CtdlMessage *msg;
4260
4261         char *raw_message = NULL;
4262         char *encoded_message = NULL;
4263         off_t raw_length = 0;
4264
4265         if (is_mailbox != NULL) {
4266                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
4267         }
4268         else {
4269                 safestrncpy(roomname, req_room, sizeof(roomname));
4270         }
4271
4272         fp = fopen(tempfilename, "rb");
4273         if (fp == NULL) {
4274                 lprintf(CTDL_CRIT, "Cannot open %s: %s\n",
4275                         tempfilename, strerror(errno));
4276                 return;
4277         }
4278         fseek(fp, 0L, SEEK_END);
4279         raw_length = ftell(fp);
4280         rewind(fp);
4281         lprintf(CTDL_DEBUG, "Raw length is %ld\n", (long)raw_length);
4282
4283         raw_message = malloc((size_t)raw_length + 2);
4284         fread(raw_message, (size_t)raw_length, 1, fp);
4285         fclose(fp);
4286
4287         if (is_binary) {
4288                 encoded_message = malloc((size_t)
4289                         (((raw_length * 134) / 100) + 4096 ) );
4290         }
4291         else {
4292                 encoded_message = malloc((size_t)(raw_length + 4096));
4293         }
4294
4295         sprintf(encoded_message, "Content-type: %s\n", content_type);
4296
4297         if (is_binary) {
4298                 sprintf(&encoded_message[strlen(encoded_message)],
4299                         "Content-transfer-encoding: base64\n\n"
4300                 );
4301         }
4302         else {
4303                 sprintf(&encoded_message[strlen(encoded_message)],
4304                         "Content-transfer-encoding: 7bit\n\n"
4305                 );
4306         }
4307
4308         if (is_binary) {
4309                 CtdlEncodeBase64(
4310                         &encoded_message[strlen(encoded_message)],
4311                         raw_message,
4312                         (int)raw_length,
4313                         0
4314                 );
4315         }
4316         else {
4317                 raw_message[raw_length] = 0;
4318                 memcpy(
4319                         &encoded_message[strlen(encoded_message)],
4320                         raw_message,
4321                         (int)(raw_length+1)
4322                 );
4323         }
4324
4325         free(raw_message);
4326
4327         lprintf(CTDL_DEBUG, "Allocating\n");
4328         msg = malloc(sizeof(struct CtdlMessage));
4329         memset(msg, 0, sizeof(struct CtdlMessage));
4330         msg->cm_magic = CTDLMESSAGE_MAGIC;
4331         msg->cm_anon_type = MES_NORMAL;
4332         msg->cm_format_type = 4;
4333         msg->cm_fields['A'] = strdup(CC->user.fullname);
4334         msg->cm_fields['O'] = strdup(req_room);
4335         msg->cm_fields['N'] = strdup(config.c_nodename);
4336         msg->cm_fields['H'] = strdup(config.c_humannode);
4337         msg->cm_flags = flags;
4338         
4339         msg->cm_fields['M'] = encoded_message;
4340
4341         /* Create the requested room if we have to. */
4342         if (getroom(&qrbuf, roomname) != 0) {
4343                 create_room(roomname, 
4344                         ( (is_mailbox != NULL) ? 5 : 3 ),
4345                         "", 0, 1, 0, VIEW_BBS);
4346         }
4347         /* If the caller specified this object as unique, delete all
4348          * other objects of this type that are currently in the room.
4349          */
4350         if (is_unique) {
4351                 lprintf(CTDL_DEBUG, "Deleted %d other msgs of this type\n",
4352                         CtdlDeleteMessages(roomname, NULL, 0, content_type)
4353                 );
4354         }
4355         /* Now write the data */
4356         CtdlSubmitMsg(msg, NULL, roomname);
4357         CtdlFreeMessage(msg);
4358 }
4359
4360
4361
4362
4363
4364
4365 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
4366         config_msgnum = msgnum;
4367 }
4368
4369
4370 char *CtdlGetSysConfig(char *sysconfname) {
4371         char hold_rm[ROOMNAMELEN];
4372         long msgnum;
4373         char *conf;
4374         struct CtdlMessage *msg;
4375         char buf[SIZ];
4376         
4377         strcpy(hold_rm, CC->room.QRname);
4378         if (getroom(&CC->room, SYSCONFIGROOM) != 0) {
4379                 getroom(&CC->room, hold_rm);
4380                 return NULL;
4381         }
4382
4383
4384         /* We want the last (and probably only) config in this room */
4385         begin_critical_section(S_CONFIG);
4386         config_msgnum = (-1L);
4387         CtdlForEachMessage(MSGS_LAST, 1, NULL, sysconfname, NULL,
4388                 CtdlGetSysConfigBackend, NULL);
4389         msgnum = config_msgnum;
4390         end_critical_section(S_CONFIG);
4391
4392         if (msgnum < 0L) {
4393                 conf = NULL;
4394         }
4395         else {
4396                 msg = CtdlFetchMessage(msgnum, 1);
4397                 if (msg != NULL) {
4398                         conf = strdup(msg->cm_fields['M']);
4399                         CtdlFreeMessage(msg);
4400                 }
4401                 else {
4402                         conf = NULL;
4403                 }
4404         }
4405
4406         getroom(&CC->room, hold_rm);
4407
4408         if (conf != NULL) do {
4409                 extract_token(buf, conf, 0, '\n', sizeof buf);
4410                 strcpy(conf, &conf[strlen(buf)+1]);
4411         } while ( (!IsEmptyStr(conf)) && (!IsEmptyStr(buf)) );
4412
4413         return(conf);
4414 }
4415
4416 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
4417         char temp[PATH_MAX];
4418         FILE *fp;
4419
4420         CtdlMakeTempFileName(temp, sizeof temp);
4421
4422         fp = fopen(temp, "w");
4423         if (fp == NULL) return;
4424         fprintf(fp, "%s", sysconfdata);
4425         fclose(fp);
4426
4427         /* this handy API function does all the work for us */
4428         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
4429         unlink(temp);
4430 }
4431
4432
4433 /*
4434  * Determine whether a given Internet address belongs to the current user
4435  */
4436 int CtdlIsMe(char *addr, int addr_buf_len)
4437 {
4438         struct recptypes *recp;
4439         int i;
4440
4441         recp = validate_recipients(addr, NULL, 0);
4442         if (recp == NULL) return(0);
4443
4444         if (recp->num_local == 0) {
4445                 free_recipients(recp);
4446                 return(0);
4447         }
4448
4449         for (i=0; i<recp->num_local; ++i) {
4450                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
4451                 if (!strcasecmp(addr, CC->user.fullname)) {
4452                         free_recipients(recp);
4453                         return(1);
4454                 }
4455         }
4456
4457         free_recipients(recp);
4458         return(0);
4459 }
4460
4461
4462 /*
4463  * Citadel protocol command to do the same
4464  */
4465 void cmd_isme(char *argbuf) {
4466         char addr[256];
4467
4468         if (CtdlAccessCheck(ac_logged_in)) return;
4469         extract_token(addr, argbuf, 0, '|', sizeof addr);
4470
4471         if (CtdlIsMe(addr, sizeof addr)) {
4472                 cprintf("%d %s\n", CIT_OK, addr);
4473         }
4474         else {
4475                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
4476         }
4477
4478 }