7544cfadbf067c54abee9160e4f69e5d44e7a481
[citadel.git] / citadel / msgbase.c
1 /*
2  * $Id$
3  *
4  * Implements the message store.
5  *
6  */
7
8 #ifdef DLL_EXPORT
9 #define IN_LIBCIT
10 #endif
11
12 #include "sysdep.h"
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <stdio.h>
16 #include <fcntl.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29
30 #include <ctype.h>
31 #include <string.h>
32 #include <limits.h>
33 #include <errno.h>
34 #include <stdarg.h>
35 #include <sys/stat.h>
36 #include "citadel.h"
37 #include "server.h"
38 #include "serv_extensions.h"
39 #include "database.h"
40 #include "msgbase.h"
41 #include "support.h"
42 #include "sysdep_decls.h"
43 #include "citserver.h"
44 #include "room_ops.h"
45 #include "user_ops.h"
46 #include "file_ops.h"
47 #include "config.h"
48 #include "control.h"
49 #include "tools.h"
50 #include "mime_parser.h"
51 #include "html.h"
52 #include "genstamp.h"
53 #include "internet_addressing.h"
54 #include "serv_fulltext.h"
55
56 long config_msgnum;
57
58
59 /* 
60  * This really belongs in serv_network.c, but I don't know how to export
61  * symbols between modules.
62  */
63 struct FilterList *filterlist = NULL;
64
65
66 /*
67  * These are the four-character field headers we use when outputting
68  * messages in Citadel format (as opposed to RFC822 format).
69  */
70 char *msgkeys[] = {
71         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
72         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
73         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
74         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
75         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
76         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
77         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
78         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
79         NULL, 
80         "from",
81         NULL, NULL, NULL,
82         "exti",
83         "rfca",
84         NULL, 
85         "hnod",
86         "msgn",
87         NULL, NULL, NULL,
88         "text",
89         "node",
90         "room",
91         "path",
92         NULL,
93         "rcpt",
94         "spec",
95         "time",
96         "subj",
97         NULL,
98         NULL,
99         NULL,
100         NULL,
101         NULL
102 };
103
104 /*
105  * This function is self explanatory.
106  * (What can I say, I'm in a weird mood today...)
107  */
108 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
109 {
110         int i;
111
112         for (i = 0; i < strlen(name); ++i) {
113                 if (name[i] == '@') {
114                         while (isspace(name[i - 1]) && i > 0) {
115                                 strcpy(&name[i - 1], &name[i]);
116                                 --i;
117                         }
118                         while (isspace(name[i + 1])) {
119                                 strcpy(&name[i + 1], &name[i + 2]);
120                         }
121                 }
122         }
123 }
124
125
126 /*
127  * Aliasing for network mail.
128  * (Error messages have been commented out, because this is a server.)
129  */
130 int alias(char *name)
131 {                               /* process alias and routing info for mail */
132         FILE *fp;
133         int a, i;
134         char aaa[SIZ], bbb[SIZ];
135         char *ignetcfg = NULL;
136         char *ignetmap = NULL;
137         int at = 0;
138         char node[64];
139         char testnode[64];
140         char buf[SIZ];
141
142         striplt(name);
143         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
144
145         fp = fopen(
146 #ifndef HAVE_ETG_DIR
147                            "network/"
148 #else
149                            ETC_DIR
150 #endif
151                            "mail.aliases", "r");
152         if (fp == NULL) {
153                 fp = fopen("/dev/null", "r");
154         }
155         if (fp == NULL) {
156                 return (MES_ERROR);
157         }
158         strcpy(aaa, "");
159         strcpy(bbb, "");
160         while (fgets(aaa, sizeof aaa, fp) != NULL) {
161                 while (isspace(name[0]))
162                         strcpy(name, &name[1]);
163                 aaa[strlen(aaa) - 1] = 0;
164                 strcpy(bbb, "");
165                 for (a = 0; a < strlen(aaa); ++a) {
166                         if (aaa[a] == ',') {
167                                 strcpy(bbb, &aaa[a + 1]);
168                                 aaa[a] = 0;
169                         }
170                 }
171                 if (!strcasecmp(name, aaa))
172                         strcpy(name, bbb);
173         }
174         fclose(fp);
175
176         /* Hit the Global Address Book */
177         if (CtdlDirectoryLookup(aaa, name, sizeof aaa) == 0) {
178                 strcpy(name, aaa);
179         }
180
181         lprintf(CTDL_INFO, "Mail is being forwarded to %s\n", name);
182
183         /* Change "user @ xxx" to "user" if xxx is an alias for this host */
184         for (a=0; a<strlen(name); ++a) {
185                 if (name[a] == '@') {
186                         if (CtdlHostAlias(&name[a+1]) == hostalias_localhost) {
187                                 name[a] = 0;
188                                 lprintf(CTDL_INFO, "Changed to <%s>\n", name);
189                         }
190                 }
191         }
192
193         /* determine local or remote type, see citadel.h */
194         at = haschar(name, '@');
195         if (at == 0) return(MES_LOCAL);         /* no @'s - local address */
196         if (at > 1) return(MES_ERROR);          /* >1 @'s - invalid address */
197         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
198
199         /* figure out the delivery mode */
200         extract_token(node, name, 1, '@', sizeof node);
201
202         /* If there are one or more dots in the nodename, we assume that it
203          * is an FQDN and will attempt SMTP delivery to the Internet.
204          */
205         if (haschar(node, '.') > 0) {
206                 return(MES_INTERNET);
207         }
208
209         /* Otherwise we look in the IGnet maps for a valid Citadel node.
210          * Try directly-connected nodes first...
211          */
212         ignetcfg = CtdlGetSysConfig(IGNETCFG);
213         for (i=0; i<num_tokens(ignetcfg, '\n'); ++i) {
214                 extract_token(buf, ignetcfg, i, '\n', sizeof buf);
215                 extract_token(testnode, buf, 0, '|', sizeof testnode);
216                 if (!strcasecmp(node, testnode)) {
217                         free(ignetcfg);
218                         return(MES_IGNET);
219                 }
220         }
221         free(ignetcfg);
222
223         /*
224          * Then try nodes that are two or more hops away.
225          */
226         ignetmap = CtdlGetSysConfig(IGNETMAP);
227         for (i=0; i<num_tokens(ignetmap, '\n'); ++i) {
228                 extract_token(buf, ignetmap, i, '\n', sizeof buf);
229                 extract_token(testnode, buf, 0, '|', sizeof testnode);
230                 if (!strcasecmp(node, testnode)) {
231                         free(ignetmap);
232                         return(MES_IGNET);
233                 }
234         }
235         free(ignetmap);
236
237         /* If we get to this point it's an invalid node name */
238         return (MES_ERROR);
239 }
240
241
242 void get_mm(void)
243 {
244         FILE *fp;
245
246         fp = fopen(
247 #ifndef HAVE_RUN_DIR
248                            "."
249 #else
250                            RUN_DIR
251 #endif
252                            "/citadel.control", "r");
253         if (fp == NULL) {
254                 lprintf(CTDL_CRIT, "Cannot open citadel.control: %s\n",
255                         strerror(errno));
256                 exit(errno);
257         }
258         fread((char *) &CitControl, sizeof(struct CitControl), 1, fp);
259         fclose(fp);
260 }
261
262
263 /*
264  * Back end for the MSGS command: output message number only.
265  */
266 void simple_listing(long msgnum, void *userdata)
267 {
268         cprintf("%ld\n", msgnum);
269 }
270
271
272
273 /*
274  * Back end for the MSGS command: output header summary.
275  */
276 void headers_listing(long msgnum, void *userdata)
277 {
278         struct CtdlMessage *msg;
279
280         msg = CtdlFetchMessage(msgnum, 0);
281         if (msg < 0L) {
282                 cprintf("%ld|0|||||\n", msgnum);
283                 return;
284         }
285
286         cprintf("%ld|%s|%s|%s|%s|%s|\n",
287                 msgnum,
288                 (msg->cm_fields['T'] ? msg->cm_fields['T'] : "0"),
289                 (msg->cm_fields['A'] ? msg->cm_fields['A'] : ""),
290                 (msg->cm_fields['N'] ? msg->cm_fields['N'] : ""),
291                 (msg->cm_fields['F'] ? msg->cm_fields['F'] : ""),
292                 (msg->cm_fields['U'] ? msg->cm_fields['U'] : "")
293         );
294         CtdlFreeMessage(msg);
295 }
296
297
298
299 /* Determine if a given message matches the fields in a message template.
300  * Return 0 for a successful match.
301  */
302 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
303         int i;
304
305         /* If there aren't any fields in the template, all messages will
306          * match.
307          */
308         if (template == NULL) return(0);
309
310         /* Null messages are bogus. */
311         if (msg == NULL) return(1);
312
313         for (i='A'; i<='Z'; ++i) {
314                 if (template->cm_fields[i] != NULL) {
315                         if (msg->cm_fields[i] == NULL) {
316                                 return 1;
317                         }
318                         if (strcasecmp(msg->cm_fields[i],
319                                 template->cm_fields[i])) return 1;
320                 }
321         }
322
323         /* All compares succeeded: we have a match! */
324         return 0;
325 }
326
327
328
329 /*
330  * Retrieve the "seen" message list for the current room.
331  */
332 void CtdlGetSeen(char *buf, int which_set) {
333         struct visit vbuf;
334
335         /* Learn about the user and room in question */
336         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
337
338         if (which_set == ctdlsetseen_seen)
339                 safestrncpy(buf, vbuf.v_seen, SIZ);
340         if (which_set == ctdlsetseen_answered)
341                 safestrncpy(buf, vbuf.v_answered, SIZ);
342 }
343
344
345
346 /*
347  * Manipulate the "seen msgs" string (or other message set strings)
348  */
349 void CtdlSetSeen(long target_msgnum, int target_setting, int which_set,
350                 struct ctdluser *which_user, struct ctdlroom *which_room) {
351         struct cdbdata *cdbfr;
352         int i, j;
353         int is_seen = 0;
354         int was_seen = 0;
355         long lo = (-1L);
356         long hi = (-1L);
357         long t = (-1L);
358         int trimming = 0;
359         struct visit vbuf;
360         long *msglist;
361         int num_msgs = 0;
362         char vset[SIZ];
363         char *is_set;   /* actually an array of booleans */
364         int num_sets;
365         int s;
366         char setstr[SIZ], lostr[SIZ], histr[SIZ];
367         size_t tmp;
368
369         lprintf(CTDL_DEBUG, "CtdlSetSeen(%ld, %d, %d)\n",
370                 target_msgnum, target_setting, which_set);
371
372         /* Learn about the user and room in question */
373         CtdlGetRelationship(&vbuf,
374                 ((which_user != NULL) ? which_user : &CC->user),
375                 ((which_room != NULL) ? which_room : &CC->room)
376         );
377
378         /* Load the message list */
379         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
380         if (cdbfr != NULL) {
381                 msglist = malloc(cdbfr->len);
382                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
383                 num_msgs = cdbfr->len / sizeof(long);
384                 cdb_free(cdbfr);
385         } else {
386                 return; /* No messages at all?  No further action. */
387         }
388
389         is_set = malloc(num_msgs * sizeof(char));
390         memset(is_set, 0, (num_msgs * sizeof(char)) );
391
392         /* Decide which message set we're manipulating */
393         switch(which_set) {
394                 case ctdlsetseen_seen:
395                         safestrncpy(vset, vbuf.v_seen, sizeof vset);
396                         break;
397                 case ctdlsetseen_answered:
398                         safestrncpy(vset, vbuf.v_answered, sizeof vset);
399                         break;
400         }
401
402         /* lprintf(CTDL_DEBUG, "before optimize: %s\n", vset); */
403
404         /* Translate the existing sequence set into an array of booleans */
405         num_sets = num_tokens(vset, ',');
406         for (s=0; s<num_sets; ++s) {
407                 extract_token(setstr, vset, s, ',', sizeof setstr);
408
409                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
410                 if (num_tokens(setstr, ':') >= 2) {
411                         extract_token(histr, setstr, 1, ':', sizeof histr);
412                         if (!strcmp(histr, "*")) {
413                                 snprintf(histr, sizeof histr, "%ld", LONG_MAX);
414                         }
415                 }
416                 else {
417                         strcpy(histr, lostr);
418                 }
419                 lo = atol(lostr);
420                 hi = atol(histr);
421
422                 for (i = 0; i < num_msgs; ++i) {
423                         if ((msglist[i] >= lo) && (msglist[i] <= hi)) {
424                                 is_set[i] = 1;
425                         }
426                 }
427         }
428
429         /* Now translate the array of booleans back into a sequence set */
430         strcpy(vset, "");
431         lo = (-1L);
432         hi = (-1L);
433
434         for (i=0; i<num_msgs; ++i) {
435                 is_seen = 0;
436
437                 if (msglist[i] == target_msgnum) {
438                         is_seen = target_setting;
439                 }
440                 else {
441                         is_seen = is_set[i];
442                 }
443
444                 if (is_seen) {
445                         if (lo < 0L) lo = msglist[i];
446                         hi = msglist[i];
447                 }
448
449                 if (  ((is_seen == 0) && (was_seen == 1))
450                    || ((is_seen == 1) && (i == num_msgs-1)) ) {
451
452                         /* begin trim-o-matic code */
453                         j=9;
454                         trimming = 0;
455                         while ( (strlen(vset) + 20) > sizeof vset) {
456                                 remove_token(vset, 0, ',');
457                                 trimming = 1;
458                                 if (j--) break; /* loop no more than 9 times */
459                         }
460                         if ( (trimming) && (which_set == ctdlsetseen_seen) ) {
461                                 t = atol(vset);
462                                 if (t<2) t=2;
463                                 --t;
464                                 snprintf(lostr, sizeof lostr,
465                                         "1:%ld,%s", t, vset);
466                                 safestrncpy(vset, lostr, sizeof vset);
467                         }
468                         /* end trim-o-matic code */
469
470                         tmp = strlen(vset);
471                         if (tmp > 0) {
472                                 strcat(vset, ",");
473                                 ++tmp;
474                         }
475                         if (lo == hi) {
476                                 snprintf(&vset[tmp], (sizeof vset) - tmp,
477                                          "%ld", lo);
478                         }
479                         else {
480                                 snprintf(&vset[tmp], (sizeof vset) - tmp,
481                                          "%ld:%ld", lo, hi);
482                         }
483                         lo = (-1L);
484                         hi = (-1L);
485                 }
486                 was_seen = is_seen;
487         }
488
489         /* Decide which message set we're manipulating */
490         switch (which_set) {
491                 case ctdlsetseen_seen:
492                         safestrncpy(vbuf.v_seen, vset, sizeof vbuf.v_seen);
493                         break;
494                 case ctdlsetseen_answered:
495                         safestrncpy(vbuf.v_answered, vset,
496                                                 sizeof vbuf.v_answered);
497                         break;
498         }
499         free(is_set);
500
501         /* lprintf(CTDL_DEBUG, " after optimize: %s\n", vset); */
502         free(msglist);
503         CtdlSetRelationship(&vbuf,
504                 ((which_user != NULL) ? which_user : &CC->user),
505                 ((which_room != NULL) ? which_room : &CC->room)
506         );
507 }
508
509
510 /*
511  * API function to perform an operation for each qualifying message in the
512  * current room.  (Returns the number of messages processed.)
513  */
514 int CtdlForEachMessage(int mode, long ref,
515                         char *content_type,
516                         struct CtdlMessage *compare,
517                         void (*CallBack) (long, void *),
518                         void *userdata)
519 {
520
521         int a;
522         struct visit vbuf;
523         struct cdbdata *cdbfr;
524         long *msglist = NULL;
525         int num_msgs = 0;
526         int num_processed = 0;
527         long thismsg;
528         struct MetaData smi;
529         struct CtdlMessage *msg;
530         int is_seen = 0;
531         long lastold = 0L;
532         int printed_lastold = 0;
533
534         /* Learn about the user and room in question */
535         get_mm();
536         getuser(&CC->user, CC->curr_user);
537         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
538
539         /* Load the message list */
540         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
541         if (cdbfr != NULL) {
542                 msglist = malloc(cdbfr->len);
543                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
544                 num_msgs = cdbfr->len / sizeof(long);
545                 cdb_free(cdbfr);
546         } else {
547                 return 0;       /* No messages at all?  No further action. */
548         }
549
550
551         /*
552          * Now begin the traversal.
553          */
554         if (num_msgs > 0) for (a = 0; a < num_msgs; ++a) {
555
556                 /* If the caller is looking for a specific MIME type, filter
557                  * out all messages which are not of the type requested.
558                  */
559                 if (content_type != NULL) if (strlen(content_type) > 0) {
560
561                         /* This call to GetMetaData() sits inside this loop
562                          * so that we only do the extra database read per msg
563                          * if we need to.  Doing the extra read all the time
564                          * really kills the server.  If we ever need to use
565                          * metadata for another search criterion, we need to
566                          * move the read somewhere else -- but still be smart
567                          * enough to only do the read if the caller has
568                          * specified something that will need it.
569                          */
570                         GetMetaData(&smi, msglist[a]);
571
572                         if (strcasecmp(smi.meta_content_type, content_type)) {
573                                 msglist[a] = 0L;
574                         }
575                 }
576         }
577
578         num_msgs = sort_msglist(msglist, num_msgs);
579
580         /* If a template was supplied, filter out the messages which
581          * don't match.  (This could induce some delays!)
582          */
583         if (num_msgs > 0) {
584                 if (compare != NULL) {
585                         for (a = 0; a < num_msgs; ++a) {
586                                 msg = CtdlFetchMessage(msglist[a], 1);
587                                 if (msg != NULL) {
588                                         if (CtdlMsgCmp(msg, compare)) {
589                                                 msglist[a] = 0L;
590                                         }
591                                         CtdlFreeMessage(msg);
592                                 }
593                         }
594                 }
595         }
596
597         
598         /*
599          * Now iterate through the message list, according to the
600          * criteria supplied by the caller.
601          */
602         if (num_msgs > 0)
603                 for (a = 0; a < num_msgs; ++a) {
604                         thismsg = msglist[a];
605                         if (mode == MSGS_ALL) {
606                                 is_seen = 0;
607                         }
608                         else {
609                                 is_seen = is_msg_in_sequence_set(
610                                                         vbuf.v_seen, thismsg);
611                                 if (is_seen) lastold = thismsg;
612                         }
613                         if ((thismsg > 0L)
614                             && (
615
616                                        (mode == MSGS_ALL)
617                                        || ((mode == MSGS_OLD) && (is_seen))
618                                        || ((mode == MSGS_NEW) && (!is_seen))
619                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
620                                    || ((mode == MSGS_FIRST) && (a < ref))
621                                 || ((mode == MSGS_GT) && (thismsg > ref))
622                                 || ((mode == MSGS_EQ) && (thismsg == ref))
623                             )
624                             ) {
625                                 if ((mode == MSGS_NEW) && (CC->user.flags & US_LASTOLD) && (lastold > 0L) && (printed_lastold == 0) && (!is_seen)) {
626                                         if (CallBack)
627                                                 CallBack(lastold, userdata);
628                                         printed_lastold = 1;
629                                         ++num_processed;
630                                 }
631                                 if (CallBack) CallBack(thismsg, userdata);
632                                 ++num_processed;
633                         }
634                 }
635         free(msglist);          /* Clean up */
636         return num_processed;
637 }
638
639
640
641 /*
642  * cmd_msgs()  -  get list of message #'s in this room
643  *              implements the MSGS server command using CtdlForEachMessage()
644  */
645 void cmd_msgs(char *cmdbuf)
646 {
647         int mode = 0;
648         char which[16];
649         char buf[256];
650         char tfield[256];
651         char tvalue[256];
652         int cm_ref = 0;
653         int i;
654         int with_template = 0;
655         struct CtdlMessage *template = NULL;
656         int with_headers = 0;
657
658         extract_token(which, cmdbuf, 0, '|', sizeof which);
659         cm_ref = extract_int(cmdbuf, 1);
660         with_template = extract_int(cmdbuf, 2);
661         with_headers = extract_int(cmdbuf, 3);
662
663         mode = MSGS_ALL;
664         strcat(which, "   ");
665         if (!strncasecmp(which, "OLD", 3))
666                 mode = MSGS_OLD;
667         else if (!strncasecmp(which, "NEW", 3))
668                 mode = MSGS_NEW;
669         else if (!strncasecmp(which, "FIRST", 5))
670                 mode = MSGS_FIRST;
671         else if (!strncasecmp(which, "LAST", 4))
672                 mode = MSGS_LAST;
673         else if (!strncasecmp(which, "GT", 2))
674                 mode = MSGS_GT;
675
676         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
677                 cprintf("%d not logged in\n", ERROR + NOT_LOGGED_IN);
678                 return;
679         }
680
681         if (with_template) {
682                 unbuffer_output();
683                 cprintf("%d Send template then receive message list\n",
684                         START_CHAT_MODE);
685                 template = (struct CtdlMessage *)
686                         malloc(sizeof(struct CtdlMessage));
687                 memset(template, 0, sizeof(struct CtdlMessage));
688                 while(client_getln(buf, sizeof buf), strcmp(buf,"000")) {
689                         extract_token(tfield, buf, 0, '|', sizeof tfield);
690                         extract_token(tvalue, buf, 1, '|', sizeof tvalue);
691                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
692                                 if (!strcasecmp(tfield, msgkeys[i])) {
693                                         template->cm_fields[i] =
694                                                 strdup(tvalue);
695                                 }
696                         }
697                 }
698                 buffer_output();
699         }
700         else {
701                 cprintf("%d  \n", LISTING_FOLLOWS);
702         }
703
704         CtdlForEachMessage(mode,
705                         cm_ref,
706                         NULL,
707                         template,
708                         (with_headers ? headers_listing : simple_listing),
709                         NULL
710         );
711         if (template != NULL) CtdlFreeMessage(template);
712         cprintf("000\n");
713 }
714
715
716
717
718 /* 
719  * help_subst()  -  support routine for help file viewer
720  */
721 void help_subst(char *strbuf, char *source, char *dest)
722 {
723         char workbuf[SIZ];
724         int p;
725
726         while (p = pattern2(strbuf, source), (p >= 0)) {
727                 strcpy(workbuf, &strbuf[p + strlen(source)]);
728                 strcpy(&strbuf[p], dest);
729                 strcat(strbuf, workbuf);
730         }
731 }
732
733
734 void do_help_subst(char *buffer)
735 {
736         char buf2[16];
737
738         help_subst(buffer, "^nodename", config.c_nodename);
739         help_subst(buffer, "^humannode", config.c_humannode);
740         help_subst(buffer, "^fqdn", config.c_fqdn);
741         help_subst(buffer, "^username", CC->user.fullname);
742         snprintf(buf2, sizeof buf2, "%ld", CC->user.usernum);
743         help_subst(buffer, "^usernum", buf2);
744         help_subst(buffer, "^sysadm", config.c_sysadm);
745         help_subst(buffer, "^variantname", CITADEL);
746         snprintf(buf2, sizeof buf2, "%d", config.c_maxsessions);
747         help_subst(buffer, "^maxsessions", buf2);
748         help_subst(buffer, "^bbsdir", CTDLDIR);
749 }
750
751
752
753 /*
754  * memfmout()  -  Citadel text formatter and paginator.
755  *           Although the original purpose of this routine was to format
756  *           text to the reader's screen width, all we're really using it
757  *           for here is to format text out to 80 columns before sending it
758  *           to the client.  The client software may reformat it again.
759  */
760 void memfmout(
761         int width,              /* screen width to use */
762         char *mptr,             /* where are we going to get our text from? */
763         char subst,             /* nonzero if we should do substitutions */
764         char *nl)               /* string to terminate lines with */
765 {
766         int a, b, c;
767         int real = 0;
768         int old = 0;
769         cit_uint8_t ch;
770         char aaa[140];
771         char buffer[SIZ];
772
773         strcpy(aaa, "");
774         old = 255;
775         strcpy(buffer, "");
776         c = 1;                  /* c is the current pos */
777
778         do {
779                 if (subst) {
780                         while (ch = *mptr, ((ch != 0) && (strlen(buffer) < 126))) {
781                                 ch = *mptr++;
782                                 buffer[strlen(buffer) + 1] = 0;
783                                 buffer[strlen(buffer)] = ch;
784                         }
785
786                         if (buffer[0] == '^')
787                                 do_help_subst(buffer);
788
789                         buffer[strlen(buffer) + 1] = 0;
790                         a = buffer[0];
791                         strcpy(buffer, &buffer[1]);
792                 } else {
793                         ch = *mptr++;
794                 }
795
796                 old = real;
797                 real = ch;
798
799                 if (((ch == 13) || (ch == 10)) && (old != 13) && (old != 10))
800                         ch = 32;
801                 if (((old == 13) || (old == 10)) && (isspace(real))) {
802                         cprintf("%s", nl);
803                         c = 1;
804                 }
805                 if (ch > 126)
806                         continue;
807
808                 if (ch > 32) {
809                         if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
810                                 cprintf("%s%s", nl, aaa);
811                                 c = strlen(aaa);
812                                 aaa[0] = 0;
813                         }
814                         b = strlen(aaa);
815                         aaa[b] = ch;
816                         aaa[b + 1] = 0;
817                 }
818                 if (ch == 32) {
819                         if ((strlen(aaa) + c) > (width - 5)) {
820                                 cprintf("%s", nl);
821                                 c = 1;
822                         }
823                         cprintf("%s ", aaa);
824                         ++c;
825                         c = c + strlen(aaa);
826                         strcpy(aaa, "");
827                 }
828                 if ((ch == 13) || (ch == 10)) {
829                         cprintf("%s%s", aaa, nl);
830                         c = 1;
831                         strcpy(aaa, "");
832                 }
833
834         } while (ch > 0);
835
836         cprintf("%s%s", aaa, nl);
837 }
838
839
840
841 /*
842  * Callback function for mime parser that simply lists the part
843  */
844 void list_this_part(char *name, char *filename, char *partnum, char *disp,
845                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
846                     void *cbuserdata)
847 {
848
849         cprintf("part=%s|%s|%s|%s|%s|%ld\n",
850                 name, filename, partnum, disp, cbtype, (long)length);
851 }
852
853 /* 
854  * Callback function for multipart prefix
855  */
856 void list_this_pref(char *name, char *filename, char *partnum, char *disp,
857                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
858                     void *cbuserdata)
859 {
860         cprintf("pref=%s|%s\n", partnum, cbtype);
861 }
862
863 /* 
864  * Callback function for multipart sufffix
865  */
866 void list_this_suff(char *name, char *filename, char *partnum, char *disp,
867                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
868                     void *cbuserdata)
869 {
870         cprintf("suff=%s|%s\n", partnum, cbtype);
871 }
872
873
874 /*
875  * Callback function for mime parser that opens a section for downloading
876  */
877 void mime_download(char *name, char *filename, char *partnum, char *disp,
878                    void *content, char *cbtype, char *cbcharset, size_t length,
879                    char *encoding, void *cbuserdata)
880 {
881
882         /* Silently go away if there's already a download open... */
883         if (CC->download_fp != NULL)
884                 return;
885
886         /* ...or if this is not the desired section */
887         if (strcasecmp(CC->download_desired_section, partnum))
888                 return;
889
890         CC->download_fp = tmpfile();
891         if (CC->download_fp == NULL)
892                 return;
893
894         fwrite(content, length, 1, CC->download_fp);
895         fflush(CC->download_fp);
896         rewind(CC->download_fp);
897
898         OpenCmdResult(filename, cbtype);
899 }
900
901
902
903 /*
904  * Load a message from disk into memory.
905  * This is used by CtdlOutputMsg() and other fetch functions.
906  *
907  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
908  *       using the CtdlMessageFree() function.
909  */
910 struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body)
911 {
912         struct cdbdata *dmsgtext;
913         struct CtdlMessage *ret = NULL;
914         char *mptr;
915         char *upper_bound;
916         cit_uint8_t ch;
917         cit_uint8_t field_header;
918
919         lprintf(CTDL_DEBUG, "CtdlFetchMessage(%ld, %d)\n", msgnum, with_body);
920
921         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
922         if (dmsgtext == NULL) {
923                 return NULL;
924         }
925         mptr = dmsgtext->ptr;
926         upper_bound = mptr + dmsgtext->len;
927
928         /* Parse the three bytes that begin EVERY message on disk.
929          * The first is always 0xFF, the on-disk magic number.
930          * The second is the anonymous/public type byte.
931          * The third is the format type byte (vari, fixed, or MIME).
932          */
933         ch = *mptr++;
934         if (ch != 255) {
935                 lprintf(CTDL_ERR,
936                         "Message %ld appears to be corrupted.\n",
937                         msgnum);
938                 cdb_free(dmsgtext);
939                 return NULL;
940         }
941         ret = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
942         memset(ret, 0, sizeof(struct CtdlMessage));
943
944         ret->cm_magic = CTDLMESSAGE_MAGIC;
945         ret->cm_anon_type = *mptr++;    /* Anon type byte */
946         ret->cm_format_type = *mptr++;  /* Format type byte */
947
948         /*
949          * The rest is zero or more arbitrary fields.  Load them in.
950          * We're done when we encounter either a zero-length field or
951          * have just processed the 'M' (message text) field.
952          */
953         do {
954                 if (mptr >= upper_bound) {
955                         break;
956                 }
957                 field_header = *mptr++;
958                 ret->cm_fields[field_header] = strdup(mptr);
959
960                 while (*mptr++ != 0);   /* advance to next field */
961
962         } while ((mptr < upper_bound) && (field_header != 'M'));
963
964         cdb_free(dmsgtext);
965
966         /* Always make sure there's something in the msg text field.  If
967          * it's NULL, the message text is most likely stored separately,
968          * so go ahead and fetch that.  Failing that, just set a dummy
969          * body so other code doesn't barf.
970          */
971         if ( (ret->cm_fields['M'] == NULL) && (with_body) ) {
972                 dmsgtext = cdb_fetch(CDB_BIGMSGS, &msgnum, sizeof(long));
973                 if (dmsgtext != NULL) {
974                         ret->cm_fields['M'] = strdup(dmsgtext->ptr);
975                         cdb_free(dmsgtext);
976                 }
977         }
978         if (ret->cm_fields['M'] == NULL) {
979                 ret->cm_fields['M'] = strdup("<no text>\n");
980         }
981
982         /* Perform "before read" hooks (aborting if any return nonzero) */
983         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
984                 CtdlFreeMessage(ret);
985                 return NULL;
986         }
987
988         return (ret);
989 }
990
991
992 /*
993  * Returns 1 if the supplied pointer points to a valid Citadel message.
994  * If the pointer is NULL or the magic number check fails, returns 0.
995  */
996 int is_valid_message(struct CtdlMessage *msg) {
997         if (msg == NULL)
998                 return 0;
999         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
1000                 lprintf(CTDL_WARNING, "is_valid_message() -- self-check failed\n");
1001                 return 0;
1002         }
1003         return 1;
1004 }
1005
1006
1007 /*
1008  * 'Destructor' for struct CtdlMessage
1009  */
1010 void CtdlFreeMessage(struct CtdlMessage *msg)
1011 {
1012         int i;
1013
1014         if (is_valid_message(msg) == 0) return;
1015
1016         for (i = 0; i < 256; ++i)
1017                 if (msg->cm_fields[i] != NULL) {
1018                         free(msg->cm_fields[i]);
1019                 }
1020
1021         msg->cm_magic = 0;      /* just in case */
1022         free(msg);
1023 }
1024
1025
1026 /*
1027  * Pre callback function for multipart/alternative
1028  *
1029  * NOTE: this differs from the standard behavior for a reason.  Normally when
1030  *       displaying multipart/alternative you want to show the _last_ usable
1031  *       format in the message.  Here we show the _first_ one, because it's
1032  *       usually text/plain.  Since this set of functions is designed for text
1033  *       output to non-MIME-aware clients, this is the desired behavior.
1034  *
1035  */
1036 void fixed_output_pre(char *name, char *filename, char *partnum, char *disp,
1037                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1038                 void *cbuserdata)
1039 {
1040         struct ma_info *ma;
1041         
1042         ma = (struct ma_info *)cbuserdata;
1043         lprintf(CTDL_DEBUG, "fixed_output_pre() type=<%s>\n", cbtype);  
1044         if (!strcasecmp(cbtype, "multipart/alternative")) {
1045                 ++ma->is_ma;
1046                 ma->did_print = 0;
1047                 return;
1048         }
1049 }
1050
1051 /*
1052  * Post callback function for multipart/alternative
1053  */
1054 void fixed_output_post(char *name, char *filename, char *partnum, char *disp,
1055                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1056                 void *cbuserdata)
1057 {
1058         struct ma_info *ma;
1059         
1060         ma = (struct ma_info *)cbuserdata;
1061         lprintf(CTDL_DEBUG, "fixed_output_post() type=<%s>\n", cbtype); 
1062         if (!strcasecmp(cbtype, "multipart/alternative")) {
1063                 --ma->is_ma;
1064                 ma->did_print = 0;
1065         return;
1066         }
1067 }
1068
1069 /*
1070  * Inline callback function for mime parser that wants to display text
1071  */
1072 void fixed_output(char *name, char *filename, char *partnum, char *disp,
1073                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1074                 void *cbuserdata)
1075         {
1076                 char *ptr;
1077                 char *wptr;
1078                 size_t wlen;
1079                 struct ma_info *ma;
1080         
1081                 ma = (struct ma_info *)cbuserdata;
1082
1083                 lprintf(CTDL_DEBUG, "fixed_output() type=<%s>\n", cbtype);      
1084
1085                 /*
1086                  * If we're in the middle of a multipart/alternative scope and
1087                  * we've already printed another section, skip this one.
1088                  */     
1089                 if ( (ma->is_ma == 1) && (ma->did_print == 1) ) {
1090                         lprintf(CTDL_DEBUG, "Skipping part %s (%s)\n", partnum, cbtype);
1091                         return;
1092                 }
1093                 ma->did_print = 1;
1094         
1095                 if ( (!strcasecmp(cbtype, "text/plain")) 
1096                    || (strlen(cbtype)==0) ) {
1097                         wptr = content;
1098                         if (length > 0) {
1099                                 client_write(wptr, length);
1100                                 if (wptr[length-1] != '\n') {
1101                                         cprintf("\n");
1102                                 }
1103                         }
1104                 }
1105                 else if (!strcasecmp(cbtype, "text/html")) {
1106                         ptr = html_to_ascii(content, 80, 0);
1107                         wlen = strlen(ptr);
1108                         client_write(ptr, wlen);
1109                         if (ptr[wlen-1] != '\n') {
1110                                 cprintf("\n");
1111                         }
1112                         free(ptr);
1113                 }
1114                 else if (strncasecmp(cbtype, "multipart/", 10)) {
1115                         cprintf("Part %s: %s (%s) (%ld bytes)\r\n",
1116                                 partnum, filename, cbtype, (long)length);
1117                 }
1118         }
1119
1120 /*
1121  * The client is elegant and sophisticated and wants to be choosy about
1122  * MIME content types, so figure out which multipart/alternative part
1123  * we're going to send.
1124  */
1125 void choose_preferred(char *name, char *filename, char *partnum, char *disp,
1126                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1127                 void *cbuserdata)
1128 {
1129         char buf[1024];
1130         int i;
1131         struct ma_info *ma;
1132         
1133         ma = (struct ma_info *)cbuserdata;
1134
1135         if (ma->is_ma > 0) {
1136                 for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1137                         extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1138                         if (!strcasecmp(buf, cbtype)) {
1139                                 strcpy(ma->chosen_part, partnum);
1140                         }
1141                 }
1142         }
1143 }
1144
1145 /*
1146  * Now that we've chosen our preferred part, output it.
1147  */
1148 void output_preferred(char *name, char *filename, char *partnum, char *disp,
1149                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1150                 void *cbuserdata)
1151 {
1152         int i;
1153         char buf[128];
1154         int add_newline = 0;
1155         char *text_content;
1156         struct ma_info *ma;
1157         
1158         ma = (struct ma_info *)cbuserdata;
1159
1160         /* This is not the MIME part you're looking for... */
1161         if (strcasecmp(partnum, ma->chosen_part)) return;
1162
1163         /* If the content-type of this part is in our preferred formats
1164          * list, we can simply output it verbatim.
1165          */
1166         for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1167                 extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1168                 if (!strcasecmp(buf, cbtype)) {
1169                         /* Yeah!  Go!  W00t!! */
1170
1171                         text_content = (char *)content;
1172                         if (text_content[length-1] != '\n') {
1173                                 ++add_newline;
1174                         }
1175
1176                         cprintf("Content-type: %s", cbtype);
1177                         if (strlen(cbcharset) > 0) {
1178                                 cprintf("; charset=%s", cbcharset);
1179                         }
1180                         cprintf("\nContent-length: %d\n",
1181                                 (int)(length + add_newline) );
1182                         if (strlen(encoding) > 0) {
1183                                 cprintf("Content-transfer-encoding: %s\n", encoding);
1184                         }
1185                         else {
1186                                 cprintf("Content-transfer-encoding: 7bit\n");
1187                         }
1188                         cprintf("\n");
1189                         client_write(content, length);
1190                         if (add_newline) cprintf("\n");
1191                         return;
1192                 }
1193         }
1194
1195         /* No translations required or possible: output as text/plain */
1196         cprintf("Content-type: text/plain\n\n");
1197         fixed_output(name, filename, partnum, disp, content, cbtype, cbcharset,
1198                         length, encoding, cbuserdata);
1199 }
1200
1201
1202 /*
1203  * Get a message off disk.  (returns om_* values found in msgbase.h)
1204  * 
1205  */
1206 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
1207                 int mode,               /* how would you like that message? */
1208                 int headers_only,       /* eschew the message body? */
1209                 int do_proto,           /* do Citadel protocol responses? */
1210                 int crlf                /* Use CRLF newlines instead of LF? */
1211 ) {
1212         struct CtdlMessage *TheMessage = NULL;
1213         int retcode = om_no_such_msg;
1214
1215         lprintf(CTDL_DEBUG, "CtdlOutputMsg() msgnum=%ld, mode=%d\n", 
1216                 msg_num, mode);
1217
1218         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
1219                 if (do_proto) cprintf("%d Not logged in.\n",
1220                         ERROR + NOT_LOGGED_IN);
1221                 return(om_not_logged_in);
1222         }
1223
1224         /* FIXME: check message id against msglist for this room */
1225
1226         /*
1227          * Fetch the message from disk.  If we're in any sort of headers
1228          * only mode, request that we don't even bother loading the body
1229          * into memory.
1230          */
1231         if ( (headers_only == HEADERS_FAST) || (headers_only == HEADERS_ONLY) ) {
1232                 TheMessage = CtdlFetchMessage(msg_num, 0);
1233         }
1234         else {
1235                 TheMessage = CtdlFetchMessage(msg_num, 1);
1236         }
1237
1238         if (TheMessage == NULL) {
1239                 if (do_proto) cprintf("%d Can't locate msg %ld on disk\n",
1240                         ERROR + MESSAGE_NOT_FOUND, msg_num);
1241                 return(om_no_such_msg);
1242         }
1243         
1244         retcode = CtdlOutputPreLoadedMsg(
1245                         TheMessage, msg_num, mode,
1246                         headers_only, do_proto, crlf);
1247
1248         CtdlFreeMessage(TheMessage);
1249
1250         return(retcode);
1251 }
1252
1253
1254 /*
1255  * Get a message off disk.  (returns om_* values found in msgbase.h)
1256  * 
1257  */
1258 int CtdlOutputPreLoadedMsg(
1259                 struct CtdlMessage *TheMessage,
1260                 long msg_num,
1261                 int mode,               /* how would you like that message? */
1262                 int headers_only,       /* eschew the message body? */
1263                 int do_proto,           /* do Citadel protocol responses? */
1264                 int crlf                /* Use CRLF newlines instead of LF? */
1265 ) {
1266         int i, k;
1267         char buf[SIZ];
1268         cit_uint8_t ch;
1269         char allkeys[30];
1270         char display_name[256];
1271         char *mptr;
1272         char *nl;       /* newline string */
1273         int suppress_f = 0;
1274         int subject_found = 0;
1275         struct ma_info *ma;
1276
1277         /* Buffers needed for RFC822 translation.  These are all filled
1278          * using functions that are bounds-checked, and therefore we can
1279          * make them substantially smaller than SIZ.
1280          */
1281         char suser[100];
1282         char luser[100];
1283         char fuser[100];
1284         char snode[100];
1285         char lnode[100];
1286         char mid[100];
1287         char datestamp[100];
1288
1289         lprintf(CTDL_DEBUG, "CtdlOutputPreLoadedMsg(TheMessage=%s, %ld, %d, %d, %d, %d\n",
1290                 ((TheMessage == NULL) ? "NULL" : "not null"),
1291                 msg_num,
1292                 mode, headers_only, do_proto, crlf);
1293
1294         snprintf(mid, sizeof mid, "%ld", msg_num);
1295         nl = (crlf ? "\r\n" : "\n");
1296
1297         if (!is_valid_message(TheMessage)) {
1298                 lprintf(CTDL_ERR,
1299                         "ERROR: invalid preloaded message for output\n");
1300                 return(om_no_such_msg);
1301         }
1302
1303         /* Are we downloading a MIME component? */
1304         if (mode == MT_DOWNLOAD) {
1305                 if (TheMessage->cm_format_type != FMT_RFC822) {
1306                         if (do_proto)
1307                                 cprintf("%d This is not a MIME message.\n",
1308                                 ERROR + ILLEGAL_VALUE);
1309                 } else if (CC->download_fp != NULL) {
1310                         if (do_proto) cprintf(
1311                                 "%d You already have a download open.\n",
1312                                 ERROR + RESOURCE_BUSY);
1313                 } else {
1314                         /* Parse the message text component */
1315                         mptr = TheMessage->cm_fields['M'];
1316                         ma = malloc(sizeof(struct ma_info));
1317                         memset(ma, 0, sizeof(struct ma_info));
1318                         mime_parser(mptr, NULL, *mime_download, NULL, NULL, (void *)ma, 0);
1319                         free(ma);
1320                         /* If there's no file open by this time, the requested
1321                          * section wasn't found, so print an error
1322                          */
1323                         if (CC->download_fp == NULL) {
1324                                 if (do_proto) cprintf(
1325                                         "%d Section %s not found.\n",
1326                                         ERROR + FILE_NOT_FOUND,
1327                                         CC->download_desired_section);
1328                         }
1329                 }
1330                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
1331         }
1332
1333         /* now for the user-mode message reading loops */
1334         if (do_proto) cprintf("%d Message %ld:\n", LISTING_FOLLOWS, msg_num);
1335
1336         /* Does the caller want to skip the headers? */
1337         if (headers_only == HEADERS_NONE) goto START_TEXT;
1338
1339         /* Tell the client which format type we're using. */
1340         if ( (mode == MT_CITADEL) && (do_proto) ) {
1341                 cprintf("type=%d\n", TheMessage->cm_format_type);
1342         }
1343
1344         /* nhdr=yes means that we're only displaying headers, no body */
1345         if ( (TheMessage->cm_anon_type == MES_ANONONLY)
1346            && (mode == MT_CITADEL)
1347            && (do_proto)
1348            ) {
1349                 cprintf("nhdr=yes\n");
1350         }
1351
1352         /* begin header processing loop for Citadel message format */
1353
1354         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
1355
1356                 safestrncpy(display_name, "<unknown>", sizeof display_name);
1357                 if (TheMessage->cm_fields['A']) {
1358                         strcpy(buf, TheMessage->cm_fields['A']);
1359                         if (TheMessage->cm_anon_type == MES_ANONONLY) {
1360                                 safestrncpy(display_name, "****", sizeof display_name);
1361                         }
1362                         else if (TheMessage->cm_anon_type == MES_ANONOPT) {
1363                                 safestrncpy(display_name, "anonymous", sizeof display_name);
1364                         }
1365                         else {
1366                                 safestrncpy(display_name, buf, sizeof display_name);
1367                         }
1368                         if ((is_room_aide())
1369                             && ((TheMessage->cm_anon_type == MES_ANONONLY)
1370                              || (TheMessage->cm_anon_type == MES_ANONOPT))) {
1371                                 size_t tmp = strlen(display_name);
1372                                 snprintf(&display_name[tmp],
1373                                          sizeof display_name - tmp,
1374                                          " [%s]", buf);
1375                         }
1376                 }
1377
1378                 /* Don't show Internet address for users on the
1379                  * local Citadel network.
1380                  */
1381                 suppress_f = 0;
1382                 if (TheMessage->cm_fields['N'] != NULL)
1383                    if (strlen(TheMessage->cm_fields['N']) > 0)
1384                       if (haschar(TheMessage->cm_fields['N'], '.') == 0) {
1385                         suppress_f = 1;
1386                 }
1387                 
1388                 /* Now spew the header fields in the order we like them. */
1389                 safestrncpy(allkeys, FORDER, sizeof allkeys);
1390                 for (i=0; i<strlen(allkeys); ++i) {
1391                         k = (int) allkeys[i];
1392                         if (k != 'M') {
1393                                 if ( (TheMessage->cm_fields[k] != NULL)
1394                                    && (msgkeys[k] != NULL) ) {
1395                                         if (k == 'A') {
1396                                                 if (do_proto) cprintf("%s=%s\n",
1397                                                         msgkeys[k],
1398                                                         display_name);
1399                                         }
1400                                         else if ((k == 'F') && (suppress_f)) {
1401                                                 /* do nothing */
1402                                         }
1403                                         /* Masquerade display name if needed */
1404                                         else {
1405                                                 if (do_proto) cprintf("%s=%s\n",
1406                                                         msgkeys[k],
1407                                                         TheMessage->cm_fields[k]
1408                                         );
1409                                         }
1410                                 }
1411                         }
1412                 }
1413
1414         }
1415
1416         /* begin header processing loop for RFC822 transfer format */
1417
1418         strcpy(suser, "");
1419         strcpy(luser, "");
1420         strcpy(fuser, "");
1421         strcpy(snode, NODENAME);
1422         strcpy(lnode, HUMANNODE);
1423         if (mode == MT_RFC822) {
1424                 for (i = 0; i < 256; ++i) {
1425                         if (TheMessage->cm_fields[i]) {
1426                                 mptr = TheMessage->cm_fields[i];
1427
1428                                 if (i == 'A') {
1429                                         safestrncpy(luser, mptr, sizeof luser);
1430                                         safestrncpy(suser, mptr, sizeof suser);
1431                                 }
1432                                 else if (i == 'U') {
1433                                         cprintf("Subject: %s%s", mptr, nl);
1434                                         subject_found = 1;
1435                                 }
1436                                 else if (i == 'I')
1437                                         safestrncpy(mid, mptr, sizeof mid);
1438                                 else if (i == 'H')
1439                                         safestrncpy(lnode, mptr, sizeof lnode);
1440                                 else if (i == 'F')
1441                                         safestrncpy(fuser, mptr, sizeof fuser);
1442                                 /* else if (i == 'O')
1443                                         cprintf("X-Citadel-Room: %s%s",
1444                                                 mptr, nl); */
1445                                 else if (i == 'N')
1446                                         safestrncpy(snode, mptr, sizeof snode);
1447                                 else if (i == 'R')
1448                                         cprintf("To: %s%s", mptr, nl);
1449                                 else if (i == 'T') {
1450                                         datestring(datestamp, sizeof datestamp,
1451                                                 atol(mptr), DATESTRING_RFC822);
1452                                         cprintf("Date: %s%s", datestamp, nl);
1453                                 }
1454                         }
1455                 }
1456                 if (subject_found == 0) {
1457                         cprintf("Subject: (no subject)%s", nl);
1458                 }
1459         }
1460
1461         for (i=0; i<strlen(suser); ++i) {
1462                 suser[i] = tolower(suser[i]);
1463                 if (!isalnum(suser[i])) suser[i]='_';
1464         }
1465
1466         if (mode == MT_RFC822) {
1467                 if (!strcasecmp(snode, NODENAME)) {
1468                         safestrncpy(snode, FQDN, sizeof snode);
1469                 }
1470
1471                 /* Construct a fun message id */
1472                 cprintf("Message-ID: <%s", mid);
1473                 if (strchr(mid, '@')==NULL) {
1474                         cprintf("@%s", snode);
1475                 }
1476                 cprintf(">%s", nl);
1477
1478                 if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONONLY)) {
1479                         // cprintf("From: x@x.org (----)%s", nl);
1480                         cprintf("From: \"----\" <x@x.org>%s", nl);
1481                 }
1482                 else if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONOPT)) {
1483                         // cprintf("From: x@x.org (anonymous)%s", nl);
1484                         cprintf("From: \"anonymous\" <x@x.org>%s", nl);
1485                 }
1486                 else if (strlen(fuser) > 0) {
1487                         // cprintf("From: %s (%s)%s", fuser, luser, nl);
1488                         cprintf("From: \"%s\" <%s>%s", luser, fuser, nl);
1489                 }
1490                 else {
1491                         // cprintf("From: %s@%s (%s)%s", suser, snode, luser, nl);
1492                         cprintf("From: \"%s\" <%s@%s>%s", luser, suser, snode, nl);
1493                 }
1494
1495                 cprintf("Organization: %s%s", lnode, nl);
1496
1497                 /* Blank line signifying RFC822 end-of-headers */
1498                 if (TheMessage->cm_format_type != FMT_RFC822) {
1499                         cprintf("%s", nl);
1500                 }
1501         }
1502
1503         /* end header processing loop ... at this point, we're in the text */
1504 START_TEXT:
1505         if (headers_only == HEADERS_FAST) goto DONE;
1506         mptr = TheMessage->cm_fields['M'];
1507
1508         /* Tell the client about the MIME parts in this message */
1509         if (TheMessage->cm_format_type == FMT_RFC822) {
1510                 if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1511                         mime_parser(mptr, NULL,
1512                                 (do_proto ? *list_this_part : NULL),
1513                                 (do_proto ? *list_this_pref : NULL),
1514                                 (do_proto ? *list_this_suff : NULL),
1515                                 NULL, 0);
1516                 }
1517                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
1518                         /* FIXME ... we have to put some code in here to avoid
1519                          * printing duplicate header information when both
1520                          * Citadel and RFC822 headers exist.  Preference should
1521                          * probably be given to the RFC822 headers.
1522                          */
1523                         int done_rfc822_hdrs = 0;
1524                         while (ch=*(mptr++), ch!=0) {
1525                                 if (ch==13) {
1526                                         /* do nothing */
1527                                 }
1528                                 else if (ch==10) {
1529                                         if (!done_rfc822_hdrs) {
1530                                                 if (headers_only != HEADERS_NONE) {
1531                                                         cprintf("%s", nl);
1532                                                 }
1533                                         }
1534                                         else {
1535                                                 if (headers_only != HEADERS_ONLY) {
1536                                                         cprintf("%s", nl);
1537                                                 }
1538                                         }
1539                                         if ((*(mptr) == 13) || (*(mptr) == 10)) {
1540                                                 done_rfc822_hdrs = 1;
1541                                         }
1542                                 }
1543                                 else {
1544                                         if (done_rfc822_hdrs) {
1545                                                 if (headers_only != HEADERS_NONE) {
1546                                                         cprintf("%c", ch);
1547                                                 }
1548                                         }
1549                                         else {
1550                                                 if (headers_only != HEADERS_ONLY) {
1551                                                         cprintf("%c", ch);
1552                                                 }
1553                                         }
1554                                         if ((*mptr == 13) || (*mptr == 10)) {
1555                                                 done_rfc822_hdrs = 1;
1556                                         }
1557                                 }
1558                         }
1559                         goto DONE;
1560                 }
1561         }
1562
1563         if (headers_only == HEADERS_ONLY) {
1564                 goto DONE;
1565         }
1566
1567         /* signify start of msg text */
1568         if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1569                 if (do_proto) cprintf("text\n");
1570         }
1571
1572         /* If the format type on disk is 1 (fixed-format), then we want
1573          * everything to be output completely literally ... regardless of
1574          * what message transfer format is in use.
1575          */
1576         if (TheMessage->cm_format_type == FMT_FIXED) {
1577                 if (mode == MT_MIME) {
1578                         cprintf("Content-type: text/plain\n\n");
1579                 }
1580                 strcpy(buf, "");
1581                 while (ch = *mptr++, ch > 0) {
1582                         if (ch == 13)
1583                                 ch = 10;
1584                         if ((ch == 10) || (strlen(buf) > 250)) {
1585                                 cprintf("%s%s", buf, nl);
1586                                 strcpy(buf, "");
1587                         } else {
1588                                 buf[strlen(buf) + 1] = 0;
1589                                 buf[strlen(buf)] = ch;
1590                         }
1591                 }
1592                 if (strlen(buf) > 0)
1593                         cprintf("%s%s", buf, nl);
1594         }
1595
1596         /* If the message on disk is format 0 (Citadel vari-format), we
1597          * output using the formatter at 80 columns.  This is the final output
1598          * form if the transfer format is RFC822, but if the transfer format
1599          * is Citadel proprietary, it'll still work, because the indentation
1600          * for new paragraphs is correct and the client will reformat the
1601          * message to the reader's screen width.
1602          */
1603         if (TheMessage->cm_format_type == FMT_CITADEL) {
1604                 if (mode == MT_MIME) {
1605                         cprintf("Content-type: text/x-citadel-variformat\n\n");
1606                 }
1607                 memfmout(80, mptr, 0, nl);
1608         }
1609
1610         /* If the message on disk is format 4 (MIME), we've gotta hand it
1611          * off to the MIME parser.  The client has already been told that
1612          * this message is format 1 (fixed format), so the callback function
1613          * we use will display those parts as-is.
1614          */
1615         if (TheMessage->cm_format_type == FMT_RFC822) {
1616                 ma = malloc(sizeof(struct ma_info));
1617                 memset(ma, 0, sizeof(struct ma_info));
1618
1619                 if (mode == MT_MIME) {
1620                         strcpy(ma->chosen_part, "1");
1621                         mime_parser(mptr, NULL,
1622                                 *choose_preferred, *fixed_output_pre,
1623                                 *fixed_output_post, (void *)ma, 0);
1624                         mime_parser(mptr, NULL,
1625                                 *output_preferred, NULL, NULL, (void *)ma, 0);
1626                 }
1627                 else {
1628                         mime_parser(mptr, NULL,
1629                                 *fixed_output, *fixed_output_pre,
1630                                 *fixed_output_post, (void *)ma, 0);
1631                 }
1632
1633                 free(ma);
1634         }
1635
1636 DONE:   /* now we're done */
1637         if (do_proto) cprintf("000\n");
1638         return(om_ok);
1639 }
1640
1641
1642
1643 /*
1644  * display a message (mode 0 - Citadel proprietary)
1645  */
1646 void cmd_msg0(char *cmdbuf)
1647 {
1648         long msgid;
1649         int headers_only = HEADERS_ALL;
1650
1651         msgid = extract_long(cmdbuf, 0);
1652         headers_only = extract_int(cmdbuf, 1);
1653
1654         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0);
1655         return;
1656 }
1657
1658
1659 /*
1660  * display a message (mode 2 - RFC822)
1661  */
1662 void cmd_msg2(char *cmdbuf)
1663 {
1664         long msgid;
1665         int headers_only = HEADERS_ALL;
1666
1667         msgid = extract_long(cmdbuf, 0);
1668         headers_only = extract_int(cmdbuf, 1);
1669
1670         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1);
1671 }
1672
1673
1674
1675 /* 
1676  * display a message (mode 3 - IGnet raw format - internal programs only)
1677  */
1678 void cmd_msg3(char *cmdbuf)
1679 {
1680         long msgnum;
1681         struct CtdlMessage *msg;
1682         struct ser_ret smr;
1683
1684         if (CC->internal_pgm == 0) {
1685                 cprintf("%d This command is for internal programs only.\n",
1686                         ERROR + HIGHER_ACCESS_REQUIRED);
1687                 return;
1688         }
1689
1690         msgnum = extract_long(cmdbuf, 0);
1691         msg = CtdlFetchMessage(msgnum, 1);
1692         if (msg == NULL) {
1693                 cprintf("%d Message %ld not found.\n", 
1694                         ERROR + MESSAGE_NOT_FOUND, msgnum);
1695                 return;
1696         }
1697
1698         serialize_message(&smr, msg);
1699         CtdlFreeMessage(msg);
1700
1701         if (smr.len == 0) {
1702                 cprintf("%d Unable to serialize message\n",
1703                         ERROR + INTERNAL_ERROR);
1704                 return;
1705         }
1706
1707         cprintf("%d %ld\n", BINARY_FOLLOWS, (long)smr.len);
1708         client_write((char *)smr.ser, (int)smr.len);
1709         free(smr.ser);
1710 }
1711
1712
1713
1714 /* 
1715  * Display a message using MIME content types
1716  */
1717 void cmd_msg4(char *cmdbuf)
1718 {
1719         long msgid;
1720
1721         msgid = extract_long(cmdbuf, 0);
1722         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0);
1723 }
1724
1725
1726
1727 /* 
1728  * Client tells us its preferred message format(s)
1729  */
1730 void cmd_msgp(char *cmdbuf)
1731 {
1732         safestrncpy(CC->preferred_formats, cmdbuf,
1733                         sizeof(CC->preferred_formats));
1734         cprintf("%d ok\n", CIT_OK);
1735 }
1736
1737
1738 /*
1739  * Open a component of a MIME message as a download file 
1740  */
1741 void cmd_opna(char *cmdbuf)
1742 {
1743         long msgid;
1744         char desired_section[128];
1745
1746         msgid = extract_long(cmdbuf, 0);
1747         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
1748         safestrncpy(CC->download_desired_section, desired_section, sizeof CC->download_desired_section);
1749         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1);
1750 }                       
1751
1752
1753 /*
1754  * Save a message pointer into a specified room
1755  * (Returns 0 for success, nonzero for failure)
1756  * roomname may be NULL to use the current room
1757  */
1758 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int flags) {
1759         int i;
1760         char hold_rm[ROOMNAMELEN];
1761         struct cdbdata *cdbfr;
1762         int num_msgs;
1763         long *msglist;
1764         long highest_msg = 0L;
1765         struct CtdlMessage *msg = NULL;
1766
1767         lprintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom(%s, %ld, %d)\n",
1768                 roomname, msgid, flags);
1769
1770         strcpy(hold_rm, CC->room.QRname);
1771
1772         /* We may need to check to see if this message is real */
1773         if (  (flags & SM_VERIFY_GOODNESS)
1774            || (flags & SM_DO_REPL_CHECK)
1775            ) {
1776                 msg = CtdlFetchMessage(msgid, 1);
1777                 if (msg == NULL) return(ERROR + ILLEGAL_VALUE);
1778         }
1779
1780         /* Perform replication checks if necessary */
1781         if ( (flags & SM_DO_REPL_CHECK) && (msg != NULL) ) {
1782
1783                 if (getroom(&CC->room,
1784                    ((roomname != NULL) ? roomname : CC->room.QRname) )
1785                    != 0) {
1786                         lprintf(CTDL_ERR, "No such room <%s>\n", roomname);
1787                         if (msg != NULL) CtdlFreeMessage(msg);
1788                         return(ERROR + ROOM_NOT_FOUND);
1789                 }
1790
1791                 if (ReplicationChecks(msg) != 0) {
1792                         getroom(&CC->room, hold_rm);
1793                         if (msg != NULL) CtdlFreeMessage(msg);
1794                         lprintf(CTDL_DEBUG,
1795                                 "Did replication, and newer exists\n");
1796                         return(0);
1797                 }
1798         }
1799
1800         /* Now the regular stuff */
1801         if (lgetroom(&CC->room,
1802            ((roomname != NULL) ? roomname : CC->room.QRname) )
1803            != 0) {
1804                 lprintf(CTDL_ERR, "No such room <%s>\n", roomname);
1805                 if (msg != NULL) CtdlFreeMessage(msg);
1806                 return(ERROR + ROOM_NOT_FOUND);
1807         }
1808
1809         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
1810         if (cdbfr == NULL) {
1811                 msglist = NULL;
1812                 num_msgs = 0;
1813         } else {
1814                 msglist = malloc(cdbfr->len);
1815                 if (msglist == NULL)
1816                         lprintf(CTDL_ALERT, "ERROR malloc msglist!\n");
1817                 num_msgs = cdbfr->len / sizeof(long);
1818                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1819                 cdb_free(cdbfr);
1820         }
1821
1822
1823         /* Make sure the message doesn't already exist in this room.  It
1824          * is absolutely taboo to have more than one reference to the same
1825          * message in a room.
1826          */
1827         if (num_msgs > 0) for (i=0; i<num_msgs; ++i) {
1828                 if (msglist[i] == msgid) {
1829                         lputroom(&CC->room);    /* unlock the room */
1830                         getroom(&CC->room, hold_rm);
1831                         if (msg != NULL) CtdlFreeMessage(msg);
1832                         free(msglist);
1833                         return(ERROR + ALREADY_EXISTS);
1834                 }
1835         }
1836
1837         /* Now add the new message */
1838         ++num_msgs;
1839         msglist = realloc(msglist, (num_msgs * sizeof(long)));
1840
1841         if (msglist == NULL) {
1842                 lprintf(CTDL_ALERT, "ERROR: can't realloc message list!\n");
1843         }
1844         msglist[num_msgs - 1] = msgid;
1845
1846         /* Sort the message list, so all the msgid's are in order */
1847         num_msgs = sort_msglist(msglist, num_msgs);
1848
1849         /* Determine the highest message number */
1850         highest_msg = msglist[num_msgs - 1];
1851
1852         /* Write it back to disk. */
1853         cdb_store(CDB_MSGLISTS, &CC->room.QRnumber, (int)sizeof(long),
1854                   msglist, (int)(num_msgs * sizeof(long)));
1855
1856         /* Free up the memory we used. */
1857         free(msglist);
1858
1859         /* Update the highest-message pointer and unlock the room. */
1860         CC->room.QRhighest = highest_msg;
1861         lputroom(&CC->room);
1862         getroom(&CC->room, hold_rm);
1863
1864         /* Bump the reference count for this message. */
1865         if ((flags & SM_DONT_BUMP_REF)==0) {
1866                 AdjRefCount(msgid, +1);
1867         }
1868
1869         /* Return success. */
1870         if (msg != NULL) CtdlFreeMessage(msg);
1871         return (0);
1872 }
1873
1874
1875
1876 /*
1877  * Message base operation to save a new message to the message store
1878  * (returns new message number)
1879  *
1880  * This is the back end for CtdlSubmitMsg() and should not be directly
1881  * called by server-side modules.
1882  *
1883  */
1884 long send_message(struct CtdlMessage *msg) {
1885         long newmsgid;
1886         long retval;
1887         char msgidbuf[256];
1888         struct ser_ret smr;
1889         int is_bigmsg = 0;
1890         char *holdM = NULL;
1891
1892         /* Get a new message number */
1893         newmsgid = get_new_message_number();
1894         snprintf(msgidbuf, sizeof msgidbuf, "%ld@%s", newmsgid, config.c_fqdn);
1895
1896         /* Generate an ID if we don't have one already */
1897         if (msg->cm_fields['I']==NULL) {
1898                 msg->cm_fields['I'] = strdup(msgidbuf);
1899         }
1900
1901         /* If the message is big, set its body aside for storage elsewhere */
1902         if (msg->cm_fields['M'] != NULL) {
1903                 if (strlen(msg->cm_fields['M']) > BIGMSG) {
1904                         is_bigmsg = 1;
1905                         holdM = msg->cm_fields['M'];
1906                         msg->cm_fields['M'] = NULL;
1907                 }
1908         }
1909
1910         /* Serialize our data structure for storage in the database */  
1911         serialize_message(&smr, msg);
1912
1913         if (is_bigmsg) {
1914                 msg->cm_fields['M'] = holdM;
1915         }
1916
1917         if (smr.len == 0) {
1918                 cprintf("%d Unable to serialize message\n",
1919                         ERROR + INTERNAL_ERROR);
1920                 return (-1L);
1921         }
1922
1923         /* Write our little bundle of joy into the message base */
1924         if (cdb_store(CDB_MSGMAIN, &newmsgid, (int)sizeof(long),
1925                       smr.ser, smr.len) < 0) {
1926                 lprintf(CTDL_ERR, "Can't store message\n");
1927                 retval = 0L;
1928         } else {
1929                 if (is_bigmsg) {
1930                         cdb_store(CDB_BIGMSGS,
1931                                 &newmsgid,
1932                                 (int)sizeof(long),
1933                                 holdM,
1934                                 (strlen(holdM) + 1)
1935                         );
1936                 }
1937                 retval = newmsgid;
1938         }
1939
1940         /* Free the memory we used for the serialized message */
1941         free(smr.ser);
1942
1943         /* Return the *local* message ID to the caller
1944          * (even if we're storing an incoming network message)
1945          */
1946         return(retval);
1947 }
1948
1949
1950
1951 /*
1952  * Serialize a struct CtdlMessage into the format used on disk and network.
1953  * 
1954  * This function loads up a "struct ser_ret" (defined in server.h) which
1955  * contains the length of the serialized message and a pointer to the
1956  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
1957  */
1958 void serialize_message(struct ser_ret *ret,             /* return values */
1959                         struct CtdlMessage *msg)        /* unserialized msg */
1960 {
1961         size_t wlen;
1962         int i;
1963         static char *forder = FORDER;
1964
1965         if (is_valid_message(msg) == 0) return;         /* self check */
1966
1967         ret->len = 3;
1968         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
1969                 ret->len = ret->len +
1970                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
1971
1972         lprintf(CTDL_DEBUG, "serialize_message() calling malloc(%ld)\n", (long)ret->len);
1973         ret->ser = malloc(ret->len);
1974         if (ret->ser == NULL) {
1975                 ret->len = 0;
1976                 return;
1977         }
1978
1979         ret->ser[0] = 0xFF;
1980         ret->ser[1] = msg->cm_anon_type;
1981         ret->ser[2] = msg->cm_format_type;
1982         wlen = 3;
1983
1984         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
1985                 ret->ser[wlen++] = (char)forder[i];
1986                 strcpy((char *)&ret->ser[wlen], msg->cm_fields[(int)forder[i]]);
1987                 wlen = wlen + strlen(msg->cm_fields[(int)forder[i]]) + 1;
1988         }
1989         if (ret->len != wlen) lprintf(CTDL_ERR, "ERROR: len=%ld wlen=%ld\n",
1990                 (long)ret->len, (long)wlen);
1991
1992         return;
1993 }
1994
1995
1996
1997 /*
1998  * Back end for the ReplicationChecks() function
1999  */
2000 void check_repl(long msgnum, void *userdata) {
2001         lprintf(CTDL_DEBUG, "check_repl() replacing message %ld\n", msgnum);
2002         CtdlDeleteMessages(CC->room.QRname, msgnum, "", 0);
2003 }
2004
2005
2006 /*
2007  * Check to see if any messages already exist which carry the same Exclusive ID
2008  * as this one.  If any are found, delete them.
2009  *
2010  */
2011 int ReplicationChecks(struct CtdlMessage *msg) {
2012         struct CtdlMessage *template;
2013         int abort_this = 0;
2014
2015         /* No exclusive id?  Don't do anything. */
2016         if (msg->cm_fields['E'] == NULL) return 0;
2017         if (strlen(msg->cm_fields['E']) == 0) return 0;
2018         lprintf(CTDL_DEBUG, "Exclusive ID: <%s>\n", msg->cm_fields['E']);
2019
2020         template = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
2021         memset(template, 0, sizeof(struct CtdlMessage));
2022         template->cm_fields['E'] = strdup(msg->cm_fields['E']);
2023
2024         CtdlForEachMessage(MSGS_ALL, 0L, NULL, template, check_repl, NULL);
2025
2026         CtdlFreeMessage(template);
2027         lprintf(CTDL_DEBUG, "ReplicationChecks() returning %d\n", abort_this);
2028         return(abort_this);
2029 }
2030
2031
2032
2033
2034 /*
2035  * Save a message to disk and submit it into the delivery system.
2036  */
2037 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
2038                 struct recptypes *recps,        /* recipients (if mail) */
2039                 char *force                     /* force a particular room? */
2040 ) {
2041         char submit_filename[128];
2042         char generated_timestamp[32];
2043         char hold_rm[ROOMNAMELEN];
2044         char actual_rm[ROOMNAMELEN];
2045         char force_room[ROOMNAMELEN];
2046         char content_type[SIZ];                 /* We have to learn this */
2047         char recipient[SIZ];
2048         long newmsgid;
2049         char *mptr = NULL;
2050         struct ctdluser userbuf;
2051         int a, i;
2052         struct MetaData smi;
2053         FILE *network_fp = NULL;
2054         static int seqnum = 1;
2055         struct CtdlMessage *imsg = NULL;
2056         char *instr;
2057         struct ser_ret smr;
2058         char *hold_R, *hold_D;
2059
2060         lprintf(CTDL_DEBUG, "CtdlSubmitMsg() called\n");
2061         if (is_valid_message(msg) == 0) return(-1);     /* self check */
2062
2063         /* If this message has no timestamp, we take the liberty of
2064          * giving it one, right now.
2065          */
2066         if (msg->cm_fields['T'] == NULL) {
2067                 lprintf(CTDL_DEBUG, "Generating timestamp\n");
2068                 snprintf(generated_timestamp, sizeof generated_timestamp, "%ld", (long)time(NULL));
2069                 msg->cm_fields['T'] = strdup(generated_timestamp);
2070         }
2071
2072         /* If this message has no path, we generate one.
2073          */
2074         if (msg->cm_fields['P'] == NULL) {
2075                 lprintf(CTDL_DEBUG, "Generating path\n");
2076                 if (msg->cm_fields['A'] != NULL) {
2077                         msg->cm_fields['P'] = strdup(msg->cm_fields['A']);
2078                         for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
2079                                 if (isspace(msg->cm_fields['P'][a])) {
2080                                         msg->cm_fields['P'][a] = ' ';
2081                                 }
2082                         }
2083                 }
2084                 else {
2085                         msg->cm_fields['P'] = strdup("unknown");
2086                 }
2087         }
2088
2089         if (force == NULL) {
2090                 strcpy(force_room, "");
2091         }
2092         else {
2093                 strcpy(force_room, force);
2094         }
2095
2096         /* Learn about what's inside, because it's what's inside that counts */
2097         lprintf(CTDL_DEBUG, "Learning what's inside\n");
2098         if (msg->cm_fields['M'] == NULL) {
2099                 lprintf(CTDL_ERR, "ERROR: attempt to save message with NULL body\n");
2100                 return(-2);
2101         }
2102
2103         switch (msg->cm_format_type) {
2104         case 0:
2105                 strcpy(content_type, "text/x-citadel-variformat");
2106                 break;
2107         case 1:
2108                 strcpy(content_type, "text/plain");
2109                 break;
2110         case 4:
2111                 strcpy(content_type, "text/plain");
2112                 mptr = bmstrcasestr(msg->cm_fields['M'], "Content-type: ");
2113                 if (mptr != NULL) {
2114                         safestrncpy(content_type, &mptr[14], 
2115                                         sizeof content_type);
2116                         for (a = 0; a < strlen(content_type); ++a) {
2117                                 if ((content_type[a] == ';')
2118                                     || (content_type[a] == ' ')
2119                                     || (content_type[a] == 13)
2120                                     || (content_type[a] == 10)) {
2121                                         content_type[a] = 0;
2122                                 }
2123                         }
2124                 }
2125         }
2126
2127         /* Goto the correct room */
2128         lprintf(CTDL_DEBUG, "Selected room %s\n",
2129                 (recps) ? CC->room.QRname : SENTITEMS);
2130         strcpy(hold_rm, CC->room.QRname);
2131         strcpy(actual_rm, CC->room.QRname);
2132         if (recps != NULL) {
2133                 strcpy(actual_rm, SENTITEMS);
2134         }
2135
2136         /* If the user is a twit, move to the twit room for posting */
2137         lprintf(CTDL_DEBUG, "Handling twit stuff: %s\n",
2138                         (CC->user.axlevel == 2) ? config.c_twitroom : "OK");
2139         if (TWITDETECT) {
2140                 if (CC->user.axlevel == 2) {
2141                         strcpy(hold_rm, actual_rm);
2142                         strcpy(actual_rm, config.c_twitroom);
2143                 }
2144         }
2145
2146         /* ...or if this message is destined for Aide> then go there. */
2147         if (strlen(force_room) > 0) {
2148                 strcpy(actual_rm, force_room);
2149         }
2150
2151         lprintf(CTDL_DEBUG, "Final selection: %s\n", actual_rm);
2152         if (strcasecmp(actual_rm, CC->room.QRname)) {
2153                 /* getroom(&CC->room, actual_rm); */
2154                 usergoto(actual_rm, 0, 1, NULL, NULL);
2155         }
2156
2157         /*
2158          * If this message has no O (room) field, generate one.
2159          */
2160         if (msg->cm_fields['O'] == NULL) {
2161                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2162         }
2163
2164         /* Perform "before save" hooks (aborting if any return nonzero) */
2165         lprintf(CTDL_DEBUG, "Performing before-save hooks\n");
2166         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-3);
2167
2168         /* If this message has an Exclusive ID, perform replication checks */
2169         lprintf(CTDL_DEBUG, "Performing replication checks\n");
2170         if (ReplicationChecks(msg) > 0) return(-4);
2171
2172         /* Save it to disk */
2173         lprintf(CTDL_DEBUG, "Saving to disk\n");
2174         newmsgid = send_message(msg);
2175         if (newmsgid <= 0L) return(-5);
2176
2177         /* Write a supplemental message info record.  This doesn't have to
2178          * be a critical section because nobody else knows about this message
2179          * yet.
2180          */
2181         lprintf(CTDL_DEBUG, "Creating MetaData record\n");
2182         memset(&smi, 0, sizeof(struct MetaData));
2183         smi.meta_msgnum = newmsgid;
2184         smi.meta_refcount = 0;
2185         safestrncpy(smi.meta_content_type, content_type,
2186                         sizeof smi.meta_content_type);
2187
2188         /* As part of the new metadata record, measure how
2189          * big this message will be when displayed as RFC822.
2190          * Both POP and IMAP use this, and it's best to just take the hit now
2191          * instead of having to potentially measure thousands of messages when
2192          * a mailbox is opened later.
2193          */
2194
2195         if (CC->redirect_buffer != NULL) {
2196                 lprintf(CTDL_ALERT, "CC->redirect_buffer is not NULL during message submission!\n");
2197                 abort();
2198         }
2199         CC->redirect_buffer = malloc(SIZ);
2200         CC->redirect_len = 0;
2201         CC->redirect_alloc = SIZ;
2202         CtdlOutputPreLoadedMsg(msg, 0L, MT_RFC822, HEADERS_ALL, 0, 1);
2203         smi.meta_rfc822_length = CC->redirect_len;
2204         free(CC->redirect_buffer);
2205         CC->redirect_buffer = NULL;
2206         CC->redirect_len = 0;
2207         CC->redirect_alloc = 0;
2208
2209         PutMetaData(&smi);
2210
2211         /* Now figure out where to store the pointers */
2212         lprintf(CTDL_DEBUG, "Storing pointers\n");
2213
2214         /* If this is being done by the networker delivering a private
2215          * message, we want to BYPASS saving the sender's copy (because there
2216          * is no local sender; it would otherwise go to the Trashcan).
2217          */
2218         if ((!CC->internal_pgm) || (recps == NULL)) {
2219                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0) != 0) {
2220                         lprintf(CTDL_ERR, "ERROR saving message pointer!\n");
2221                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2222                                                         newmsgid, 0);
2223                 }
2224         }
2225
2226         /* For internet mail, drop a copy in the outbound queue room */
2227         if (recps != NULL)
2228          if (recps->num_internet > 0) {
2229                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0);
2230         }
2231
2232         /* If other rooms are specified, drop them there too. */
2233         if (recps != NULL)
2234          if (recps->num_room > 0)
2235           for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
2236                 extract_token(recipient, recps->recp_room, i,
2237                                         '|', sizeof recipient);
2238                 lprintf(CTDL_DEBUG, "Delivering to room <%s>\n", recipient);
2239                 CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0);
2240         }
2241
2242         /* Bump this user's messages posted counter. */
2243         lprintf(CTDL_DEBUG, "Updating user\n");
2244         lgetuser(&CC->user, CC->curr_user);
2245         CC->user.posted = CC->user.posted + 1;
2246         lputuser(&CC->user);
2247
2248         /* If this is private, local mail, make a copy in the
2249          * recipient's mailbox and bump the reference count.
2250          */
2251         if (recps != NULL)
2252          if (recps->num_local > 0)
2253           for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
2254                 extract_token(recipient, recps->recp_local, i,
2255                                         '|', sizeof recipient);
2256                 lprintf(CTDL_DEBUG, "Delivering private local mail to <%s>\n",
2257                         recipient);
2258                 if (getuser(&userbuf, recipient) == 0) {
2259                         MailboxName(actual_rm, sizeof actual_rm,
2260                                         &userbuf, MAILROOM);
2261                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0);
2262                         BumpNewMailCounter(userbuf.usernum);
2263                 }
2264                 else {
2265                         lprintf(CTDL_DEBUG, "No user <%s>\n", recipient);
2266                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2267                                                         newmsgid, 0);
2268                 }
2269         }
2270
2271         /* Perform "after save" hooks */
2272         lprintf(CTDL_DEBUG, "Performing after-save hooks\n");
2273         PerformMessageHooks(msg, EVT_AFTERSAVE);
2274
2275         /* For IGnet mail, we have to save a new copy into the spooler for
2276          * each recipient, with the R and D fields set to the recipient and
2277          * destination-node.  This has two ugly side effects: all other
2278          * recipients end up being unlisted in this recipient's copy of the
2279          * message, and it has to deliver multiple messages to the same
2280          * node.  We'll revisit this again in a year or so when everyone has
2281          * a network spool receiver that can handle the new style messages.
2282          */
2283         if (recps != NULL)
2284          if (recps->num_ignet > 0)
2285           for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
2286                 extract_token(recipient, recps->recp_ignet, i,
2287                                 '|', sizeof recipient);
2288
2289                 hold_R = msg->cm_fields['R'];
2290                 hold_D = msg->cm_fields['D'];
2291                 msg->cm_fields['R'] = malloc(SIZ);
2292                 msg->cm_fields['D'] = malloc(128);
2293                 extract_token(msg->cm_fields['R'], recipient, 0, '@', SIZ);
2294                 extract_token(msg->cm_fields['D'], recipient, 1, '@', 128);
2295                 
2296                 serialize_message(&smr, msg);
2297                 if (smr.len > 0) {
2298                         snprintf(submit_filename, sizeof submit_filename,
2299 #ifndef HAVE_SPOOL_DIR
2300                                          "."
2301 #else
2302                                          SPOOL_DIR
2303 #endif
2304                                          "/network/spoolin/netmail.%04lx.%04x.%04x",
2305                                          (long) getpid(), CC->cs_pid, ++seqnum);
2306                         network_fp = fopen(submit_filename, "wb+");
2307                         if (network_fp != NULL) {
2308                                 fwrite(smr.ser, smr.len, 1, network_fp);
2309                                 fclose(network_fp);
2310                         }
2311                         free(smr.ser);
2312                 }
2313
2314                 free(msg->cm_fields['R']);
2315                 free(msg->cm_fields['D']);
2316                 msg->cm_fields['R'] = hold_R;
2317                 msg->cm_fields['D'] = hold_D;
2318         }
2319
2320         /* Go back to the room we started from */
2321         lprintf(CTDL_DEBUG, "Returning to original room %s\n", hold_rm);
2322         if (strcasecmp(hold_rm, CC->room.QRname))
2323                 /* getroom(&CC->room, hold_rm); */
2324                 usergoto(hold_rm, 0, 1, NULL, NULL);
2325
2326         /* For internet mail, generate delivery instructions.
2327          * Yes, this is recursive.  Deal with it.  Infinite recursion does
2328          * not happen because the delivery instructions message does not
2329          * contain a recipient.
2330          */
2331         if (recps != NULL)
2332          if (recps->num_internet > 0) {
2333                 lprintf(CTDL_DEBUG, "Generating delivery instructions\n");
2334                 instr = malloc(SIZ * 2);
2335                 snprintf(instr, SIZ * 2,
2336                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2337                         "bounceto|%s@%s\n",
2338                         SPOOLMIME, newmsgid, (long)time(NULL),
2339                         msg->cm_fields['A'], msg->cm_fields['N']
2340                 );
2341
2342                 for (i=0; i<num_tokens(recps->recp_internet, '|'); ++i) {
2343                         size_t tmp = strlen(instr);
2344                         extract_token(recipient, recps->recp_internet, i, '|', sizeof recipient);
2345                         snprintf(&instr[tmp], SIZ * 2 - tmp,
2346                                  "remote|%s|0||\n", recipient);
2347                 }
2348
2349                 imsg = malloc(sizeof(struct CtdlMessage));
2350                 memset(imsg, 0, sizeof(struct CtdlMessage));
2351                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
2352                 imsg->cm_anon_type = MES_NORMAL;
2353                 imsg->cm_format_type = FMT_RFC822;
2354                 imsg->cm_fields['A'] = strdup("Citadel");
2355                 imsg->cm_fields['M'] = instr;
2356                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM);
2357                 CtdlFreeMessage(imsg);
2358         }
2359
2360         return(newmsgid);
2361 }
2362
2363
2364
2365 /*
2366  * Convenience function for generating small administrative messages.
2367  */
2368 void quickie_message(char *from, char *to, char *room, char *text, 
2369                         int format_type, char *subject)
2370 {
2371         struct CtdlMessage *msg;
2372         struct recptypes *recp = NULL;
2373
2374         msg = malloc(sizeof(struct CtdlMessage));
2375         memset(msg, 0, sizeof(struct CtdlMessage));
2376         msg->cm_magic = CTDLMESSAGE_MAGIC;
2377         msg->cm_anon_type = MES_NORMAL;
2378         msg->cm_format_type = format_type;
2379         msg->cm_fields['A'] = strdup(from);
2380         if (room != NULL) msg->cm_fields['O'] = strdup(room);
2381         msg->cm_fields['N'] = strdup(NODENAME);
2382         if (to != NULL) {
2383                 msg->cm_fields['R'] = strdup(to);
2384                 recp = validate_recipients(to);
2385         }
2386         if (subject != NULL) {
2387                 msg->cm_fields['U'] = strdup(subject);
2388         }
2389         msg->cm_fields['M'] = strdup(text);
2390
2391         CtdlSubmitMsg(msg, recp, room);
2392         CtdlFreeMessage(msg);
2393         if (recp != NULL) free(recp);
2394 }
2395
2396
2397
2398 /*
2399  * Back end function used by CtdlMakeMessage() and similar functions
2400  */
2401 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
2402                         size_t maxlen,          /* maximum message length */
2403                         char *exist,            /* if non-null, append to it;
2404                                                    exist is ALWAYS freed  */
2405                         int crlf                /* CRLF newlines instead of LF */
2406                         ) {
2407         char buf[1024];
2408         int linelen;
2409         size_t message_len = 0;
2410         size_t buffer_len = 0;
2411         char *ptr;
2412         char *m;
2413         int flushing = 0;
2414         int finished = 0;
2415
2416         if (exist == NULL) {
2417                 m = malloc(4096);
2418                 m[0] = 0;
2419                 buffer_len = 4096;
2420                 message_len = 0;
2421         }
2422         else {
2423                 message_len = strlen(exist);
2424                 buffer_len = message_len + 4096;
2425                 m = realloc(exist, buffer_len);
2426                 if (m == NULL) {
2427                         free(exist);
2428                         return m;
2429                 }
2430         }
2431
2432         /* flush the input if we have nowhere to store it */
2433         if (m == NULL) {
2434                 flushing = 1;
2435         }
2436
2437         /* read in the lines of message text one by one */
2438         do {
2439                 if (client_getln(buf, (sizeof buf - 3)) < 1) finished = 1;
2440                 if (!strcmp(buf, terminator)) finished = 1;
2441                 if (crlf) {
2442                         strcat(buf, "\r\n");
2443                 }
2444                 else {
2445                         strcat(buf, "\n");
2446                 }
2447
2448                 if ( (!flushing) && (!finished) ) {
2449                         /* Measure the line */
2450                         linelen = strlen(buf);
2451         
2452                         /* augment the buffer if we have to */
2453                         if ((message_len + linelen) >= buffer_len) {
2454                                 ptr = realloc(m, (buffer_len * 2) );
2455                                 if (ptr == NULL) {      /* flush if can't allocate */
2456                                         flushing = 1;
2457                                 } else {
2458                                         buffer_len = (buffer_len * 2);
2459                                         m = ptr;
2460                                         lprintf(CTDL_DEBUG, "buffer_len is now %ld\n", (long)buffer_len);
2461                                 }
2462                         }
2463         
2464                         /* Add the new line to the buffer.  NOTE: this loop must avoid
2465                         * using functions like strcat() and strlen() because they
2466                         * traverse the entire buffer upon every call, and doing that
2467                         * for a multi-megabyte message slows it down beyond usability.
2468                         */
2469                         strcpy(&m[message_len], buf);
2470                         message_len += linelen;
2471                 }
2472
2473                 /* if we've hit the max msg length, flush the rest */
2474                 if (message_len >= maxlen) flushing = 1;
2475
2476         } while (!finished);
2477         return(m);
2478 }
2479
2480
2481
2482
2483 /*
2484  * Build a binary message to be saved on disk.
2485  * (NOTE: if you supply 'preformatted_text', the buffer you give it
2486  * will become part of the message.  This means you are no longer
2487  * responsible for managing that memory -- it will be freed along with
2488  * the rest of the fields when CtdlFreeMessage() is called.)
2489  */
2490
2491 struct CtdlMessage *CtdlMakeMessage(
2492         struct ctdluser *author,        /* author's user structure */
2493         char *recipient,                /* NULL if it's not mail */
2494         char *room,                     /* room where it's going */
2495         int type,                       /* see MES_ types in header file */
2496         int format_type,                /* variformat, plain text, MIME... */
2497         char *fake_name,                /* who we're masquerading as */
2498         char *subject,                  /* Subject (optional) */
2499         char *preformatted_text         /* ...or NULL to read text from client */
2500 ) {
2501         char dest_node[SIZ];
2502         char buf[SIZ];
2503         struct CtdlMessage *msg;
2504
2505         msg = malloc(sizeof(struct CtdlMessage));
2506         memset(msg, 0, sizeof(struct CtdlMessage));
2507         msg->cm_magic = CTDLMESSAGE_MAGIC;
2508         msg->cm_anon_type = type;
2509         msg->cm_format_type = format_type;
2510
2511         /* Don't confuse the poor folks if it's not routed mail. */
2512         strcpy(dest_node, "");
2513
2514         striplt(recipient);
2515
2516         snprintf(buf, sizeof buf, "cit%ld", author->usernum);   /* Path */
2517         msg->cm_fields['P'] = strdup(buf);
2518
2519         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
2520         msg->cm_fields['T'] = strdup(buf);
2521
2522         if (fake_name[0])                                       /* author */
2523                 msg->cm_fields['A'] = strdup(fake_name);
2524         else
2525                 msg->cm_fields['A'] = strdup(author->fullname);
2526
2527         if (CC->room.QRflags & QR_MAILBOX) {            /* room */
2528                 msg->cm_fields['O'] = strdup(&CC->room.QRname[11]);
2529         }
2530         else {
2531                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2532         }
2533
2534         msg->cm_fields['N'] = strdup(NODENAME);         /* nodename */
2535         msg->cm_fields['H'] = strdup(HUMANNODE);                /* hnodename */
2536
2537         if (recipient[0] != 0) {
2538                 msg->cm_fields['R'] = strdup(recipient);
2539         }
2540         if (dest_node[0] != 0) {
2541                 msg->cm_fields['D'] = strdup(dest_node);
2542         }
2543
2544         if ( (author == &CC->user) && (strlen(CC->cs_inet_email) > 0) ) {
2545                 msg->cm_fields['F'] = strdup(CC->cs_inet_email);
2546         }
2547
2548         if (subject != NULL) {
2549                 striplt(subject);
2550                 if (strlen(subject) > 0) {
2551                         msg->cm_fields['U'] = strdup(subject);
2552                 }
2553         }
2554
2555         if (preformatted_text != NULL) {
2556                 msg->cm_fields['M'] = preformatted_text;
2557         }
2558         else {
2559                 msg->cm_fields['M'] = CtdlReadMessageBody("000",
2560                                         config.c_maxmsglen, NULL, 0);
2561         }
2562
2563         return(msg);
2564 }
2565
2566
2567 /*
2568  * Check to see whether we have permission to post a message in the current
2569  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
2570  * returns 0 on success.
2571  */
2572 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, size_t n) {
2573
2574         if (!(CC->logged_in)) {
2575                 snprintf(errmsgbuf, n, "Not logged in.");
2576                 return (ERROR + NOT_LOGGED_IN);
2577         }
2578
2579         if ((CC->user.axlevel < 2)
2580             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
2581                 snprintf(errmsgbuf, n, "Need to be validated to enter "
2582                                 "(except in %s> to sysop)", MAILROOM);
2583                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2584         }
2585
2586         if ((CC->user.axlevel < 4)
2587            && (CC->room.QRflags & QR_NETWORK)) {
2588                 snprintf(errmsgbuf, n, "Need net privileges to enter here.");
2589                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2590         }
2591
2592         if ((CC->user.axlevel < 6)
2593            && (CC->room.QRflags & QR_READONLY)) {
2594                 snprintf(errmsgbuf, n, "Sorry, this is a read-only room.");
2595                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2596         }
2597
2598         strcpy(errmsgbuf, "Ok");
2599         return(0);
2600 }
2601
2602
2603 /*
2604  * Check to see if the specified user has Internet mail permission
2605  * (returns nonzero if permission is granted)
2606  */
2607 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
2608
2609         /* Do not allow twits to send Internet mail */
2610         if (who->axlevel <= 2) return(0);
2611
2612         /* Globally enabled? */
2613         if (config.c_restrict == 0) return(1);
2614
2615         /* User flagged ok? */
2616         if (who->flags & US_INTERNET) return(2);
2617
2618         /* Aide level access? */
2619         if (who->axlevel >= 6) return(3);
2620
2621         /* No mail for you! */
2622         return(0);
2623 }
2624
2625
2626
2627 /*
2628  * Validate recipients, count delivery types and errors, and handle aliasing
2629  * FIXME check for dupes!!!!!
2630  */
2631 struct recptypes *validate_recipients(char *recipients) {
2632         struct recptypes *ret;
2633         char this_recp[SIZ];
2634         char this_recp_cooked[SIZ];
2635         char append[SIZ];
2636         int num_recps;
2637         int i, j;
2638         int mailtype;
2639         int invalid;
2640         struct ctdluser tempUS;
2641         struct ctdlroom tempQR;
2642
2643         /* Initialize */
2644         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
2645         if (ret == NULL) return(NULL);
2646         memset(ret, 0, sizeof(struct recptypes));
2647
2648         ret->num_local = 0;
2649         ret->num_internet = 0;
2650         ret->num_ignet = 0;
2651         ret->num_error = 0;
2652         ret->num_room = 0;
2653
2654         if (recipients == NULL) {
2655                 num_recps = 0;
2656         }
2657         else if (strlen(recipients) == 0) {
2658                 num_recps = 0;
2659         }
2660         else {
2661                 /* Change all valid separator characters to commas */
2662                 for (i=0; i<strlen(recipients); ++i) {
2663                         if ((recipients[i] == ';') || (recipients[i] == '|')) {
2664                                 recipients[i] = ',';
2665                         }
2666                 }
2667
2668                 /* Count 'em up */
2669                 num_recps = num_tokens(recipients, ',');
2670         }
2671
2672         if (num_recps > 0) for (i=0; i<num_recps; ++i) {
2673                 extract_token(this_recp, recipients, i, ',', sizeof this_recp);
2674                 striplt(this_recp);
2675                 lprintf(CTDL_DEBUG, "Evaluating recipient #%d <%s>\n", i, this_recp);
2676                 mailtype = alias(this_recp);
2677                 mailtype = alias(this_recp);
2678                 mailtype = alias(this_recp);
2679                 for (j=0; j<=strlen(this_recp); ++j) {
2680                         if (this_recp[j]=='_') {
2681                                 this_recp_cooked[j] = ' ';
2682                         }
2683                         else {
2684                                 this_recp_cooked[j] = this_recp[j];
2685                         }
2686                 }
2687                 invalid = 0;
2688                 switch(mailtype) {
2689                         case MES_LOCAL:
2690                                 if (!strcasecmp(this_recp, "sysop")) {
2691                                         ++ret->num_room;
2692                                         strcpy(this_recp, config.c_aideroom);
2693                                         if (strlen(ret->recp_room) > 0) {
2694                                                 strcat(ret->recp_room, "|");
2695                                         }
2696                                         strcat(ret->recp_room, this_recp);
2697                                 }
2698                                 else if (getuser(&tempUS, this_recp) == 0) {
2699                                         ++ret->num_local;
2700                                         strcpy(this_recp, tempUS.fullname);
2701                                         if (strlen(ret->recp_local) > 0) {
2702                                                 strcat(ret->recp_local, "|");
2703                                         }
2704                                         strcat(ret->recp_local, this_recp);
2705                                 }
2706                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
2707                                         ++ret->num_local;
2708                                         strcpy(this_recp, tempUS.fullname);
2709                                         if (strlen(ret->recp_local) > 0) {
2710                                                 strcat(ret->recp_local, "|");
2711                                         }
2712                                         strcat(ret->recp_local, this_recp);
2713                                 }
2714                                 else if ( (!strncasecmp(this_recp, "room_", 5))
2715                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
2716                                         ++ret->num_room;
2717                                         if (strlen(ret->recp_room) > 0) {
2718                                                 strcat(ret->recp_room, "|");
2719                                         }
2720                                         strcat(ret->recp_room, &this_recp_cooked[5]);
2721                                 }
2722                                 else {
2723                                         ++ret->num_error;
2724                                         invalid = 1;
2725                                 }
2726                                 break;
2727                         case MES_INTERNET:
2728                                 /* Yes, you're reading this correctly: if the target
2729                                  * domain points back to the local system or an attached
2730                                  * Citadel directory, the address is invalid.  That's
2731                                  * because if the address were valid, we would have
2732                                  * already translated it to a local address by now.
2733                                  */
2734                                 if (IsDirectory(this_recp)) {
2735                                         ++ret->num_error;
2736                                         invalid = 1;
2737                                 }
2738                                 else {
2739                                         ++ret->num_internet;
2740                                         if (strlen(ret->recp_internet) > 0) {
2741                                                 strcat(ret->recp_internet, "|");
2742                                         }
2743                                         strcat(ret->recp_internet, this_recp);
2744                                 }
2745                                 break;
2746                         case MES_IGNET:
2747                                 ++ret->num_ignet;
2748                                 if (strlen(ret->recp_ignet) > 0) {
2749                                         strcat(ret->recp_ignet, "|");
2750                                 }
2751                                 strcat(ret->recp_ignet, this_recp);
2752                                 break;
2753                         case MES_ERROR:
2754                                 ++ret->num_error;
2755                                 invalid = 1;
2756                                 break;
2757                 }
2758                 if (invalid) {
2759                         if (strlen(ret->errormsg) == 0) {
2760                                 snprintf(append, sizeof append,
2761                                          "Invalid recipient: %s",
2762                                          this_recp);
2763                         }
2764                         else {
2765                                 snprintf(append, sizeof append,
2766                                          ", %s", this_recp);
2767                         }
2768                         if ( (strlen(ret->errormsg) + strlen(append)) < SIZ) {
2769                                 strcat(ret->errormsg, append);
2770                         }
2771                 }
2772                 else {
2773                         if (strlen(ret->display_recp) == 0) {
2774                                 strcpy(append, this_recp);
2775                         }
2776                         else {
2777                                 snprintf(append, sizeof append, ", %s",
2778                                          this_recp);
2779                         }
2780                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
2781                                 strcat(ret->display_recp, append);
2782                         }
2783                 }
2784         }
2785
2786         if ((ret->num_local + ret->num_internet + ret->num_ignet +
2787            ret->num_room + ret->num_error) == 0) {
2788                 ++ret->num_error;
2789                 strcpy(ret->errormsg, "No recipients specified.");
2790         }
2791
2792         lprintf(CTDL_DEBUG, "validate_recipients()\n");
2793         lprintf(CTDL_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
2794         lprintf(CTDL_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
2795         lprintf(CTDL_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
2796         lprintf(CTDL_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
2797         lprintf(CTDL_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
2798
2799         return(ret);
2800 }
2801
2802
2803
2804 /*
2805  * message entry  -  mode 0 (normal)
2806  */
2807 void cmd_ent0(char *entargs)
2808 {
2809         int post = 0;
2810         char recp[SIZ];
2811         char masquerade_as[SIZ];
2812         int anon_flag = 0;
2813         int format_type = 0;
2814         char newusername[SIZ];
2815         struct CtdlMessage *msg;
2816         int anonymous = 0;
2817         char errmsg[SIZ];
2818         int err = 0;
2819         struct recptypes *valid = NULL;
2820         char subject[SIZ];
2821         int do_confirm = 0;
2822         long msgnum;
2823
2824         unbuffer_output();
2825
2826         post = extract_int(entargs, 0);
2827         extract_token(recp, entargs, 1, '|', sizeof recp);
2828         anon_flag = extract_int(entargs, 2);
2829         format_type = extract_int(entargs, 3);
2830         extract_token(subject, entargs, 4, '|', sizeof subject);
2831         do_confirm = extract_int(entargs, 6);
2832
2833         /* first check to make sure the request is valid. */
2834
2835         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg);
2836         if (err) {
2837                 cprintf("%d %s\n", err, errmsg);
2838                 return;
2839         }
2840
2841         /* Check some other permission type things. */
2842
2843         if (post == 2) {
2844                 if (CC->user.axlevel < 6) {
2845                         cprintf("%d You don't have permission to masquerade.\n",
2846                                 ERROR + HIGHER_ACCESS_REQUIRED);
2847                         return;
2848                 }
2849                 extract_token(newusername, entargs, 5, '|', sizeof newusername);
2850                 memset(CC->fake_postname, 0, sizeof(CC->fake_postname) );
2851                 safestrncpy(CC->fake_postname, newusername,
2852                         sizeof(CC->fake_postname) );
2853                 cprintf("%d ok\n", CIT_OK);
2854                 return;
2855         }
2856         CC->cs_flags |= CS_POSTING;
2857
2858         /* In the Mail> room we have to behave a little differently --
2859          * make sure the user has specified at least one recipient.  Then
2860          * validate the recipient(s).
2861          */
2862         if ( (CC->room.QRflags & QR_MAILBOX)
2863            && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) ) {
2864
2865                 if (CC->user.axlevel < 2) {
2866                         strcpy(recp, "sysop");
2867                 }
2868
2869                 valid = validate_recipients(recp);
2870                 if (valid->num_error > 0) {
2871                         cprintf("%d %s\n",
2872                                 ERROR + NO_SUCH_USER, valid->errormsg);
2873                         free(valid);
2874                         return;
2875                 }
2876                 if (valid->num_internet > 0) {
2877                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
2878                                 cprintf("%d You do not have permission "
2879                                         "to send Internet mail.\n",
2880                                         ERROR + HIGHER_ACCESS_REQUIRED);
2881                                 free(valid);
2882                                 return;
2883                         }
2884                 }
2885
2886                 if ( ( (valid->num_internet + valid->num_ignet) > 0)
2887                    && (CC->user.axlevel < 4) ) {
2888                         cprintf("%d Higher access required for network mail.\n",
2889                                 ERROR + HIGHER_ACCESS_REQUIRED);
2890                         free(valid);
2891                         return;
2892                 }
2893         
2894                 if ((RESTRICT_INTERNET == 1) && (valid->num_internet > 0)
2895                     && ((CC->user.flags & US_INTERNET) == 0)
2896                     && (!CC->internal_pgm)) {
2897                         cprintf("%d You don't have access to Internet mail.\n",
2898                                 ERROR + HIGHER_ACCESS_REQUIRED);
2899                         free(valid);
2900                         return;
2901                 }
2902
2903         }
2904
2905         /* Is this a room which has anonymous-only or anonymous-option? */
2906         anonymous = MES_NORMAL;
2907         if (CC->room.QRflags & QR_ANONONLY) {
2908                 anonymous = MES_ANONONLY;
2909         }
2910         if (CC->room.QRflags & QR_ANONOPT) {
2911                 if (anon_flag == 1) {   /* only if the user requested it */
2912                         anonymous = MES_ANONOPT;
2913                 }
2914         }
2915
2916         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
2917                 recp[0] = 0;
2918         }
2919
2920         /* If we're only checking the validity of the request, return
2921          * success without creating the message.
2922          */
2923         if (post == 0) {
2924                 cprintf("%d %s\n", CIT_OK,
2925                         ((valid != NULL) ? valid->display_recp : "") );
2926                 free(valid);
2927                 return;
2928         }
2929
2930         /* Handle author masquerading */
2931         if (CC->fake_postname[0]) {
2932                 strcpy(masquerade_as, CC->fake_postname);
2933         }
2934         else if (CC->fake_username[0]) {
2935                 strcpy(masquerade_as, CC->fake_username);
2936         }
2937         else {
2938                 strcpy(masquerade_as, "");
2939         }
2940
2941         /* Read in the message from the client. */
2942         if (do_confirm) {
2943                 cprintf("%d send message\n", START_CHAT_MODE);
2944         } else {
2945                 cprintf("%d send message\n", SEND_LISTING);
2946         }
2947         msg = CtdlMakeMessage(&CC->user, recp,
2948                 CC->room.QRname, anonymous, format_type,
2949                 masquerade_as, subject, NULL);
2950
2951         if (msg != NULL) {
2952                 msgnum = CtdlSubmitMsg(msg, valid, "");
2953
2954                 if (do_confirm) {
2955                         cprintf("%ld\n", msgnum);
2956                         if (msgnum >= 0L) {
2957                                 cprintf("Message accepted.\n");
2958                         }
2959                         else {
2960                                 cprintf("Internal error.\n");
2961                         }
2962                         if (msg->cm_fields['E'] != NULL) {
2963                                 cprintf("%s\n", msg->cm_fields['E']);
2964                         } else {
2965                                 cprintf("\n");
2966                         }
2967                         cprintf("000\n");
2968                 }
2969
2970                 CtdlFreeMessage(msg);
2971         }
2972         CC->fake_postname[0] = '\0';
2973         free(valid);
2974         return;
2975 }
2976
2977
2978
2979 /*
2980  * API function to delete messages which match a set of criteria
2981  * (returns the actual number of messages deleted)
2982  */
2983 int CtdlDeleteMessages(char *room_name,         /* which room */
2984                         long dmsgnum,           /* or "0" for any */
2985                         char *content_type,     /* or "" for any */
2986                         int deferred            /* let TDAP sweep it later */
2987 )
2988 {
2989
2990         struct ctdlroom qrbuf;
2991         struct cdbdata *cdbfr;
2992         long *msglist = NULL;
2993         long *dellist = NULL;
2994         int num_msgs = 0;
2995         int i;
2996         int num_deleted = 0;
2997         int delete_this;
2998         struct MetaData smi;
2999
3000         lprintf(CTDL_DEBUG, "CtdlDeleteMessages(%s, %ld, %s, %d)\n",
3001                 room_name, dmsgnum, content_type, deferred);
3002
3003         /* get room record, obtaining a lock... */
3004         if (lgetroom(&qrbuf, room_name) != 0) {
3005                 lprintf(CTDL_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
3006                         room_name);
3007                 return (0);     /* room not found */
3008         }
3009         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
3010
3011         if (cdbfr != NULL) {
3012                 msglist = malloc(cdbfr->len);
3013                 dellist = malloc(cdbfr->len);
3014                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
3015                 num_msgs = cdbfr->len / sizeof(long);
3016                 cdb_free(cdbfr);
3017         }
3018         if (num_msgs > 0) {
3019                 for (i = 0; i < num_msgs; ++i) {
3020                         delete_this = 0x00;
3021
3022                         /* Set/clear a bit for each criterion */
3023
3024                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
3025                                 delete_this |= 0x01;
3026                         }
3027                         if (strlen(content_type) == 0) {
3028                                 delete_this |= 0x02;
3029                         } else {
3030                                 GetMetaData(&smi, msglist[i]);
3031                                 if (!strcasecmp(smi.meta_content_type,
3032                                                 content_type)) {
3033                                         delete_this |= 0x02;
3034                                 }
3035                         }
3036
3037                         /* Delete message only if all bits are set */
3038                         if (delete_this == 0x03) {
3039                                 dellist[num_deleted++] = msglist[i];
3040                                 msglist[i] = 0L;
3041                         }
3042                 }
3043
3044                 num_msgs = sort_msglist(msglist, num_msgs);
3045                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
3046                           msglist, (int)(num_msgs * sizeof(long)));
3047
3048                 qrbuf.QRhighest = msglist[num_msgs - 1];
3049         }
3050         lputroom(&qrbuf);
3051
3052         /*
3053          * If the delete operation is "deferred" (and technically, any delete
3054          * operation not performed by THE DREADED AUTO-PURGER ought to be
3055          * a deferred delete) then we save a pointer to the message in the
3056          * DELETED_MSGS_ROOM.  This will cause the reference count to remain
3057          * at least 1, which will save the user from having to synchronously
3058          * wait for various disk-intensive operations to complete.
3059          */
3060         if ( (deferred) && (num_deleted) ) {
3061                 for (i=0; i<num_deleted; ++i) {
3062                         CtdlCopyMsgToRoom(dellist[i], DELETED_MSGS_ROOM);
3063                 }
3064         }
3065
3066         /* Go through the messages we pulled out of the index, and decrement
3067          * their reference counts by 1.  If this is the only room the message
3068          * was in, the reference count will reach zero and the message will
3069          * automatically be deleted from the database.  We do this in a
3070          * separate pass because there might be plug-in hooks getting called,
3071          * and we don't want that happening during an S_ROOMS critical
3072          * section.
3073          */
3074         if (num_deleted) for (i=0; i<num_deleted; ++i) {
3075                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
3076                 AdjRefCount(dellist[i], -1);
3077         }
3078
3079         /* Now free the memory we used, and go away. */
3080         if (msglist != NULL) free(msglist);
3081         if (dellist != NULL) free(dellist);
3082         lprintf(CTDL_DEBUG, "%d message(s) deleted.\n", num_deleted);
3083         return (num_deleted);
3084 }
3085
3086
3087
3088 /*
3089  * Check whether the current user has permission to delete messages from
3090  * the current room (returns 1 for yes, 0 for no)
3091  */
3092 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
3093         getuser(&CC->user, CC->curr_user);
3094         if ((CC->user.axlevel < 6)
3095             && (CC->user.usernum != CC->room.QRroomaide)
3096             && ((CC->room.QRflags & QR_MAILBOX) == 0)
3097             && (!(CC->internal_pgm))) {
3098                 return(0);
3099         }
3100         return(1);
3101 }
3102
3103
3104
3105 /*
3106  * Delete message from current room
3107  */
3108 void cmd_dele(char *delstr)
3109 {
3110         long delnum;
3111         int num_deleted;
3112
3113         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
3114                 cprintf("%d Higher access required.\n",
3115                         ERROR + HIGHER_ACCESS_REQUIRED);
3116                 return;
3117         }
3118         delnum = extract_long(delstr, 0);
3119
3120         num_deleted = CtdlDeleteMessages(CC->room.QRname, delnum, "", 1);
3121
3122         if (num_deleted) {
3123                 cprintf("%d %d message%s deleted.\n", CIT_OK,
3124                         num_deleted, ((num_deleted != 1) ? "s" : ""));
3125         } else {
3126                 cprintf("%d Message %ld not found.\n", ERROR + MESSAGE_NOT_FOUND, delnum);
3127         }
3128 }
3129
3130
3131 /*
3132  * Back end API function for moves and deletes
3133  */
3134 int CtdlCopyMsgToRoom(long msgnum, char *dest) {
3135         int err;
3136
3137         err = CtdlSaveMsgPointerInRoom(dest, msgnum,
3138                 (SM_VERIFY_GOODNESS | SM_DO_REPL_CHECK) );
3139         if (err != 0) return(err);
3140
3141         return(0);
3142 }
3143
3144
3145
3146 /*
3147  * move or copy a message to another room
3148  */
3149 void cmd_move(char *args)
3150 {
3151         long num;
3152         char targ[ROOMNAMELEN];
3153         struct ctdlroom qtemp;
3154         int err;
3155         int is_copy = 0;
3156         int ra;
3157         int permit = 0;
3158
3159         num = extract_long(args, 0);
3160         extract_token(targ, args, 1, '|', sizeof targ);
3161         targ[ROOMNAMELEN - 1] = 0;
3162         is_copy = extract_int(args, 2);
3163
3164         if (getroom(&qtemp, targ) != 0) {
3165                 cprintf("%d '%s' does not exist.\n",
3166                         ERROR + ROOM_NOT_FOUND, targ);
3167                 return;
3168         }
3169
3170         getuser(&CC->user, CC->curr_user);
3171         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
3172
3173         /* Check for permission to perform this operation.
3174          * Remember: "CC->room" is source, "qtemp" is target.
3175          */
3176         permit = 0;
3177
3178         /* Aides can move/copy */
3179         if (CC->user.axlevel >= 6) permit = 1;
3180
3181         /* Room aides can move/copy */
3182         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
3183
3184         /* Permit move/copy from personal rooms */
3185         if ((CC->room.QRflags & QR_MAILBOX)
3186            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3187
3188         /* Permit only copy from public to personal room */
3189         if ( (is_copy)
3190            && (!(CC->room.QRflags & QR_MAILBOX))
3191            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3192
3193         /* User must have access to target room */
3194         if (!(ra & UA_KNOWN))  permit = 0;
3195
3196         if (!permit) {
3197                 cprintf("%d Higher access required.\n",
3198                         ERROR + HIGHER_ACCESS_REQUIRED);
3199                 return;
3200         }
3201
3202         err = CtdlCopyMsgToRoom(num, targ);
3203         if (err != 0) {
3204                 cprintf("%d Cannot store message in %s: error %d\n",
3205                         err, targ, err);
3206                 return;
3207         }
3208
3209         /* Now delete the message from the source room,
3210          * if this is a 'move' rather than a 'copy' operation.
3211          */
3212         if (is_copy == 0) {
3213                 CtdlDeleteMessages(CC->room.QRname, num, "", 0);
3214         }
3215
3216         cprintf("%d Message %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
3217 }
3218
3219
3220
3221 /*
3222  * GetMetaData()  -  Get the supplementary record for a message
3223  */
3224 void GetMetaData(struct MetaData *smibuf, long msgnum)
3225 {
3226
3227         struct cdbdata *cdbsmi;
3228         long TheIndex;
3229
3230         memset(smibuf, 0, sizeof(struct MetaData));
3231         smibuf->meta_msgnum = msgnum;
3232         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
3233
3234         /* Use the negative of the message number for its supp record index */
3235         TheIndex = (0L - msgnum);
3236
3237         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
3238         if (cdbsmi == NULL) {
3239                 return;         /* record not found; go with defaults */
3240         }
3241         memcpy(smibuf, cdbsmi->ptr,
3242                ((cdbsmi->len > sizeof(struct MetaData)) ?
3243                 sizeof(struct MetaData) : cdbsmi->len));
3244         cdb_free(cdbsmi);
3245         return;
3246 }
3247
3248
3249 /*
3250  * PutMetaData()  -  (re)write supplementary record for a message
3251  */
3252 void PutMetaData(struct MetaData *smibuf)
3253 {
3254         long TheIndex;
3255
3256         /* Use the negative of the message number for the metadata db index */
3257         TheIndex = (0L - smibuf->meta_msgnum);
3258
3259         lprintf(CTDL_DEBUG, "PutMetaData(%ld) - ref count is %d\n",
3260                 smibuf->meta_msgnum, smibuf->meta_refcount);
3261
3262         cdb_store(CDB_MSGMAIN,
3263                   &TheIndex, (int)sizeof(long),
3264                   smibuf, (int)sizeof(struct MetaData));
3265
3266 }
3267
3268 /*
3269  * AdjRefCount  -  change the reference count for a message;
3270  *               delete the message if it reaches zero
3271  */
3272 void AdjRefCount(long msgnum, int incr)
3273 {
3274
3275         struct MetaData smi;
3276         long delnum;
3277
3278         /* This is a *tight* critical section; please keep it that way, as
3279          * it may get called while nested in other critical sections.  
3280          * Complicating this any further will surely cause deadlock!
3281          */
3282         begin_critical_section(S_SUPPMSGMAIN);
3283         GetMetaData(&smi, msgnum);
3284         smi.meta_refcount += incr;
3285         PutMetaData(&smi);
3286         end_critical_section(S_SUPPMSGMAIN);
3287         lprintf(CTDL_DEBUG, "msg %ld ref count incr %d, is now %d\n",
3288                 msgnum, incr, smi.meta_refcount);
3289
3290         /* If the reference count is now zero, delete the message
3291          * (and its supplementary record as well).
3292          * FIXME ... defer this so it doesn't keep the user waiting.
3293          */
3294         if (smi.meta_refcount == 0) {
3295                 lprintf(CTDL_DEBUG, "Deleting message <%ld>\n", msgnum);
3296
3297                 /* Remove from fulltext index */
3298                 if (config.c_enable_fulltext) {
3299                         ft_index_message(msgnum, 0);
3300                 }
3301
3302                 /* Remove from message base */
3303                 delnum = msgnum;
3304                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3305                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
3306
3307                 /* Remove metadata record */
3308                 delnum = (0L - msgnum);
3309                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3310         }
3311 }
3312
3313 /*
3314  * Write a generic object to this room
3315  *
3316  * Note: this could be much more efficient.  Right now we use two temporary
3317  * files, and still pull the message into memory as with all others.
3318  */
3319 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
3320                         char *content_type,     /* MIME type of this object */
3321                         char *tempfilename,     /* Where to fetch it from */
3322                         struct ctdluser *is_mailbox,    /* Mailbox room? */
3323                         int is_binary,          /* Is encoding necessary? */
3324                         int is_unique,          /* Del others of this type? */
3325                         unsigned int flags      /* Internal save flags */
3326                         )
3327 {
3328
3329         FILE *fp;
3330         struct ctdlroom qrbuf;
3331         char roomname[ROOMNAMELEN];
3332         struct CtdlMessage *msg;
3333
3334         char *raw_message = NULL;
3335         char *encoded_message = NULL;
3336         off_t raw_length = 0;
3337
3338         if (is_mailbox != NULL)
3339                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
3340         else
3341                 safestrncpy(roomname, req_room, sizeof(roomname));
3342         lprintf(CTDL_DEBUG, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
3343
3344
3345         fp = fopen(tempfilename, "rb");
3346         if (fp == NULL) {
3347                 lprintf(CTDL_CRIT, "Cannot open %s: %s\n",
3348                         tempfilename, strerror(errno));
3349                 return;
3350         }
3351         fseek(fp, 0L, SEEK_END);
3352         raw_length = ftell(fp);
3353         rewind(fp);
3354         lprintf(CTDL_DEBUG, "Raw length is %ld\n", (long)raw_length);
3355
3356         raw_message = malloc((size_t)raw_length + 2);
3357         fread(raw_message, (size_t)raw_length, 1, fp);
3358         fclose(fp);
3359
3360         if (is_binary) {
3361                 encoded_message = malloc((size_t)
3362                         (((raw_length * 134) / 100) + 4096 ) );
3363         }
3364         else {
3365                 encoded_message = malloc((size_t)(raw_length + 4096));
3366         }
3367
3368         sprintf(encoded_message, "Content-type: %s\n", content_type);
3369
3370         if (is_binary) {
3371                 sprintf(&encoded_message[strlen(encoded_message)],
3372                         "Content-transfer-encoding: base64\n\n"
3373                 );
3374         }
3375         else {
3376                 sprintf(&encoded_message[strlen(encoded_message)],
3377                         "Content-transfer-encoding: 7bit\n\n"
3378                 );
3379         }
3380
3381         if (is_binary) {
3382                 CtdlEncodeBase64(
3383                         &encoded_message[strlen(encoded_message)],
3384                         raw_message,
3385                         (int)raw_length
3386                 );
3387         }
3388         else {
3389                 raw_message[raw_length] = 0;
3390                 memcpy(
3391                         &encoded_message[strlen(encoded_message)],
3392                         raw_message,
3393                         (int)(raw_length+1)
3394                 );
3395         }
3396
3397         free(raw_message);
3398
3399         lprintf(CTDL_DEBUG, "Allocating\n");
3400         msg = malloc(sizeof(struct CtdlMessage));
3401         memset(msg, 0, sizeof(struct CtdlMessage));
3402         msg->cm_magic = CTDLMESSAGE_MAGIC;
3403         msg->cm_anon_type = MES_NORMAL;
3404         msg->cm_format_type = 4;
3405         msg->cm_fields['A'] = strdup(CC->user.fullname);
3406         msg->cm_fields['O'] = strdup(req_room);
3407         msg->cm_fields['N'] = strdup(config.c_nodename);
3408         msg->cm_fields['H'] = strdup(config.c_humannode);
3409         msg->cm_flags = flags;
3410         
3411         msg->cm_fields['M'] = encoded_message;
3412
3413         /* Create the requested room if we have to. */
3414         if (getroom(&qrbuf, roomname) != 0) {
3415                 create_room(roomname, 
3416                         ( (is_mailbox != NULL) ? 5 : 3 ),
3417                         "", 0, 1, 0, VIEW_BBS);
3418         }
3419         /* If the caller specified this object as unique, delete all
3420          * other objects of this type that are currently in the room.
3421          */
3422         if (is_unique) {
3423                 lprintf(CTDL_DEBUG, "Deleted %d other msgs of this type\n",
3424                         CtdlDeleteMessages(roomname, 0L, content_type, 0)
3425                 );
3426         }
3427         /* Now write the data */
3428         CtdlSubmitMsg(msg, NULL, roomname);
3429         CtdlFreeMessage(msg);
3430 }
3431
3432
3433
3434
3435
3436
3437 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
3438         config_msgnum = msgnum;
3439 }
3440
3441
3442 char *CtdlGetSysConfig(char *sysconfname) {
3443         char hold_rm[ROOMNAMELEN];
3444         long msgnum;
3445         char *conf;
3446         struct CtdlMessage *msg;
3447         char buf[SIZ];
3448         
3449         strcpy(hold_rm, CC->room.QRname);
3450         if (getroom(&CC->room, SYSCONFIGROOM) != 0) {
3451                 getroom(&CC->room, hold_rm);
3452                 return NULL;
3453         }
3454
3455
3456         /* We want the last (and probably only) config in this room */
3457         begin_critical_section(S_CONFIG);
3458         config_msgnum = (-1L);
3459         CtdlForEachMessage(MSGS_LAST, 1, sysconfname, NULL,
3460                 CtdlGetSysConfigBackend, NULL);
3461         msgnum = config_msgnum;
3462         end_critical_section(S_CONFIG);
3463
3464         if (msgnum < 0L) {
3465                 conf = NULL;
3466         }
3467         else {
3468                 msg = CtdlFetchMessage(msgnum, 1);
3469                 if (msg != NULL) {
3470                         conf = strdup(msg->cm_fields['M']);
3471                         CtdlFreeMessage(msg);
3472                 }
3473                 else {
3474                         conf = NULL;
3475                 }
3476         }
3477
3478         getroom(&CC->room, hold_rm);
3479
3480         if (conf != NULL) do {
3481                 extract_token(buf, conf, 0, '\n', sizeof buf);
3482                 strcpy(conf, &conf[strlen(buf)+1]);
3483         } while ( (strlen(conf)>0) && (strlen(buf)>0) );
3484
3485         return(conf);
3486 }
3487
3488 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
3489         char temp[PATH_MAX];
3490         FILE *fp;
3491
3492         strcpy(temp, tmpnam(NULL));
3493
3494         fp = fopen(temp, "w");
3495         if (fp == NULL) return;
3496         fprintf(fp, "%s", sysconfdata);
3497         fclose(fp);
3498
3499         /* this handy API function does all the work for us */
3500         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
3501         unlink(temp);
3502 }
3503
3504
3505 /*
3506  * Determine whether a given Internet address belongs to the current user
3507  */
3508 int CtdlIsMe(char *addr, int addr_buf_len)
3509 {
3510         struct recptypes *recp;
3511         int i;
3512
3513         recp = validate_recipients(addr);
3514         if (recp == NULL) return(0);
3515
3516         if (recp->num_local == 0) {
3517                 free(recp);
3518                 return(0);
3519         }
3520
3521         for (i=0; i<recp->num_local; ++i) {
3522                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
3523                 if (!strcasecmp(addr, CC->user.fullname)) {
3524                         free(recp);
3525                         return(1);
3526                 }
3527         }
3528
3529         free(recp);
3530         return(0);
3531 }
3532
3533
3534 /*
3535  * Citadel protocol command to do the same
3536  */
3537 void cmd_isme(char *argbuf) {
3538         char addr[256];
3539
3540         if (CtdlAccessCheck(ac_logged_in)) return;
3541         extract_token(addr, argbuf, 0, '|', sizeof addr);
3542
3543         if (CtdlIsMe(addr, sizeof addr)) {
3544                 cprintf("%d %s\n", CIT_OK, addr);
3545         }
3546         else {
3547                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
3548         }
3549
3550 }