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