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