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