]> code.citadel.org Git - citadel.git/blob - citadel/msgbase.c
* Added search-by-header-fields to CtdlForEachMessage(), and then to the
[citadel.git] / citadel / msgbase.c
1 /* $Id$ */
2 #include "sysdep.h"
3 #include <stdlib.h>
4 #include <unistd.h>
5 #include <stdio.h>
6 #include <fcntl.h>
7 #include <time.h>
8 #include <ctype.h>
9 #include <string.h>
10 #include <syslog.h>
11 #ifdef HAVE_PTHREAD_H
12 #include <pthread.h>
13 #endif
14 #include <limits.h>
15 #include "citadel.h"
16 #include "server.h"
17 #include <errno.h>
18 #include <sys/stat.h>
19 #include "database.h"
20 #include "msgbase.h"
21 #include "support.h"
22 #include "sysdep_decls.h"
23 #include "citserver.h"
24 #include "room_ops.h"
25 #include "user_ops.h"
26 #include "file_ops.h"
27 #include "control.h"
28 #include "dynloader.h"
29 #include "tools.h"
30 #include "mime_parser.h"
31 #include "html.h"
32
33 #define desired_section ((char *)CtdlGetUserData(SYM_DESIRED_SECTION))
34 #define ma ((struct ma_info *)CtdlGetUserData(SYM_MA_INFO))
35
36 extern struct config config;
37
38 char *msgkeys[] = {
39         "", "", "", "", "", "", "", "", 
40         "", "", "", "", "", "", "", "", 
41         "", "", "", "", "", "", "", "", 
42         "", "", "", "", "", "", "", "", 
43         "", "", "", "", "", "", "", "", 
44         "", "", "", "", "", "", "", "", 
45         "", "", "", "", "", "", "", "", 
46         "", "", "", "", "", "", "", "", 
47         "", 
48         "from",
49         "", "", "", "", "", "", 
50         "hnod",
51         "msgn",
52         "", "", "",
53         "text",
54         "node",
55         "room",
56         "path",
57         "",
58         "rcpt",
59         ""
60         "time",
61         "subj",
62         "",
63         "",
64         "",
65         "",
66         "zaps"
67 };
68
69 /*
70  * This function is self explanatory.
71  * (What can I say, I'm in a weird mood today...)
72  */
73 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
74 {
75         int i;
76
77         for (i = 0; i < strlen(name); ++i)
78                 if (name[i] == '@') {
79                         if (i > 0)
80                                 if (isspace(name[i - 1])) {
81                                         strcpy(&name[i - 1], &name[i]);
82                                         i = 0;
83                                 }
84                         while (isspace(name[i + 1])) {
85                                 strcpy(&name[i + 1], &name[i + 2]);
86                         }
87                 }
88 }
89
90
91 /*
92  * Aliasing for network mail.
93  * (Error messages have been commented out, because this is a server.)
94  */
95 int alias(char *name)
96 {                               /* process alias and routing info for mail */
97         FILE *fp;
98         int a, b;
99         char aaa[300], bbb[300];
100
101         lprintf(9, "alias() called for <%s>\n", name);
102
103         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
104
105         fp = fopen("network/mail.aliases", "r");
106         if (fp == NULL)
107                 fp = fopen("/dev/null", "r");
108         if (fp == NULL)
109                 return (MES_ERROR);
110         strcpy(aaa, "");
111         strcpy(bbb, "");
112         while (fgets(aaa, sizeof aaa, fp) != NULL) {
113                 while (isspace(name[0]))
114                         strcpy(name, &name[1]);
115                 aaa[strlen(aaa) - 1] = 0;
116                 strcpy(bbb, "");
117                 for (a = 0; a < strlen(aaa); ++a) {
118                         if (aaa[a] == ',') {
119                                 strcpy(bbb, &aaa[a + 1]);
120                                 aaa[a] = 0;
121                         }
122                 }
123                 if (!strcasecmp(name, aaa))
124                         strcpy(name, bbb);
125         }
126         fclose(fp);
127         lprintf(7, "Mail is being forwarded to %s\n", name);
128
129         /* determine local or remote type, see citadel.h */
130         for (a = 0; a < strlen(name); ++a)
131                 if (name[a] == '!')
132                         return (MES_INTERNET);
133         for (a = 0; a < strlen(name); ++a)
134                 if (name[a] == '@')
135                         for (b = a; b < strlen(name); ++b)
136                                 if (name[b] == '.')
137                                         return (MES_INTERNET);
138         b = 0;
139         for (a = 0; a < strlen(name); ++a)
140                 if (name[a] == '@')
141                         ++b;
142         if (b > 1) {
143                 lprintf(7, "Too many @'s in address\n");
144                 return (MES_ERROR);
145         }
146         if (b == 1) {
147                 for (a = 0; a < strlen(name); ++a)
148                         if (name[a] == '@')
149                                 strcpy(bbb, &name[a + 1]);
150                 while (bbb[0] == 32)
151                         strcpy(bbb, &bbb[1]);
152                 fp = fopen("network/mail.sysinfo", "r");
153                 if (fp == NULL)
154                         return (MES_ERROR);
155               GETSN:do {
156                         a = getstring(fp, aaa);
157                 } while ((a >= 0) && (strcasecmp(aaa, bbb)));
158                 a = getstring(fp, aaa);
159                 if (!strncmp(aaa, "use ", 4)) {
160                         strcpy(bbb, &aaa[4]);
161                         fseek(fp, 0L, 0);
162                         goto GETSN;
163                 }
164                 fclose(fp);
165                 if (!strncmp(aaa, "uum", 3)) {
166                         strcpy(bbb, name);
167                         for (a = 0; a < strlen(bbb); ++a) {
168                                 if (bbb[a] == '@')
169                                         bbb[a] = 0;
170                                 if (bbb[a] == ' ')
171                                         bbb[a] = '_';
172                         }
173                         while (bbb[strlen(bbb) - 1] == '_')
174                                 bbb[strlen(bbb) - 1] = 0;
175                         sprintf(name, &aaa[4], bbb);
176                         return (MES_INTERNET);
177                 }
178                 if (!strncmp(aaa, "bin", 3)) {
179                         strcpy(aaa, name);
180                         strcpy(bbb, name);
181                         while (aaa[strlen(aaa) - 1] != '@')
182                                 aaa[strlen(aaa) - 1] = 0;
183                         aaa[strlen(aaa) - 1] = 0;
184                         while (aaa[strlen(aaa) - 1] == ' ')
185                                 aaa[strlen(aaa) - 1] = 0;
186                         while (bbb[0] != '@')
187                                 strcpy(bbb, &bbb[1]);
188                         strcpy(bbb, &bbb[1]);
189                         while (bbb[0] == ' ')
190                                 strcpy(bbb, &bbb[1]);
191                         sprintf(name, "%s @%s", aaa, bbb);
192                         return (MES_BINARY);
193                 }
194                 return (MES_ERROR);
195         }
196         return (MES_LOCAL);
197 }
198
199
200 void get_mm(void)
201 {
202         FILE *fp;
203
204         fp = fopen("citadel.control", "r");
205         fread((char *) &CitControl, sizeof(struct CitControl), 1, fp);
206         fclose(fp);
207 }
208
209
210
211 void simple_listing(long msgnum)
212 {
213         cprintf("%ld\n", msgnum);
214 }
215
216
217
218 /* Determine if a given message matches the fields in a message template.
219  * Return 0 for a successful match.
220  */
221 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
222         int i;
223
224         /* If there aren't any fields in the template, all messages will
225          * match.
226          */
227         if (template == NULL) return(0);
228
229         /* Null messages are bogus. */
230         if (msg == NULL) return(1);
231
232         for (i='A'; i<='Z'; ++i) {
233                 if (template->cm_fields[i] != NULL) {
234                         if (msg->cm_fields[i] == NULL) {
235                                 return 1;
236                         }
237                         if (strcasecmp(msg->cm_fields[i],
238                                 template->cm_fields[i])) return 1;
239                 }
240         }
241
242         /* All compares succeeded: we have a match! */
243         return 0;
244 }
245
246
247
248
249 /*
250  * API function to perform an operation for each qualifying message in the
251  * current room.
252  */
253 void CtdlForEachMessage(int mode, long ref,
254                         char *content_type,
255                         struct CtdlMessage *compare,
256                         void (*CallBack) (long msgnum))
257 {
258
259         int a;
260         struct visit vbuf;
261         struct cdbdata *cdbfr;
262         long *msglist = NULL;
263         int num_msgs = 0;
264         long thismsg;
265         struct SuppMsgInfo smi;
266         struct CtdlMessage *msg;
267
268         /* Learn about the user and room in question */
269         get_mm();
270         getuser(&CC->usersupp, CC->curr_user);
271         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
272
273         /* Load the message list */
274         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->quickroom.QRnumber, sizeof(long));
275         if (cdbfr != NULL) {
276                 msglist = mallok(cdbfr->len);
277                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
278                 num_msgs = cdbfr->len / sizeof(long);
279                 cdb_free(cdbfr);
280         } else {
281                 return;         /* No messages at all?  No further action. */
282         }
283
284
285         /* If the caller is looking for a specific MIME type, then filter
286          * out all messages which are not of the type requested.
287          */
288         if (num_msgs > 0)
289                 if (content_type != NULL)
290                         if (strlen(content_type) > 0)
291                                 for (a = 0; a < num_msgs; ++a) {
292                                         GetSuppMsgInfo(&smi, msglist[a]);
293                                         if (strcasecmp(smi.smi_content_type, content_type)) {
294                                                 msglist[a] = 0L;
295                                         }
296                                 }
297
298         num_msgs = sort_msglist(msglist, num_msgs);
299
300         /* If a template was supplied, filter out the messages which
301          * don't match.  (This could induce some delays!)
302          */
303         if (num_msgs > 0) {
304                 if (compare != NULL) {
305                         for (a = 0; a < num_msgs; ++a) {
306                                 msg = CtdlFetchMessage(msglist[a]);
307                                 if (msg != NULL) {
308                                         if (CtdlMsgCmp(msg, compare)) {
309                                                 msglist[a] = 0L;
310                                         }
311                                         CtdlFreeMessage(msg);
312                                 }
313                         }
314                 }
315         }
316
317         
318         /*
319          * Now iterate through the message list, according to the
320          * criteria supplied by the caller.
321          */
322         if (num_msgs > 0)
323                 for (a = 0; a < num_msgs; ++a) {
324                         thismsg = msglist[a];
325                         if ((thismsg > 0)
326                             && (
327
328                                        (mode == MSGS_ALL)
329                                        || ((mode == MSGS_OLD) && (thismsg <= vbuf.v_lastseen))
330                                        || ((mode == MSGS_NEW) && (thismsg > vbuf.v_lastseen))
331                                        || ((mode == MSGS_NEW) && (thismsg >= vbuf.v_lastseen)
332                                     && (CC->usersupp.flags & US_LASTOLD))
333                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
334                                    || ((mode == MSGS_FIRST) && (a < ref))
335                                 || ((mode == MSGS_GT) && (thismsg > ref))
336                             )
337                             ) {
338                                 CallBack(thismsg);
339                         }
340                 }
341         phree(msglist);         /* Clean up */
342 }
343
344
345
346 /*
347  * cmd_msgs()  -  get list of message #'s in this room
348  *                implements the MSGS server command using CtdlForEachMessage()
349  */
350 void cmd_msgs(char *cmdbuf)
351 {
352         int mode = 0;
353         char which[256];
354         char buf[256];
355         char tfield[256];
356         char tvalue[256];
357         int cm_ref = 0;
358         int i;
359         int with_template = 0;
360         struct CtdlMessage *template = NULL;
361
362         extract(which, cmdbuf, 0);
363         cm_ref = extract_int(cmdbuf, 1);
364         with_template = extract_int(cmdbuf, 2);
365
366         mode = MSGS_ALL;
367         strcat(which, "   ");
368         if (!strncasecmp(which, "OLD", 3))
369                 mode = MSGS_OLD;
370         else if (!strncasecmp(which, "NEW", 3))
371                 mode = MSGS_NEW;
372         else if (!strncasecmp(which, "FIRST", 5))
373                 mode = MSGS_FIRST;
374         else if (!strncasecmp(which, "LAST", 4))
375                 mode = MSGS_LAST;
376         else if (!strncasecmp(which, "GT", 2))
377                 mode = MSGS_GT;
378
379         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
380                 cprintf("%d not logged in\n", ERROR + NOT_LOGGED_IN);
381                 return;
382         }
383
384         if (with_template) {
385                 cprintf("%d Send template then receive message list\n",
386                         START_CHAT_MODE);
387                 template = (struct CtdlMessage *)
388                         mallok(sizeof(struct CtdlMessage));
389                 memset(template, 0, sizeof(struct CtdlMessage));
390                 while(client_gets(buf), strcmp(buf,"000")) {
391                         extract(tfield, buf, 0);
392                         extract(tvalue, buf, 1);
393                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
394                                 if (!strcasecmp(tfield, msgkeys[i])) {
395                                         template->cm_fields[i] =
396                                                 strdoop(tvalue);
397                                 }
398                         }
399                 }
400         }
401         else {
402                 cprintf("%d Message list...\n", LISTING_FOLLOWS);
403         }
404
405         CtdlForEachMessage(mode, cm_ref, NULL, template, simple_listing);
406         if (template != NULL) CtdlFreeMessage(template);
407         cprintf("000\n");
408 }
409
410
411
412
413 /* 
414  * help_subst()  -  support routine for help file viewer
415  */
416 void help_subst(char *strbuf, char *source, char *dest)
417 {
418         char workbuf[256];
419         int p;
420
421         while (p = pattern2(strbuf, source), (p >= 0)) {
422                 strcpy(workbuf, &strbuf[p + strlen(source)]);
423                 strcpy(&strbuf[p], dest);
424                 strcat(strbuf, workbuf);
425         }
426 }
427
428
429 void do_help_subst(char *buffer)
430 {
431         char buf2[16];
432
433         help_subst(buffer, "^nodename", config.c_nodename);
434         help_subst(buffer, "^humannode", config.c_humannode);
435         help_subst(buffer, "^fqdn", config.c_fqdn);
436         help_subst(buffer, "^username", CC->usersupp.fullname);
437         sprintf(buf2, "%ld", CC->usersupp.usernum);
438         help_subst(buffer, "^usernum", buf2);
439         help_subst(buffer, "^sysadm", config.c_sysadm);
440         help_subst(buffer, "^variantname", CITADEL);
441         sprintf(buf2, "%d", config.c_maxsessions);
442         help_subst(buffer, "^maxsessions", buf2);
443 }
444
445
446
447 /*
448  * memfmout()  -  Citadel text formatter and paginator.
449  *             Although the original purpose of this routine was to format
450  *             text to the reader's screen width, all we're really using it
451  *             for here is to format text out to 80 columns before sending it
452  *             to the client.  The client software may reformat it again.
453  */
454 void memfmout(int width, char *mptr, char subst)
455                         /* screen width to use */
456                         /* where are we going to get our text from? */
457                         /* nonzero if we should use hypertext mode */
458 {
459         int a, b, c;
460         int real = 0;
461         int old = 0;
462         CIT_UBYTE ch;
463         char aaa[140];
464         char buffer[256];
465
466         strcpy(aaa, "");
467         old = 255;
468         strcpy(buffer, "");
469         c = 1;                  /* c is the current pos */
470
471 FMTA:   if (subst) {
472                 while (ch = *mptr, ((ch != 0) && (strlen(buffer) < 126))) {
473                         ch = *mptr++;
474                         buffer[strlen(buffer) + 1] = 0;
475                         buffer[strlen(buffer)] = ch;
476                 }
477
478                 if (buffer[0] == '^')
479                         do_help_subst(buffer);
480
481                 buffer[strlen(buffer) + 1] = 0;
482                 a = buffer[0];
483                 strcpy(buffer, &buffer[1]);
484         } else {
485                 ch = *mptr++;
486         }
487
488         old = real;
489         real = ch;
490         if (ch <= 0)
491                 goto FMTEND;
492
493         if (((ch == 13) || (ch == 10)) && (old != 13) && (old != 10))
494                 ch = 32;
495         if (((old == 13) || (old == 10)) && (isspace(real))) {
496                 cprintf("\n");
497                 c = 1;
498         }
499         if (ch > 126)
500                 goto FMTA;
501
502         if (ch > 32) {
503                 if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
504                         cprintf("\n%s", aaa);
505                         c = strlen(aaa);
506                         aaa[0] = 0;
507                 }
508                 b = strlen(aaa);
509                 aaa[b] = ch;
510                 aaa[b + 1] = 0;
511         }
512         if (ch == 32) {
513                 if ((strlen(aaa) + c) > (width - 5)) {
514                         cprintf("\n");
515                         c = 1;
516                 }
517                 cprintf("%s ", aaa);
518                 ++c;
519                 c = c + strlen(aaa);
520                 strcpy(aaa, "");
521                 goto FMTA;
522         }
523         if ((ch == 13) || (ch == 10)) {
524                 cprintf("%s\n", aaa);
525                 c = 1;
526                 strcpy(aaa, "");
527                 goto FMTA;
528         }
529         goto FMTA;
530
531 FMTEND: cprintf("%s\n", aaa);
532 }
533
534
535
536 /*
537  * Callback function for mime parser that simply lists the part
538  */
539 void list_this_part(char *name, char *filename, char *partnum, char *disp,
540                     void *content, char *cbtype, size_t length)
541 {
542
543         cprintf("part=%s|%s|%s|%s|%s|%d\n",
544                 name, filename, partnum, disp, cbtype, length);
545 }
546
547
548 /*
549  * Callback function for mime parser that wants to display text
550  */
551 void fixed_output(char *name, char *filename, char *partnum, char *disp,
552                   void *content, char *cbtype, size_t length)
553 {
554         char *ptr;
555
556         if (!strcasecmp(cbtype, "multipart/alternative")) {
557                 strcpy(ma->prefix, partnum);
558                 strcat(ma->prefix, ".");
559                 ma->is_ma = 1;
560                 ma->did_print = 0;
561                 return;
562         }
563
564         if ( (!strncasecmp(partnum, ma->prefix, strlen(ma->prefix)))
565            && (ma->is_ma == 1) 
566            && (ma->did_print == 1) ) {
567                 lprintf(9, "Skipping part %s (%s)\n", partnum, cbtype);
568                 return;
569         }
570
571         ma->did_print = 1;
572
573         if (!strcasecmp(cbtype, "text/plain")) {
574                 client_write(content, length);
575         }
576         else if (!strcasecmp(cbtype, "text/html")) {
577                 ptr = html_to_ascii(content, 80, 0);
578                 client_write(ptr, strlen(ptr));
579                 phree(ptr);
580         }
581         else if (strncasecmp(cbtype, "multipart/", 10)) {
582                 cprintf("Part %s: %s (%s) (%d bytes)\n",
583                         partnum, filename, cbtype, length);
584         }
585 }
586
587
588 /*
589  * Callback function for mime parser that opens a section for downloading
590  */
591 void mime_download(char *name, char *filename, char *partnum, char *disp,
592                    void *content, char *cbtype, size_t length)
593 {
594
595         /* Silently go away if there's already a download open... */
596         if (CC->download_fp != NULL)
597                 return;
598
599         /* ...or if this is not the desired section */
600         if (strcasecmp(desired_section, partnum))
601                 return;
602
603         CC->download_fp = tmpfile();
604         if (CC->download_fp == NULL)
605                 return;
606
607         fwrite(content, length, 1, CC->download_fp);
608         fflush(CC->download_fp);
609         rewind(CC->download_fp);
610
611         OpenCmdResult(filename, cbtype);
612 }
613
614
615
616 /*
617  * Load a message from disk into memory.
618  * This is used by output_message() and other fetch functions.
619  *
620  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
621  *       using the CtdlMessageFree() function.
622  */
623 struct CtdlMessage *CtdlFetchMessage(long msgnum)
624 {
625         struct cdbdata *dmsgtext;
626         struct CtdlMessage *ret = NULL;
627         char *mptr;
628         CIT_UBYTE ch;
629         CIT_UBYTE field_header;
630         size_t field_length;
631
632
633         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
634         if (dmsgtext == NULL) {
635                 lprintf(9, "CtdlFetchMessage(%ld) failed.\n");
636                 return NULL;
637         }
638         mptr = dmsgtext->ptr;
639
640         /* Parse the three bytes that begin EVERY message on disk.
641          * The first is always 0xFF, the on-disk magic number.
642          * The second is the anonymous/public type byte.
643          * The third is the format type byte (vari, fixed, or MIME).
644          */
645         ch = *mptr++;
646         if (ch != 255) {
647                 lprintf(5, "Message %ld appears to be corrupted.\n", msgnum);
648                 cdb_free(dmsgtext);
649                 return NULL;
650         }
651         ret = (struct CtdlMessage *) mallok(sizeof(struct CtdlMessage));
652         memset(ret, 0, sizeof(struct CtdlMessage));
653
654         ret->cm_magic = CTDLMESSAGE_MAGIC;
655         ret->cm_anon_type = *mptr++;    /* Anon type byte */
656         ret->cm_format_type = *mptr++;  /* Format type byte */
657
658         /*
659          * The rest is zero or more arbitrary fields.  Load them in.
660          * We're done when we encounter either a zero-length field or
661          * have just processed the 'M' (message text) field.
662          */
663         do {
664                 field_length = strlen(mptr);
665                 if (field_length == 0)
666                         break;
667                 field_header = *mptr++;
668                 ret->cm_fields[field_header] = mallok(field_length);
669                 strcpy(ret->cm_fields[field_header], mptr);
670
671                 while (*mptr++ != 0);   /* advance to next field */
672
673         } while ((field_length > 0) && (field_header != 'M'));
674
675         cdb_free(dmsgtext);
676
677         /* Perform "before read" hooks (aborting if any return nonzero) */
678         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
679                 CtdlFreeMessage(ret);
680                 return NULL;
681         }
682
683         return (ret);
684 }
685
686
687 /*
688  * Returns 1 if the supplied pointer points to a valid Citadel message.
689  * If the pointer is NULL or the magic number check fails, returns 0.
690  */
691 int is_valid_message(struct CtdlMessage *msg) {
692         if (msg == NULL)
693                 return 0;
694         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
695                 lprintf(3, "is_valid_message() -- self-check failed\n");
696                 return 0;
697         }
698         return 1;
699 }
700
701
702 /*
703  * 'Destructor' for struct CtdlMessage
704  */
705 void CtdlFreeMessage(struct CtdlMessage *msg)
706 {
707         int i;
708
709         if (is_valid_message(msg) == 0) return;
710
711         for (i = 0; i < 256; ++i)
712                 if (msg->cm_fields[i] != NULL)
713                         phree(msg->cm_fields[i]);
714
715         msg->cm_magic = 0;      /* just in case */
716         phree(msg);
717 }
718
719
720
721 /*
722  * Get a message off disk.  (return value is the message's timestamp)
723  * 
724  */
725 void output_message(char *msgid, int mode, int headers_only)
726 {
727         long msg_num;
728         int a, i, k;
729         char buf[1024];
730         time_t xtime;
731         CIT_UBYTE ch;
732         char allkeys[256];
733
734         struct CtdlMessage *TheMessage = NULL;
735
736         char *mptr;
737
738         /* buffers needed for RFC822 translation */
739         char suser[256];
740         char luser[256];
741         char snode[256];
742         char lnode[256];
743         char mid[256];
744         /*                                       */
745
746         msg_num = atol(msgid);
747
748         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
749                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
750                 return;
751         }
752
753         /* FIX ... small security issue
754          * We need to check to make sure the requested message is actually
755          * in the current room, and set msg_ok to 1 only if it is.  This
756          * functionality is currently missing because I'm in a hurry to replace
757          * broken production code with nonbroken pre-beta code.  :(   -- ajc
758          *
759          if (!msg_ok) {
760          cprintf("%d Message %ld is not in this room.\n",
761          ERROR, msg_num);
762          return;
763          }
764          */
765
766         /*
767          * Fetch the message from disk
768          */
769         TheMessage = CtdlFetchMessage(msg_num);
770         if (TheMessage == NULL) {
771                 cprintf("%d Can't locate msg %ld on disk\n", ERROR, msg_num);
772                 return;
773         }
774
775         /* Are we downloading a MIME component? */
776         if (mode == MT_DOWNLOAD) {
777                 if (TheMessage->cm_format_type != 4) {
778                         cprintf("%d This is not a MIME message.\n",
779                                 ERROR);
780                 } else if (CC->download_fp != NULL) {
781                         cprintf("%d You already have a download open.\n",
782                                 ERROR);
783                 } else {
784                         /* Parse the message text component */
785                         mptr = TheMessage->cm_fields['M'];
786                         mime_parser(mptr, NULL, *mime_download);
787                         /* If there's no file open by this time, the requested
788                          * section wasn't found, so print an error
789                          */
790                         if (CC->download_fp == NULL) {
791                                 cprintf("%d Section %s not found.\n",
792                                         ERROR + FILE_NOT_FOUND,
793                                         desired_section);
794                         }
795                 }
796                 CtdlFreeMessage(TheMessage);
797                 return;
798         }
799
800         /* now for the user-mode message reading loops */
801         cprintf("%d Message %ld:\n", LISTING_FOLLOWS, msg_num);
802
803         /* Tell the client which format type we're using.  If this is a
804          * MIME message, *lie* about it and tell the user it's fixed-format.
805          */
806         if (mode == MT_CITADEL) {
807                 if (TheMessage->cm_format_type == 4)
808                         cprintf("type=1\n");
809                 else
810                         cprintf("type=%d\n", TheMessage->cm_format_type);
811         }
812
813         /* nhdr=yes means that we're only displaying headers, no body */
814         if ((TheMessage->cm_anon_type == MES_ANON) && (mode == MT_CITADEL)) {
815                 cprintf("nhdr=yes\n");
816         }
817
818         /* begin header processing loop for Citadel message format */
819
820         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
821
822                 if (TheMessage->cm_fields['A']) {
823                         strcpy(buf, TheMessage->cm_fields['A']);
824                         PerformUserHooks(buf, (-1L), EVT_OUTPUTMSG);
825                         if (TheMessage->cm_anon_type == MES_ANON)
826                                 cprintf("from=****");
827                         else if (TheMessage->cm_anon_type == MES_AN2)
828                                 cprintf("from=anonymous");
829                         else
830                                 cprintf("from=%s", buf);
831                         if ((is_room_aide())
832                             && ((TheMessage->cm_anon_type == MES_ANON)
833                              || (TheMessage->cm_anon_type == MES_AN2))) {
834                                 cprintf(" [%s]", buf);
835                         }
836                         cprintf("\n");
837                 }
838
839                 strcpy(allkeys, FORDER);
840                 for (i=0; i<strlen(allkeys); ++i) {
841                         k = (int) allkeys[i];
842                         if ((k != 'A') && (k != 'M')) {
843                                 if (TheMessage->cm_fields[k] != NULL)
844                                         cprintf("%s=%s\n",
845                                                 msgkeys[k],
846                                                 TheMessage->cm_fields[k]
847                                         );
848                         }
849                 }
850
851         }
852
853         /* begin header processing loop for RFC822 transfer format */
854
855         strcpy(suser, "");
856         strcpy(luser, "");
857         strcpy(snode, NODENAME);
858         strcpy(lnode, HUMANNODE);
859         if (mode == MT_RFC822) {
860                 for (i = 0; i < 256; ++i) {
861                         if (TheMessage->cm_fields[i]) {
862                                 mptr = TheMessage->cm_fields[i];
863
864                                 if (i == 'A') {
865                                         strcpy(luser, mptr);
866                                 } else if (i == 'P') {
867                                         cprintf("Path: %s\n", mptr);
868                                         for (a = 0; a < strlen(mptr); ++a) {
869                                                 if (mptr[a] == '!') {
870                                                         strcpy(mptr, &mptr[a + 1]);
871                                                         a = 0;
872                                                 }
873                                         }
874                                         strcpy(suser, mptr);
875                                 } else if (i == 'U')
876                                         cprintf("Subject: %s\n", mptr);
877                                 else if (i == 'I')
878                                         strcpy(mid, mptr);
879                                 else if (i == 'H')
880                                         strcpy(lnode, mptr);
881                                 else if (i == 'O')
882                                         cprintf("X-Citadel-Room: %s\n", mptr);
883                                 else if (i == 'N')
884                                         strcpy(snode, mptr);
885                                 else if (i == 'R')
886                                         cprintf("To: %s\n", mptr);
887                                 else if (i == 'T') {
888                                         xtime = atol(mptr);
889                                         cprintf("Date: %s", asctime(localtime(&xtime)));
890                                 }
891                         }
892                 }
893         }
894
895         if (mode == MT_RFC822) {
896                 if (!strcasecmp(snode, NODENAME)) {
897                         strcpy(snode, FQDN);
898                 }
899                 cprintf("Message-ID: <%s@%s>\n", mid, snode);
900                 PerformUserHooks(luser, (-1L), EVT_OUTPUTMSG);
901                 cprintf("From: %s@%s (%s)\n", suser, snode, luser);
902                 cprintf("Organization: %s\n", lnode);
903         }
904
905         /* end header processing loop ... at this point, we're in the text */
906
907         mptr = TheMessage->cm_fields['M'];
908
909         /* Tell the client about the MIME parts in this message */
910         if (TheMessage->cm_format_type == 4) {  /* legacy textual dump */
911                 if (mode == MT_CITADEL) {
912                         mime_parser(mptr, NULL, *list_this_part);
913                 }
914                 else if (mode == MT_MIME) {     /* list parts only */
915                         mime_parser(mptr, NULL, *list_this_part);
916                         cprintf("000\n");
917                         CtdlFreeMessage(TheMessage);
918                         return;
919                 }
920         }
921
922         if (headers_only) {
923                 cprintf("000\n");
924                 CtdlFreeMessage(TheMessage);
925                 return;
926         }
927
928         /* signify start of msg text */
929         if (mode == MT_CITADEL)
930                 cprintf("text\n");
931         if ((mode == MT_RFC822) && (TheMessage->cm_format_type != 4))
932                 cprintf("\n");
933
934         /* If the format type on disk is 1 (fixed-format), then we want
935          * everything to be output completely literally ... regardless of
936          * what message transfer format is in use.
937          */
938         if (TheMessage->cm_format_type == 1) {
939                 strcpy(buf, "");
940                 while (ch = *mptr++, ch > 0) {
941                         if (ch == 13)
942                                 ch = 10;
943                         if ((ch == 10) || (strlen(buf) > 250)) {
944                                 cprintf("%s\n", buf);
945                                 strcpy(buf, "");
946                         } else {
947                                 buf[strlen(buf) + 1] = 0;
948                                 buf[strlen(buf)] = ch;
949                         }
950                 }
951                 if (strlen(buf) > 0)
952                         cprintf("%s\n", buf);
953         }
954
955         /* If the message on disk is format 0 (Citadel vari-format), we
956          * output using the formatter at 80 columns.  This is the final output
957          * form if the transfer format is RFC822, but if the transfer format
958          * is Citadel proprietary, it'll still work, because the indentation
959          * for new paragraphs is correct and the client will reformat the
960          * message to the reader's screen width.
961          */
962         if (TheMessage->cm_format_type == 0) {
963                 memfmout(80, mptr, 0);
964         }
965
966         /* If the message on disk is format 4 (MIME), we've gotta hand it
967          * off to the MIME parser.  The client has already been told that
968          * this message is format 1 (fixed format), so the callback function
969          * we use will display those parts as-is.
970          */
971         if (TheMessage->cm_format_type == 4) {
972                 CtdlAllocUserData(SYM_MA_INFO, sizeof(struct ma_info));
973                 memset(ma, 0, sizeof(struct ma_info));
974                 mime_parser(mptr, NULL, *fixed_output);
975         }
976
977         /* now we're done */
978         cprintf("000\n");
979         CtdlFreeMessage(TheMessage);
980         return;
981 }
982
983
984
985 /*
986  * display a message (mode 0 - Citadel proprietary)
987  */
988 void cmd_msg0(char *cmdbuf)
989 {
990         char msgid[256];
991         int headers_only = 0;
992
993         extract(msgid, cmdbuf, 0);
994         headers_only = extract_int(cmdbuf, 1);
995
996         output_message(msgid, MT_CITADEL, headers_only);
997         return;
998 }
999
1000
1001 /*
1002  * display a message (mode 2 - RFC822)
1003  */
1004 void cmd_msg2(char *cmdbuf)
1005 {
1006         char msgid[256];
1007         int headers_only = 0;
1008
1009         extract(msgid, cmdbuf, 0);
1010         headers_only = extract_int(cmdbuf, 1);
1011
1012         output_message(msgid, MT_RFC822, headers_only);
1013 }
1014
1015
1016
1017 /* 
1018  * display a message (mode 3 - IGnet raw format - internal programs only)
1019  */
1020 void cmd_msg3(char *cmdbuf)
1021 {
1022         long msgnum;
1023         struct CtdlMessage *msg;
1024         struct ser_ret smr;
1025
1026         if (CC->internal_pgm == 0) {
1027                 cprintf("%d This command is for internal programs only.\n",
1028                         ERROR);
1029                 return;
1030         }
1031
1032         msgnum = extract_long(cmdbuf, 0);
1033         msg = CtdlFetchMessage(msgnum);
1034         if (msg == NULL) {
1035                 cprintf("%d Message %ld not found.\n", 
1036                         ERROR, msgnum);
1037                 return;
1038         }
1039
1040         serialize_message(&smr, msg);
1041         CtdlFreeMessage(msg);
1042
1043         if (smr.len == 0) {
1044                 cprintf("%d Unable to serialize message\n",
1045                         ERROR+INTERNAL_ERROR);
1046                 return;
1047         }
1048
1049         cprintf("%d %ld\n", BINARY_FOLLOWS, smr.len);
1050         client_write(smr.ser, smr.len);
1051         phree(smr.ser);
1052 }
1053
1054
1055
1056 /* 
1057  * display a message (mode 4 - MIME) (FIX ... still evolving, not complete)
1058  */
1059 void cmd_msg4(char *cmdbuf)
1060 {
1061         char msgid[256];
1062
1063         extract(msgid, cmdbuf, 0);
1064
1065         output_message(msgid, MT_MIME, 0);
1066 }
1067
1068 /*
1069  * Open a component of a MIME message as a download file 
1070  */
1071 void cmd_opna(char *cmdbuf)
1072 {
1073         char msgid[256];
1074
1075         CtdlAllocUserData(SYM_DESIRED_SECTION, 64);
1076
1077         extract(msgid, cmdbuf, 0);
1078         extract(desired_section, cmdbuf, 1);
1079
1080         output_message(msgid, MT_DOWNLOAD, 0);
1081 }                       
1082
1083 /*
1084  * Message base operation to send a message to the master file
1085  * (returns new message number)
1086  *
1087  * This is the back end for CtdlSaveMsg() and should not be directly
1088  * called by server-side modules.
1089  *
1090  */
1091 long send_message(struct CtdlMessage *msg,      /* pointer to buffer */
1092                 int generate_id,                /* generate 'I' field? */
1093                 FILE *save_a_copy)              /* save a copy to disk? */
1094 {
1095         long newmsgid;
1096         long retval;
1097         char msgidbuf[32];
1098         struct ser_ret smr;
1099
1100         /* Get a new message number */
1101         newmsgid = get_new_message_number();
1102         sprintf(msgidbuf, "%ld", newmsgid);
1103
1104         if (generate_id) {
1105                 msg->cm_fields['I'] = strdoop(msgidbuf);
1106         }
1107         
1108         serialize_message(&smr, msg);
1109
1110         if (smr.len == 0) {
1111                 cprintf("%d Unable to serialize message\n",
1112                         ERROR+INTERNAL_ERROR);
1113                 return (-1L);
1114         }
1115
1116         /* Write our little bundle of joy into the message base */
1117         begin_critical_section(S_MSGMAIN);
1118         if (cdb_store(CDB_MSGMAIN, &newmsgid, sizeof(long),
1119                       smr.ser, smr.len) < 0) {
1120                 lprintf(2, "Can't store message\n");
1121                 retval = 0L;
1122         } else {
1123                 retval = newmsgid;
1124         }
1125         end_critical_section(S_MSGMAIN);
1126
1127         /* If the caller specified that a copy should be saved to a particular
1128          * file handle, do that now too.
1129          */
1130         if (save_a_copy != NULL) {
1131                 fwrite(smr.ser, smr.len, 1, save_a_copy);
1132         }
1133
1134         /* Free the memory we used for the serialized message */
1135         phree(smr.ser);
1136
1137         /* Return the *local* message ID to the caller
1138          * (even if we're storing an incoming network message)
1139          */
1140         return(retval);
1141 }
1142
1143
1144
1145 /*
1146  * Serialize a struct CtdlMessage into the format used on disk and network.
1147  * 
1148  * This function loads up a "struct ser_ret" (defined in server.h) which
1149  * contains the length of the serialized message and a pointer to the
1150  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
1151  */
1152 void serialize_message(struct ser_ret *ret,             /* return values */
1153                         struct CtdlMessage *msg)        /* unserialized msg */
1154 {
1155         size_t wlen;
1156         int i;
1157         static char *forder = FORDER;
1158
1159         lprintf(9, "serialize_message() called\n");
1160
1161         if (is_valid_message(msg) == 0) return;         /* self check */
1162
1163         lprintf(9, "magic number check OK.\n");
1164
1165         ret->len = 3;
1166         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
1167                 ret->len = ret->len +
1168                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
1169
1170         lprintf(9, "message is %d bytes\n", ret->len);
1171
1172         lprintf(9, "calling malloc\n");
1173         ret->ser = mallok(ret->len);
1174         if (ret->ser == NULL) {
1175                 ret->len = 0;
1176                 return;
1177         }
1178
1179         ret->ser[0] = 0xFF;
1180         ret->ser[1] = msg->cm_anon_type;
1181         ret->ser[2] = msg->cm_format_type;
1182         wlen = 3;
1183
1184         lprintf(9, "stuff\n");
1185         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
1186                 ret->ser[wlen++] = (char)forder[i];
1187                 strcpy(&ret->ser[wlen], msg->cm_fields[(int)forder[i]]);
1188                 wlen = wlen + strlen(msg->cm_fields[(int)forder[i]]) + 1;
1189         }
1190         if (ret->len != wlen) lprintf(3, "ERROR: len=%d wlen=%d\n",
1191                 ret->len, wlen);
1192         lprintf(9, "done serializing\n");
1193
1194         return;
1195 }
1196
1197
1198
1199 /*
1200  * Save a message to disk
1201  */
1202 void CtdlSaveMsg(struct CtdlMessage *msg,       /* message to save */
1203                 char *rec,                      /* Recipient (mail) */
1204                 char *force,                    /* force a particular room? */
1205                 int mailtype,                   /* local or remote type */
1206                 int generate_id)                /* 1 = generate 'I' field */
1207 {
1208         char aaa[100];
1209         char hold_rm[ROOMNAMELEN];
1210         char actual_rm[ROOMNAMELEN];
1211         char force_room[ROOMNAMELEN];
1212         char content_type[256]; /* We have to learn this */
1213         char recipient[256];
1214         long newmsgid;
1215         char *mptr;
1216         struct usersupp userbuf;
1217         int a;
1218         int successful_local_recipients = 0;
1219         struct quickroom qtemp;
1220         struct SuppMsgInfo smi;
1221         FILE *network_fp = NULL;
1222         static int seqnum = 1;
1223
1224         lprintf(9, "CtdlSaveMsg() called\n");
1225         if (is_valid_message(msg) == 0) return;         /* self check */
1226
1227         /* If this message has no timestamp, we take the liberty of
1228          * giving it one, right now.
1229          */
1230         if (msg->cm_fields['T'] == NULL) {
1231                 sprintf(aaa, "%ld", time(NULL));
1232                 msg->cm_fields['T'] = strdoop(aaa);
1233         }
1234
1235         /* If this message has no path, we generate one.
1236          */
1237         if (msg->cm_fields['P'] == NULL) {
1238                 msg->cm_fields['P'] = strdoop(msg->cm_fields['A']);
1239                 for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
1240                         if (isspace(msg->cm_fields['P'][a])) {
1241                                 msg->cm_fields['P'][a] = ' ';
1242                         }
1243                 }
1244         }
1245
1246         strcpy(force_room, force);
1247
1248         /* Strip non-printable characters out of the recipient name */
1249         strcpy(recipient, rec);
1250         for (a = 0; a < strlen(recipient); ++a)
1251                 if (!isprint(recipient[a]))
1252                         strcpy(&recipient[a], &recipient[a + 1]);
1253
1254         /* Learn about what's inside, because it's what's inside that counts */
1255
1256         switch (msg->cm_format_type) {
1257         case 0:
1258                 strcpy(content_type, "text/x-citadel-variformat");
1259                 break;
1260         case 1:
1261                 strcpy(content_type, "text/plain");
1262                 break;
1263         case 4:
1264                 strcpy(content_type, "text/plain");
1265                 /* advance past header fields */
1266                 mptr = msg->cm_fields['M'];
1267                 a = strlen(mptr);
1268                 while (--a) {
1269                         if (!strncasecmp(mptr, "Content-type: ", 14)) {
1270                                 safestrncpy(content_type, mptr,
1271                                             sizeof(content_type));
1272                                 strcpy(content_type, &content_type[14]);
1273                                 for (a = 0; a < strlen(content_type); ++a)
1274                                         if ((content_type[a] == ';')
1275                                             || (content_type[a] == ' ')
1276                                             || (content_type[a] == 13)
1277                                             || (content_type[a] == 10))
1278                                                 content_type[a] = 0;
1279                                 break;
1280                         }
1281                         ++mptr;
1282                 }
1283         }
1284
1285         /* Perform "before save" hooks (aborting if any return nonzero) */
1286         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return;
1287
1288         /* Network mail - send a copy to the network program. */
1289         if ((strlen(recipient) > 0) && (mailtype != MES_LOCAL)) {
1290                 sprintf(aaa, "./network/spoolin/netmail.%04lx.%04x.%04x",
1291                         (long) getpid(), CC->cs_pid, ++seqnum);
1292                 lprintf(9, "Saving a copy to %s\n", aaa);
1293                 network_fp = fopen(aaa, "ab+");
1294                 if (network_fp == NULL)
1295                         lprintf(2, "ERROR: %s\n", strerror(errno));
1296         }
1297
1298         /* Save it to disk */
1299         newmsgid = send_message(msg, generate_id, network_fp);
1300         if (network_fp != NULL) {
1301                 fclose(network_fp);
1302                 system("exec nohup ./netproc -i >/dev/null 2>&1 &");
1303         }
1304         if (newmsgid <= 0L)
1305                 return;
1306
1307         strcpy(actual_rm, CC->quickroom.QRname);
1308         strcpy(hold_rm, "");
1309
1310         /* If this is being done by the networker delivering a private
1311          * message, we want to BYPASS saving the sender's copy (because there
1312          * is no local sender; it would otherwise go to the Trashcan).
1313          */
1314         if ((!CC->internal_pgm) || (strlen(recipient) == 0)) {
1315                 /* If the user is a twit, move to the twit room for posting */
1316                 if (TWITDETECT)
1317                         if (CC->usersupp.axlevel == 2) {
1318                                 strcpy(hold_rm, actual_rm);
1319                                 strcpy(actual_rm, config.c_twitroom);
1320                         }
1321                 /* ...or if this message is destined for Aide> then go there. */
1322                 if (strlen(force_room) > 0) {
1323                         strcpy(hold_rm, actual_rm);
1324                         strcpy(actual_rm, force_room);
1325                 }
1326                 /* This call to usergoto() changes rooms if necessary.  It also
1327                    * causes the latest message list to be read into memory.
1328                  */
1329                 usergoto(actual_rm, 0);
1330
1331                 /* read in the quickroom record, obtaining a lock... */
1332                 lgetroom(&CC->quickroom, actual_rm);
1333
1334                 /* Fix an obscure bug */
1335                 if (!strcasecmp(CC->quickroom.QRname, AIDEROOM)) {
1336                         CC->quickroom.QRflags =
1337                             CC->quickroom.QRflags & ~QR_MAILBOX;
1338                 }
1339                 /* Add the message pointer to the room */
1340                 CC->quickroom.QRhighest =
1341                     AddMessageToRoom(&CC->quickroom, newmsgid);
1342
1343                 /* update quickroom */
1344                 lputroom(&CC->quickroom);
1345                 ++successful_local_recipients;
1346         }
1347
1348         /* Bump this user's messages posted counter. */
1349         lgetuser(&CC->usersupp, CC->curr_user);
1350         CC->usersupp.posted = CC->usersupp.posted + 1;
1351         lputuser(&CC->usersupp);
1352
1353         /* If this is private, local mail, make a copy in the
1354          * recipient's mailbox and bump the reference count.
1355          */
1356         if ((strlen(recipient) > 0) && (mailtype == MES_LOCAL)) {
1357                 if (getuser(&userbuf, recipient) == 0) {
1358                         MailboxName(actual_rm, &userbuf, MAILROOM);
1359                         if (lgetroom(&qtemp, actual_rm) == 0) {
1360                                 qtemp.QRhighest =
1361                                     AddMessageToRoom(&qtemp, newmsgid);
1362                                 lputroom(&qtemp);
1363                                 ++successful_local_recipients;
1364                         }
1365                 }
1366         }
1367         /* If we've posted in a room other than the current room, then we
1368          * have to now go back to the current room...
1369          */
1370         if (strlen(hold_rm) > 0) {
1371                 usergoto(hold_rm, 0);
1372         }
1373
1374         /* Write a supplemental message info record.  This doesn't have to
1375          * be a critical section because nobody else knows about this message
1376          * yet.
1377          */
1378         memset(&smi, 0, sizeof(struct SuppMsgInfo));
1379         smi.smi_msgnum = newmsgid;
1380         smi.smi_refcount = successful_local_recipients;
1381         safestrncpy(smi.smi_content_type, content_type, 64);
1382         PutSuppMsgInfo(&smi);
1383
1384         /* Perform "after save" hooks */
1385         PerformMessageHooks(msg, EVT_AFTERSAVE);
1386 }
1387
1388
1389
1390 /*
1391  * Convenience function for generating small administrative messages.
1392  */
1393 void quickie_message(char *from, char *to, char *room, char *text)
1394 {
1395         struct CtdlMessage *msg;
1396
1397         msg = mallok(sizeof(struct CtdlMessage));
1398         memset(msg, 0, sizeof(struct CtdlMessage));
1399         msg->cm_magic = CTDLMESSAGE_MAGIC;
1400         msg->cm_anon_type = MES_NORMAL;
1401         msg->cm_format_type = 0;
1402         msg->cm_fields['A'] = strdoop(from);
1403         msg->cm_fields['O'] = strdoop(room);
1404         msg->cm_fields['N'] = strdoop(NODENAME);
1405         if (to != NULL)
1406                 msg->cm_fields['R'] = strdoop(to);
1407         msg->cm_fields['M'] = strdoop(text);
1408
1409         CtdlSaveMsg(msg, "", room, MES_LOCAL, 1);
1410         CtdlFreeMessage(msg);
1411         syslog(LOG_NOTICE, text);
1412 }
1413
1414
1415 /*
1416  * Build a binary message to be saved on disk.
1417  */
1418
1419 struct CtdlMessage *make_message(
1420         struct usersupp *author,        /* author's usersupp structure */
1421         char *recipient,                /* NULL if it's not mail */
1422         char *room,                     /* room where it's going */
1423         int type,                       /* see MES_ types in header file */
1424         int net_type,                   /* see MES_ types in header file */
1425         int format_type,                /* local or remote (see citadel.h) */
1426         char *fake_name)                /* who we're masquerading as */
1427 {
1428
1429         int a;
1430         char dest_node[32];
1431         char buf[256];
1432         size_t message_len = 0;
1433         size_t buffer_len = 0;
1434         char *ptr;
1435         struct CtdlMessage *msg;
1436
1437         msg = mallok(sizeof(struct CtdlMessage));
1438         memset(msg, 0, sizeof(struct CtdlMessage));
1439         msg->cm_magic = CTDLMESSAGE_MAGIC;
1440         msg->cm_anon_type = type;
1441         msg->cm_format_type = format_type;
1442
1443         /* Don't confuse the poor folks if it's not routed mail. */
1444         strcpy(dest_node, "");
1445
1446         /* If net_type is MES_BINARY, split out the destination node. */
1447         if (net_type == MES_BINARY) {
1448                 strcpy(dest_node, NODENAME);
1449                 for (a = 0; a < strlen(recipient); ++a) {
1450                         if (recipient[a] == '@') {
1451                                 recipient[a] = 0;
1452                                 strcpy(dest_node, &recipient[a + 1]);
1453                         }
1454                 }
1455         }
1456
1457         /* if net_type is MES_INTERNET, set the dest node to 'internet' */
1458         if (net_type == MES_INTERNET) {
1459                 strcpy(dest_node, "internet");
1460         }
1461
1462         while (isspace(recipient[strlen(recipient) - 1]))
1463                 recipient[strlen(recipient) - 1] = 0;
1464
1465         sprintf(buf, "cit%ld", author->usernum);                /* Path */
1466         msg->cm_fields['P'] = strdoop(buf);
1467
1468         sprintf(buf, "%ld", time(NULL));                        /* timestamp */
1469         msg->cm_fields['T'] = strdoop(buf);
1470
1471         if (fake_name[0])                                       /* author */
1472                 msg->cm_fields['A'] = strdoop(fake_name);
1473         else
1474                 msg->cm_fields['A'] = strdoop(author->fullname);
1475
1476         if (CC->quickroom.QRflags & QR_MAILBOX)                 /* room */
1477                 msg->cm_fields['O'] = strdoop(&CC->quickroom.QRname[11]);
1478         else
1479                 msg->cm_fields['O'] = strdoop(CC->quickroom.QRname);
1480
1481         msg->cm_fields['N'] = strdoop(NODENAME);                /* nodename */
1482         msg->cm_fields['H'] = strdoop(HUMANNODE);               /* hnodename */
1483
1484         if (recipient[0] != 0)
1485                 msg->cm_fields['R'] = strdoop(recipient);
1486         if (dest_node[0] != 0)
1487                 msg->cm_fields['D'] = strdoop(dest_node);
1488
1489         msg->cm_fields['M'] = mallok(4096);
1490         if (msg->cm_fields['M'] == NULL) {
1491                 while (client_gets(buf), strcmp(buf, "000")) ;; /* flush */
1492                 return(msg);
1493         } else {
1494                 buffer_len = 4096;
1495                 msg->cm_fields['M'][0] = 0;
1496                 message_len = 0;
1497         }
1498
1499         /* read in the lines of message text one by one */
1500         while (client_gets(buf), strcmp(buf, "000")) {
1501
1502                 /* augment the buffer if we have to */
1503                 if ((message_len + strlen(buf) + 2) > buffer_len) {
1504                         ptr = reallok(msg->cm_fields['M'], (buffer_len * 2) );
1505                         if (ptr == NULL) {      /* flush if can't allocate */
1506                                 while (client_gets(buf), strcmp(buf, "000")) ;;
1507                                 return(msg);
1508                         } else {
1509                                 buffer_len = (buffer_len * 2);
1510                                 msg->cm_fields['M'] = ptr;
1511                         }
1512                 }
1513
1514                 strcat(msg->cm_fields['M'], buf);
1515                 strcat(msg->cm_fields['M'], "\n");
1516
1517                 /* if we've hit the max msg length, flush the rest */
1518                 if (message_len >= config.c_maxmsglen) {
1519                         while (client_gets(buf), strcmp(buf, "000")) ;;
1520                         return(msg);
1521                 }
1522         }
1523
1524         return(msg);
1525 }
1526
1527
1528
1529
1530
1531 /*
1532  * message entry  -  mode 0 (normal)
1533  */
1534 void cmd_ent0(char *entargs)
1535 {
1536         int post = 0;
1537         char recipient[256];
1538         int anon_flag = 0;
1539         int format_type = 0;
1540         char newusername[256];
1541         struct CtdlMessage *msg;
1542         int a, b;
1543         int e = 0;
1544         int mtsflag = 0;
1545         struct usersupp tempUS;
1546         char buf[256];
1547
1548         post = extract_int(entargs, 0);
1549         extract(recipient, entargs, 1);
1550         anon_flag = extract_int(entargs, 2);
1551         format_type = extract_int(entargs, 3);
1552
1553         /* first check to make sure the request is valid. */
1554
1555         if (!(CC->logged_in)) {
1556                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
1557                 return;
1558         }
1559         if ((CC->usersupp.axlevel < 2) && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)) {
1560                 cprintf("%d Need to be validated to enter ",
1561                         ERROR + HIGHER_ACCESS_REQUIRED);
1562                 cprintf("(except in %s> to sysop)\n", MAILROOM);
1563                 return;
1564         }
1565         if ((CC->usersupp.axlevel < 4) && (CC->quickroom.QRflags & QR_NETWORK)) {
1566                 cprintf("%d Need net privileges to enter here.\n",
1567                         ERROR + HIGHER_ACCESS_REQUIRED);
1568                 return;
1569         }
1570         if ((CC->usersupp.axlevel < 6) && (CC->quickroom.QRflags & QR_READONLY)) {
1571                 cprintf("%d Sorry, this is a read-only room.\n",
1572                         ERROR + HIGHER_ACCESS_REQUIRED);
1573                 return;
1574         }
1575         mtsflag = 0;
1576
1577
1578         if (post == 2) {
1579                 if (CC->usersupp.axlevel < 6) {
1580                         cprintf("%d You don't have permission to masquerade.\n",
1581                                 ERROR + HIGHER_ACCESS_REQUIRED);
1582                         return;
1583                 }
1584                 extract(newusername, entargs, 4);
1585                 memset(CC->fake_postname, 0, 32);
1586                 strcpy(CC->fake_postname, newusername);
1587                 cprintf("%d Ok\n", OK);
1588                 return;
1589         }
1590         CC->cs_flags |= CS_POSTING;
1591
1592         buf[0] = 0;
1593         if (CC->quickroom.QRflags & QR_MAILBOX) {
1594                 if (CC->usersupp.axlevel >= 2) {
1595                         strcpy(buf, recipient);
1596                 } else
1597                         strcpy(buf, "sysop");
1598                 e = alias(buf); /* alias and mail type */
1599                 if ((buf[0] == 0) || (e == MES_ERROR)) {
1600                         cprintf("%d Unknown address - cannot send message.\n",
1601                                 ERROR + NO_SUCH_USER);
1602                         return;
1603                 }
1604                 if ((e != MES_LOCAL) && (CC->usersupp.axlevel < 4)) {
1605                         cprintf("%d Net privileges required for network mail.\n",
1606                                 ERROR + HIGHER_ACCESS_REQUIRED);
1607                         return;
1608                 }
1609                 if ((RESTRICT_INTERNET == 1) && (e == MES_INTERNET)
1610                     && ((CC->usersupp.flags & US_INTERNET) == 0)
1611                     && (!CC->internal_pgm)) {
1612                         cprintf("%d You don't have access to Internet mail.\n",
1613                                 ERROR + HIGHER_ACCESS_REQUIRED);
1614                         return;
1615                 }
1616                 if (!strcasecmp(buf, "sysop")) {
1617                         mtsflag = 1;
1618                         goto SKFALL;
1619                 }
1620                 if (e != MES_LOCAL)
1621                         goto SKFALL;    /* don't search local file  */
1622                 if (!strcasecmp(buf, CC->usersupp.fullname)) {
1623                         cprintf("%d Can't send mail to yourself!\n",
1624                                 ERROR + NO_SUCH_USER);
1625                         return;
1626                 }
1627                 /* Check to make sure the user exists; also get the correct
1628                  * upper/lower casing of the name. 
1629                  */
1630                 a = getuser(&tempUS, buf);
1631                 if (a != 0) {
1632                         cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1633                         return;
1634                 }
1635                 strcpy(buf, tempUS.fullname);
1636         }
1637
1638 SKFALL: b = MES_NORMAL;
1639         if (CC->quickroom.QRflags & QR_ANONONLY)
1640                 b = MES_ANON;
1641         if (CC->quickroom.QRflags & QR_ANONOPT) {
1642                 if (anon_flag == 1)
1643                         b = MES_AN2;
1644         }
1645         if ((CC->quickroom.QRflags & QR_MAILBOX) == 0)
1646                 buf[0] = 0;
1647
1648         /* If we're only checking the validity of the request, return
1649          * success without creating the message.
1650          */
1651         if (post == 0) {
1652                 cprintf("%d %s\n", OK, buf);
1653                 return;
1654         }
1655
1656         cprintf("%d send message\n", SEND_LISTING);
1657
1658         /* Read in the message from the client. */
1659         if (CC->fake_postname[0])
1660                 msg = make_message(&CC->usersupp, buf,
1661                         CC->quickroom.QRname, b, e, format_type,
1662                         CC->fake_postname);
1663         else if (CC->fake_username[0])
1664                 msg = make_message(&CC->usersupp, buf,
1665                         CC->quickroom.QRname, b, e, format_type,
1666                         CC->fake_username);
1667         else
1668                 msg = make_message(&CC->usersupp, buf,
1669                         CC->quickroom.QRname, b, e, format_type, "");
1670
1671         if (msg != NULL)
1672                 CtdlSaveMsg(msg, buf, (mtsflag ? AIDEROOM : ""), e, 1);
1673                 CtdlFreeMessage(msg);
1674         CC->fake_postname[0] = '\0';
1675         return;
1676 }
1677
1678
1679
1680 /* 
1681  * message entry - mode 3 (raw)
1682  */
1683 void cmd_ent3(char *entargs)
1684 {
1685         char recp[256];
1686         int a;
1687         int e = 0;
1688         unsigned char ch, which_field;
1689         struct usersupp tempUS;
1690         long msglen;
1691         struct CtdlMessage *msg;
1692         char *tempbuf;
1693
1694         if (CC->internal_pgm == 0) {
1695                 cprintf("%d This command is for internal programs only.\n",
1696                         ERROR);
1697                 return;
1698         }
1699
1700         /* See if there's a recipient, but make sure it's a real one */
1701         extract(recp, entargs, 1);
1702         for (a = 0; a < strlen(recp); ++a)
1703                 if (!isprint(recp[a]))
1704                         strcpy(&recp[a], &recp[a + 1]);
1705         while (isspace(recp[0]))
1706                 strcpy(recp, &recp[1]);
1707         while (isspace(recp[strlen(recp) - 1]))
1708                 recp[strlen(recp) - 1] = 0;
1709
1710         /* If we're in Mail, check the recipient */
1711         if (strlen(recp) > 0) {
1712                 e = alias(recp);        /* alias and mail type */
1713                 if ((recp[0] == 0) || (e == MES_ERROR)) {
1714                         cprintf("%d Unknown address - cannot send message.\n",
1715                                 ERROR + NO_SUCH_USER);
1716                         return;
1717                 }
1718                 if (e == MES_LOCAL) {
1719                         a = getuser(&tempUS, recp);
1720                         if (a != 0) {
1721                                 cprintf("%d No such user.\n",
1722                                         ERROR + NO_SUCH_USER);
1723                                 return;
1724                         }
1725                 }
1726         }
1727
1728         /* At this point, message has been approved. */
1729         if (extract_int(entargs, 0) == 0) {
1730                 cprintf("%d OK to send\n", OK);
1731                 return;
1732         }
1733
1734         msglen = extract_long(entargs, 2);
1735         msg = mallok(sizeof(struct CtdlMessage));
1736         if (msg == NULL) {
1737                 cprintf("%d Out of memory\n", ERROR+INTERNAL_ERROR);
1738                 return;
1739         }
1740
1741         memset(msg, 0, sizeof(struct CtdlMessage));
1742         tempbuf = mallok(msglen);
1743         if (tempbuf == NULL) {
1744                 cprintf("%d Out of memory\n", ERROR+INTERNAL_ERROR);
1745                 phree(msg);
1746                 return;
1747         }
1748
1749         cprintf("%d %ld\n", SEND_BINARY, msglen);
1750
1751         client_read(&ch, 1);                            /* 0xFF magic number */
1752         msg->cm_magic = CTDLMESSAGE_MAGIC;
1753         client_read(&ch, 1);                            /* anon type */
1754         msg->cm_anon_type = ch;
1755         client_read(&ch, 1);                            /* format type */
1756         msg->cm_format_type = ch;
1757         msglen = msglen - 3;
1758
1759         while (msglen > 0) {
1760                 client_read(&which_field, 1);
1761                 --msglen;
1762                 tempbuf[0] = 0;
1763                 do {
1764                         client_read(&ch, 1);
1765                         --msglen;
1766                         a = strlen(tempbuf);
1767                         tempbuf[a+1] = 0;
1768                         tempbuf[a] = ch;
1769                 } while ( (ch != 0) && (msglen > 0) );
1770                 msg->cm_fields[which_field] = strdoop(tempbuf);
1771         }
1772
1773         CtdlSaveMsg(msg, recp, "", e, 0);
1774         CtdlFreeMessage(msg);
1775         phree(tempbuf);
1776 }
1777
1778
1779 /*
1780  * API function to delete messages which match a set of criteria
1781  * (returns the actual number of messages deleted)
1782  */
1783 int CtdlDeleteMessages(char *room_name,         /* which room */
1784                        long dmsgnum,            /* or "0" for any */
1785                        char *content_type       /* or NULL for any */
1786 )
1787 {
1788
1789         struct quickroom qrbuf;
1790         struct cdbdata *cdbfr;
1791         long *msglist = NULL;
1792         int num_msgs = 0;
1793         int i;
1794         int num_deleted = 0;
1795         int delete_this;
1796         struct SuppMsgInfo smi;
1797
1798         lprintf(9, "CtdlDeleteMessages(%s, %ld, %s)\n",
1799                 room_name, dmsgnum, content_type);
1800
1801         /* get room record, obtaining a lock... */
1802         if (lgetroom(&qrbuf, room_name) != 0) {
1803                 lprintf(7, "CtdlDeleteMessages(): Room <%s> not found\n",
1804                         room_name);
1805                 return (0);     /* room not found */
1806         }
1807         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
1808
1809         if (cdbfr != NULL) {
1810                 msglist = mallok(cdbfr->len);
1811                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1812                 num_msgs = cdbfr->len / sizeof(long);
1813                 cdb_free(cdbfr);
1814         }
1815         if (num_msgs > 0) {
1816                 for (i = 0; i < num_msgs; ++i) {
1817                         delete_this = 0x00;
1818
1819                         /* Set/clear a bit for each criterion */
1820
1821                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
1822                                 delete_this |= 0x01;
1823                         }
1824                         if (content_type == NULL) {
1825                                 delete_this |= 0x02;
1826                         } else {
1827                                 GetSuppMsgInfo(&smi, msglist[i]);
1828                                 if (!strcasecmp(smi.smi_content_type,
1829                                                 content_type)) {
1830                                         delete_this |= 0x02;
1831                                 }
1832                         }
1833
1834                         /* Delete message only if all bits are set */
1835                         if (delete_this == 0x03) {
1836                                 AdjRefCount(msglist[i], -1);
1837                                 msglist[i] = 0L;
1838                                 ++num_deleted;
1839                         }
1840                 }
1841
1842                 num_msgs = sort_msglist(msglist, num_msgs);
1843                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long),
1844                           msglist, (num_msgs * sizeof(long)));
1845
1846                 qrbuf.QRhighest = msglist[num_msgs - 1];
1847                 phree(msglist);
1848         }
1849         lputroom(&qrbuf);
1850         lprintf(9, "%d message(s) deleted.\n", num_deleted);
1851         return (num_deleted);
1852 }
1853
1854
1855
1856 /*
1857  * Delete message from current room
1858  */
1859 void cmd_dele(char *delstr)
1860 {
1861         long delnum;
1862         int num_deleted;
1863
1864         getuser(&CC->usersupp, CC->curr_user);
1865         if ((CC->usersupp.axlevel < 6)
1866             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)
1867             && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)) {
1868                 cprintf("%d Higher access required.\n",
1869                         ERROR + HIGHER_ACCESS_REQUIRED);
1870                 return;
1871         }
1872         delnum = extract_long(delstr, 0);
1873
1874         num_deleted = CtdlDeleteMessages(CC->quickroom.QRname, delnum, NULL);
1875
1876         if (num_deleted) {
1877                 cprintf("%d %d message%s deleted.\n", OK,
1878                         num_deleted, ((num_deleted != 1) ? "s" : ""));
1879         } else {
1880                 cprintf("%d Message %ld not found.\n", ERROR, delnum);
1881         }
1882 }
1883
1884
1885 /*
1886  * move a message to another room
1887  */
1888 void cmd_move(char *args)
1889 {
1890         long num;
1891         char targ[32];
1892         struct quickroom qtemp;
1893         int foundit;
1894
1895         num = extract_long(args, 0);
1896         extract(targ, args, 1);
1897
1898         getuser(&CC->usersupp, CC->curr_user);
1899         if ((CC->usersupp.axlevel < 6)
1900             && (CC->usersupp.usernum != CC->quickroom.QRroomaide)) {
1901                 cprintf("%d Higher access required.\n",
1902                         ERROR + HIGHER_ACCESS_REQUIRED);
1903                 return;
1904         }
1905         if (getroom(&qtemp, targ) != 0) {
1906                 cprintf("%d '%s' does not exist.\n", ERROR, targ);
1907                 return;
1908         }
1909         /* Bump the reference count, otherwise the message will be deleted
1910          * from disk when we remove it from the source room.
1911          */
1912         AdjRefCount(num, 1);
1913
1914         /* yank the message out of the current room... */
1915         foundit = CtdlDeleteMessages(CC->quickroom.QRname, num, NULL);
1916
1917         if (foundit) {
1918                 /* put the message into the target room */
1919                 lgetroom(&qtemp, targ);
1920                 qtemp.QRhighest = AddMessageToRoom(&qtemp, num);
1921                 lputroom(&qtemp);
1922                 cprintf("%d Message moved.\n", OK);
1923         } else {
1924                 AdjRefCount(num, (-1));         /* oops */
1925                 cprintf("%d msg %ld does not exist.\n", ERROR, num);
1926         }
1927 }
1928
1929
1930
1931 /*
1932  * GetSuppMsgInfo()  -  Get the supplementary record for a message
1933  */
1934 void GetSuppMsgInfo(struct SuppMsgInfo *smibuf, long msgnum)
1935 {
1936
1937         struct cdbdata *cdbsmi;
1938         long TheIndex;
1939
1940         memset(smibuf, 0, sizeof(struct SuppMsgInfo));
1941         smibuf->smi_msgnum = msgnum;
1942         smibuf->smi_refcount = 1;       /* Default reference count is 1 */
1943
1944         /* Use the negative of the message number for its supp record index */
1945         TheIndex = (0L - msgnum);
1946
1947         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
1948         if (cdbsmi == NULL) {
1949                 return;         /* record not found; go with defaults */
1950         }
1951         memcpy(smibuf, cdbsmi->ptr,
1952                ((cdbsmi->len > sizeof(struct SuppMsgInfo)) ?
1953                 sizeof(struct SuppMsgInfo) : cdbsmi->len));
1954         cdb_free(cdbsmi);
1955         return;
1956 }
1957
1958
1959 /*
1960  * PutSuppMsgInfo()  -  (re)write supplementary record for a message
1961  */
1962 void PutSuppMsgInfo(struct SuppMsgInfo *smibuf)
1963 {
1964         long TheIndex;
1965
1966         /* Use the negative of the message number for its supp record index */
1967         TheIndex = (0L - smibuf->smi_msgnum);
1968
1969         lprintf(9, "PuttSuppMsgInfo(%ld) - ref count is %d\n",
1970                 smibuf->smi_msgnum, smibuf->smi_refcount);
1971
1972         cdb_store(CDB_MSGMAIN,
1973                   &TheIndex, sizeof(long),
1974                   smibuf, sizeof(struct SuppMsgInfo));
1975
1976 }
1977
1978 /*
1979  * AdjRefCount  -  change the reference count for a message;
1980  *                 delete the message if it reaches zero
1981  */
1982 void AdjRefCount(long msgnum, int incr)
1983 {
1984
1985         struct SuppMsgInfo smi;
1986         long delnum;
1987
1988         /* This is a *tight* critical section; please keep it that way, as
1989          * it may get called while nested in other critical sections.  
1990          * Complicating this any further will surely cause deadlock!
1991          */
1992         begin_critical_section(S_SUPPMSGMAIN);
1993         GetSuppMsgInfo(&smi, msgnum);
1994         smi.smi_refcount += incr;
1995         PutSuppMsgInfo(&smi);
1996         end_critical_section(S_SUPPMSGMAIN);
1997
1998         lprintf(9, "Ref count for message <%ld> after write is <%d>\n",
1999                 msgnum, smi.smi_refcount);
2000
2001         /* If the reference count is now zero, delete the message
2002          * (and its supplementary record as well).
2003          */
2004         if (smi.smi_refcount == 0) {
2005                 lprintf(9, "Deleting message <%ld>\n", msgnum);
2006                 delnum = msgnum;
2007                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2008                 delnum = (0L - msgnum);
2009                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
2010         }
2011 }
2012
2013 /*
2014  * Write a generic object to this room
2015  *
2016  * Note: this could be much more efficient.  Right now we use two temporary
2017  * files, and still pull the message into memory as with all others.
2018  */
2019 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
2020                         char *content_type,     /* MIME type of this object */
2021                         char *tempfilename,     /* Where to fetch it from */
2022                         struct usersupp *is_mailbox,    /* Mailbox room? */
2023                         int is_binary,          /* Is encoding necessary? */
2024                         int is_unique,          /* Del others of this type? */
2025                         unsigned int flags      /* Internal save flags */
2026                         )
2027 {
2028
2029         FILE *fp, *tempfp;
2030         char filename[PATH_MAX];
2031         char cmdbuf[256];
2032         int ch;
2033         struct quickroom qrbuf;
2034         char roomname[ROOMNAMELEN];
2035         struct CtdlMessage *msg;
2036         size_t len;
2037
2038         if (is_mailbox != NULL)
2039                 MailboxName(roomname, is_mailbox, req_room);
2040         else
2041                 safestrncpy(roomname, req_room, sizeof(roomname));
2042         lprintf(9, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
2043
2044         strcpy(filename, tmpnam(NULL));
2045         fp = fopen(filename, "w");
2046         if (fp == NULL)
2047                 return;
2048
2049         tempfp = fopen(tempfilename, "r");
2050         if (tempfp == NULL) {
2051                 fclose(fp);
2052                 unlink(filename);
2053                 return;
2054         }
2055
2056         fprintf(fp, "Content-type: %s\n", content_type);
2057         lprintf(9, "Content-type: %s\n", content_type);
2058
2059         if (is_binary == 0) {
2060                 fprintf(fp, "Content-transfer-encoding: 7bit\n\n");
2061                 while (ch = getc(tempfp), ch > 0)
2062                         putc(ch, fp);
2063                 fclose(tempfp);
2064                 putc(0, fp);
2065                 fclose(fp);
2066         } else {
2067                 fprintf(fp, "Content-transfer-encoding: base64\n\n");
2068                 fclose(tempfp);
2069                 fclose(fp);
2070                 sprintf(cmdbuf, "./base64 -e <%s >>%s",
2071                         tempfilename, filename);
2072                 system(cmdbuf);
2073         }
2074
2075         lprintf(9, "Allocating\n");
2076         msg = mallok(sizeof(struct CtdlMessage));
2077         memset(msg, 0, sizeof(struct CtdlMessage));
2078         msg->cm_magic = CTDLMESSAGE_MAGIC;
2079         msg->cm_anon_type = MES_NORMAL;
2080         msg->cm_format_type = 4;
2081         msg->cm_fields['A'] = strdoop(CC->usersupp.fullname);
2082         msg->cm_fields['O'] = strdoop(req_room);
2083         msg->cm_fields['N'] = strdoop(config.c_nodename);
2084         msg->cm_fields['H'] = strdoop(config.c_humannode);
2085         msg->cm_flags = flags;
2086         
2087         lprintf(9, "Loading\n");
2088         fp = fopen(filename, "rb");
2089         fseek(fp, 0L, SEEK_END);
2090         len = ftell(fp);
2091         rewind(fp);
2092         msg->cm_fields['M'] = mallok(len);
2093         fread(msg->cm_fields['M'], len, 1, fp);
2094         fclose(fp);
2095         unlink(filename);
2096
2097         /* Create the requested room if we have to. */
2098         if (getroom(&qrbuf, roomname) != 0) {
2099                 create_room(roomname, 4, "", 0);
2100         }
2101         /* If the caller specified this object as unique, delete all
2102          * other objects of this type that are currently in the room.
2103          */
2104         if (is_unique) {
2105                 lprintf(9, "Deleted %d other msgs of this type\n",
2106                         CtdlDeleteMessages(roomname, 0L, content_type));
2107         }
2108         /* Now write the data */
2109         CtdlSaveMsg(msg, "", roomname, MES_LOCAL, 1);
2110         CtdlFreeMessage(msg);
2111 }