* Bounds checking in CtdlDirectoryLookup()
[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 = bmstrstr(msg->cm_fields['M'],
2113                                 "Content-type: ", strncasecmp);
2114                 if (mptr != NULL) {
2115                         safestrncpy(content_type, &mptr[14], 
2116                                         sizeof content_type);
2117                         for (a = 0; a < strlen(content_type); ++a) {
2118                                 if ((content_type[a] == ';')
2119                                     || (content_type[a] == ' ')
2120                                     || (content_type[a] == 13)
2121                                     || (content_type[a] == 10)) {
2122                                         content_type[a] = 0;
2123                                 }
2124                         }
2125                 }
2126         }
2127
2128         /* Goto the correct room */
2129         lprintf(CTDL_DEBUG, "Selected room %s\n",
2130                 (recps) ? CC->room.QRname : SENTITEMS);
2131         strcpy(hold_rm, CC->room.QRname);
2132         strcpy(actual_rm, CC->room.QRname);
2133         if (recps != NULL) {
2134                 strcpy(actual_rm, SENTITEMS);
2135         }
2136
2137         /* If the user is a twit, move to the twit room for posting */
2138         lprintf(CTDL_DEBUG, "Handling twit stuff: %s\n",
2139                         (CC->user.axlevel == 2) ? config.c_twitroom : "OK");
2140         if (TWITDETECT) {
2141                 if (CC->user.axlevel == 2) {
2142                         strcpy(hold_rm, actual_rm);
2143                         strcpy(actual_rm, config.c_twitroom);
2144                 }
2145         }
2146
2147         /* ...or if this message is destined for Aide> then go there. */
2148         if (strlen(force_room) > 0) {
2149                 strcpy(actual_rm, force_room);
2150         }
2151
2152         lprintf(CTDL_DEBUG, "Final selection: %s\n", actual_rm);
2153         if (strcasecmp(actual_rm, CC->room.QRname)) {
2154                 /* getroom(&CC->room, actual_rm); */
2155                 usergoto(actual_rm, 0, 1, NULL, NULL);
2156         }
2157
2158         /*
2159          * If this message has no O (room) field, generate one.
2160          */
2161         if (msg->cm_fields['O'] == NULL) {
2162                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2163         }
2164
2165         /* Perform "before save" hooks (aborting if any return nonzero) */
2166         lprintf(CTDL_DEBUG, "Performing before-save hooks\n");
2167         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-3);
2168
2169         /* If this message has an Exclusive ID, perform replication checks */
2170         lprintf(CTDL_DEBUG, "Performing replication checks\n");
2171         if (ReplicationChecks(msg) > 0) return(-4);
2172
2173         /* Save it to disk */
2174         lprintf(CTDL_DEBUG, "Saving to disk\n");
2175         newmsgid = send_message(msg);
2176         if (newmsgid <= 0L) return(-5);
2177
2178         /* Write a supplemental message info record.  This doesn't have to
2179          * be a critical section because nobody else knows about this message
2180          * yet.
2181          */
2182         lprintf(CTDL_DEBUG, "Creating MetaData record\n");
2183         memset(&smi, 0, sizeof(struct MetaData));
2184         smi.meta_msgnum = newmsgid;
2185         smi.meta_refcount = 0;
2186         safestrncpy(smi.meta_content_type, content_type,
2187                         sizeof smi.meta_content_type);
2188
2189         /* As part of the new metadata record, measure how
2190          * big this message will be when displayed as RFC822.
2191          * Both POP and IMAP use this, and it's best to just take the hit now
2192          * instead of having to potentially measure thousands of messages when
2193          * a mailbox is opened later.
2194          */
2195
2196         if (CC->redirect_buffer != NULL) {
2197                 lprintf(CTDL_ALERT, "CC->redirect_buffer is not NULL during message submission!\n");
2198                 abort();
2199         }
2200         CC->redirect_buffer = malloc(SIZ);
2201         CC->redirect_len = 0;
2202         CC->redirect_alloc = SIZ;
2203         CtdlOutputPreLoadedMsg(msg, 0L, MT_RFC822, HEADERS_ALL, 0, 1);
2204         smi.meta_rfc822_length = CC->redirect_len;
2205         free(CC->redirect_buffer);
2206         CC->redirect_buffer = NULL;
2207         CC->redirect_len = 0;
2208         CC->redirect_alloc = 0;
2209
2210         PutMetaData(&smi);
2211
2212         /* Now figure out where to store the pointers */
2213         lprintf(CTDL_DEBUG, "Storing pointers\n");
2214
2215         /* If this is being done by the networker delivering a private
2216          * message, we want to BYPASS saving the sender's copy (because there
2217          * is no local sender; it would otherwise go to the Trashcan).
2218          */
2219         if ((!CC->internal_pgm) || (recps == NULL)) {
2220                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0) != 0) {
2221                         lprintf(CTDL_ERR, "ERROR saving message pointer!\n");
2222                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2223                                                         newmsgid, 0);
2224                 }
2225         }
2226
2227         /* For internet mail, drop a copy in the outbound queue room */
2228         if (recps != NULL)
2229          if (recps->num_internet > 0) {
2230                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0);
2231         }
2232
2233         /* If other rooms are specified, drop them there too. */
2234         if (recps != NULL)
2235          if (recps->num_room > 0)
2236           for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
2237                 extract_token(recipient, recps->recp_room, i,
2238                                         '|', sizeof recipient);
2239                 lprintf(CTDL_DEBUG, "Delivering to room <%s>\n", recipient);
2240                 CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0);
2241         }
2242
2243         /* Bump this user's messages posted counter. */
2244         lprintf(CTDL_DEBUG, "Updating user\n");
2245         lgetuser(&CC->user, CC->curr_user);
2246         CC->user.posted = CC->user.posted + 1;
2247         lputuser(&CC->user);
2248
2249         /* If this is private, local mail, make a copy in the
2250          * recipient's mailbox and bump the reference count.
2251          */
2252         if (recps != NULL)
2253          if (recps->num_local > 0)
2254           for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
2255                 extract_token(recipient, recps->recp_local, i,
2256                                         '|', sizeof recipient);
2257                 lprintf(CTDL_DEBUG, "Delivering private local mail to <%s>\n",
2258                         recipient);
2259                 if (getuser(&userbuf, recipient) == 0) {
2260                         MailboxName(actual_rm, sizeof actual_rm,
2261                                         &userbuf, MAILROOM);
2262                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0);
2263                         BumpNewMailCounter(userbuf.usernum);
2264                 }
2265                 else {
2266                         lprintf(CTDL_DEBUG, "No user <%s>\n", recipient);
2267                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2268                                                         newmsgid, 0);
2269                 }
2270         }
2271
2272         /* Perform "after save" hooks */
2273         lprintf(CTDL_DEBUG, "Performing after-save hooks\n");
2274         PerformMessageHooks(msg, EVT_AFTERSAVE);
2275
2276         /* For IGnet mail, we have to save a new copy into the spooler for
2277          * each recipient, with the R and D fields set to the recipient and
2278          * destination-node.  This has two ugly side effects: all other
2279          * recipients end up being unlisted in this recipient's copy of the
2280          * message, and it has to deliver multiple messages to the same
2281          * node.  We'll revisit this again in a year or so when everyone has
2282          * a network spool receiver that can handle the new style messages.
2283          */
2284         if (recps != NULL)
2285          if (recps->num_ignet > 0)
2286           for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
2287                 extract_token(recipient, recps->recp_ignet, i,
2288                                 '|', sizeof recipient);
2289
2290                 hold_R = msg->cm_fields['R'];
2291                 hold_D = msg->cm_fields['D'];
2292                 msg->cm_fields['R'] = malloc(SIZ);
2293                 msg->cm_fields['D'] = malloc(128);
2294                 extract_token(msg->cm_fields['R'], recipient, 0, '@', SIZ);
2295                 extract_token(msg->cm_fields['D'], recipient, 1, '@', 128);
2296                 
2297                 serialize_message(&smr, msg);
2298                 if (smr.len > 0) {
2299                         snprintf(submit_filename, sizeof submit_filename,
2300 #ifndef HAVE_SPOOL_DIR
2301                                          "."
2302 #else
2303                                          SPOOL_DIR
2304 #endif
2305                                          "/network/spoolin/netmail.%04lx.%04x.%04x",
2306                                          (long) getpid(), CC->cs_pid, ++seqnum);
2307                         network_fp = fopen(submit_filename, "wb+");
2308                         if (network_fp != NULL) {
2309                                 fwrite(smr.ser, smr.len, 1, network_fp);
2310                                 fclose(network_fp);
2311                         }
2312                         free(smr.ser);
2313                 }
2314
2315                 free(msg->cm_fields['R']);
2316                 free(msg->cm_fields['D']);
2317                 msg->cm_fields['R'] = hold_R;
2318                 msg->cm_fields['D'] = hold_D;
2319         }
2320
2321         /* Go back to the room we started from */
2322         lprintf(CTDL_DEBUG, "Returning to original room %s\n", hold_rm);
2323         if (strcasecmp(hold_rm, CC->room.QRname))
2324                 /* getroom(&CC->room, hold_rm); */
2325                 usergoto(hold_rm, 0, 1, NULL, NULL);
2326
2327         /* For internet mail, generate delivery instructions.
2328          * Yes, this is recursive.  Deal with it.  Infinite recursion does
2329          * not happen because the delivery instructions message does not
2330          * contain a recipient.
2331          */
2332         if (recps != NULL)
2333          if (recps->num_internet > 0) {
2334                 lprintf(CTDL_DEBUG, "Generating delivery instructions\n");
2335                 instr = malloc(SIZ * 2);
2336                 snprintf(instr, SIZ * 2,
2337                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2338                         "bounceto|%s@%s\n",
2339                         SPOOLMIME, newmsgid, (long)time(NULL),
2340                         msg->cm_fields['A'], msg->cm_fields['N']
2341                 );
2342
2343                 for (i=0; i<num_tokens(recps->recp_internet, '|'); ++i) {
2344                         size_t tmp = strlen(instr);
2345                         extract_token(recipient, recps->recp_internet, i, '|', sizeof recipient);
2346                         snprintf(&instr[tmp], SIZ * 2 - tmp,
2347                                  "remote|%s|0||\n", recipient);
2348                 }
2349
2350                 imsg = malloc(sizeof(struct CtdlMessage));
2351                 memset(imsg, 0, sizeof(struct CtdlMessage));
2352                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
2353                 imsg->cm_anon_type = MES_NORMAL;
2354                 imsg->cm_format_type = FMT_RFC822;
2355                 imsg->cm_fields['A'] = strdup("Citadel");
2356                 imsg->cm_fields['M'] = instr;
2357                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM);
2358                 CtdlFreeMessage(imsg);
2359         }
2360
2361         return(newmsgid);
2362 }
2363
2364
2365
2366 /*
2367  * Convenience function for generating small administrative messages.
2368  */
2369 void quickie_message(char *from, char *to, char *room, char *text, 
2370                         int format_type, char *subject)
2371 {
2372         struct CtdlMessage *msg;
2373         struct recptypes *recp = NULL;
2374
2375         msg = malloc(sizeof(struct CtdlMessage));
2376         memset(msg, 0, sizeof(struct CtdlMessage));
2377         msg->cm_magic = CTDLMESSAGE_MAGIC;
2378         msg->cm_anon_type = MES_NORMAL;
2379         msg->cm_format_type = format_type;
2380         msg->cm_fields['A'] = strdup(from);
2381         if (room != NULL) msg->cm_fields['O'] = strdup(room);
2382         msg->cm_fields['N'] = strdup(NODENAME);
2383         if (to != NULL) {
2384                 msg->cm_fields['R'] = strdup(to);
2385                 recp = validate_recipients(to);
2386         }
2387         if (subject != NULL) {
2388                 msg->cm_fields['U'] = strdup(subject);
2389         }
2390         msg->cm_fields['M'] = strdup(text);
2391
2392         CtdlSubmitMsg(msg, recp, room);
2393         CtdlFreeMessage(msg);
2394         if (recp != NULL) free(recp);
2395 }
2396
2397
2398
2399 /*
2400  * Back end function used by CtdlMakeMessage() and similar functions
2401  */
2402 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
2403                         size_t maxlen,          /* maximum message length */
2404                         char *exist,            /* if non-null, append to it;
2405                                                    exist is ALWAYS freed  */
2406                         int crlf                /* CRLF newlines instead of LF */
2407                         ) {
2408         char buf[1024];
2409         int linelen;
2410         size_t message_len = 0;
2411         size_t buffer_len = 0;
2412         char *ptr;
2413         char *m;
2414         int flushing = 0;
2415         int finished = 0;
2416
2417         if (exist == NULL) {
2418                 m = malloc(4096);
2419                 m[0] = 0;
2420                 buffer_len = 4096;
2421                 message_len = 0;
2422         }
2423         else {
2424                 message_len = strlen(exist);
2425                 buffer_len = message_len + 4096;
2426                 m = realloc(exist, buffer_len);
2427                 if (m == NULL) {
2428                         free(exist);
2429                         return m;
2430                 }
2431         }
2432
2433         /* flush the input if we have nowhere to store it */
2434         if (m == NULL) {
2435                 flushing = 1;
2436         }
2437
2438         /* read in the lines of message text one by one */
2439         do {
2440                 if (client_getln(buf, (sizeof buf - 3)) < 1) finished = 1;
2441                 if (!strcmp(buf, terminator)) finished = 1;
2442                 if (crlf) {
2443                         strcat(buf, "\r\n");
2444                 }
2445                 else {
2446                         strcat(buf, "\n");
2447                 }
2448
2449                 if ( (!flushing) && (!finished) ) {
2450                         /* Measure the line */
2451                         linelen = strlen(buf);
2452         
2453                         /* augment the buffer if we have to */
2454                         if ((message_len + linelen) >= buffer_len) {
2455                                 ptr = realloc(m, (buffer_len * 2) );
2456                                 if (ptr == NULL) {      /* flush if can't allocate */
2457                                         flushing = 1;
2458                                 } else {
2459                                         buffer_len = (buffer_len * 2);
2460                                         m = ptr;
2461                                         lprintf(CTDL_DEBUG, "buffer_len is now %ld\n", (long)buffer_len);
2462                                 }
2463                         }
2464         
2465                         /* Add the new line to the buffer.  NOTE: this loop must avoid
2466                         * using functions like strcat() and strlen() because they
2467                         * traverse the entire buffer upon every call, and doing that
2468                         * for a multi-megabyte message slows it down beyond usability.
2469                         */
2470                         strcpy(&m[message_len], buf);
2471                         message_len += linelen;
2472                 }
2473
2474                 /* if we've hit the max msg length, flush the rest */
2475                 if (message_len >= maxlen) flushing = 1;
2476
2477         } while (!finished);
2478         return(m);
2479 }
2480
2481
2482
2483
2484 /*
2485  * Build a binary message to be saved on disk.
2486  * (NOTE: if you supply 'preformatted_text', the buffer you give it
2487  * will become part of the message.  This means you are no longer
2488  * responsible for managing that memory -- it will be freed along with
2489  * the rest of the fields when CtdlFreeMessage() is called.)
2490  */
2491
2492 struct CtdlMessage *CtdlMakeMessage(
2493         struct ctdluser *author,        /* author's user structure */
2494         char *recipient,                /* NULL if it's not mail */
2495         char *room,                     /* room where it's going */
2496         int type,                       /* see MES_ types in header file */
2497         int format_type,                /* variformat, plain text, MIME... */
2498         char *fake_name,                /* who we're masquerading as */
2499         char *subject,                  /* Subject (optional) */
2500         char *preformatted_text         /* ...or NULL to read text from client */
2501 ) {
2502         char dest_node[SIZ];
2503         char buf[SIZ];
2504         struct CtdlMessage *msg;
2505
2506         msg = malloc(sizeof(struct CtdlMessage));
2507         memset(msg, 0, sizeof(struct CtdlMessage));
2508         msg->cm_magic = CTDLMESSAGE_MAGIC;
2509         msg->cm_anon_type = type;
2510         msg->cm_format_type = format_type;
2511
2512         /* Don't confuse the poor folks if it's not routed mail. */
2513         strcpy(dest_node, "");
2514
2515         striplt(recipient);
2516
2517         snprintf(buf, sizeof buf, "cit%ld", author->usernum);   /* Path */
2518         msg->cm_fields['P'] = strdup(buf);
2519
2520         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
2521         msg->cm_fields['T'] = strdup(buf);
2522
2523         if (fake_name[0])                                       /* author */
2524                 msg->cm_fields['A'] = strdup(fake_name);
2525         else
2526                 msg->cm_fields['A'] = strdup(author->fullname);
2527
2528         if (CC->room.QRflags & QR_MAILBOX) {            /* room */
2529                 msg->cm_fields['O'] = strdup(&CC->room.QRname[11]);
2530         }
2531         else {
2532                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2533         }
2534
2535         msg->cm_fields['N'] = strdup(NODENAME);         /* nodename */
2536         msg->cm_fields['H'] = strdup(HUMANNODE);                /* hnodename */
2537
2538         if (recipient[0] != 0) {
2539                 msg->cm_fields['R'] = strdup(recipient);
2540         }
2541         if (dest_node[0] != 0) {
2542                 msg->cm_fields['D'] = strdup(dest_node);
2543         }
2544
2545         if ( (author == &CC->user) && (strlen(CC->cs_inet_email) > 0) ) {
2546                 msg->cm_fields['F'] = strdup(CC->cs_inet_email);
2547         }
2548
2549         if (subject != NULL) {
2550                 striplt(subject);
2551                 if (strlen(subject) > 0) {
2552                         msg->cm_fields['U'] = strdup(subject);
2553                 }
2554         }
2555
2556         if (preformatted_text != NULL) {
2557                 msg->cm_fields['M'] = preformatted_text;
2558         }
2559         else {
2560                 msg->cm_fields['M'] = CtdlReadMessageBody("000",
2561                                         config.c_maxmsglen, NULL, 0);
2562         }
2563
2564         return(msg);
2565 }
2566
2567
2568 /*
2569  * Check to see whether we have permission to post a message in the current
2570  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
2571  * returns 0 on success.
2572  */
2573 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, size_t n) {
2574
2575         if (!(CC->logged_in)) {
2576                 snprintf(errmsgbuf, n, "Not logged in.");
2577                 return (ERROR + NOT_LOGGED_IN);
2578         }
2579
2580         if ((CC->user.axlevel < 2)
2581             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
2582                 snprintf(errmsgbuf, n, "Need to be validated to enter "
2583                                 "(except in %s> to sysop)", MAILROOM);
2584                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2585         }
2586
2587         if ((CC->user.axlevel < 4)
2588            && (CC->room.QRflags & QR_NETWORK)) {
2589                 snprintf(errmsgbuf, n, "Need net privileges to enter here.");
2590                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2591         }
2592
2593         if ((CC->user.axlevel < 6)
2594            && (CC->room.QRflags & QR_READONLY)) {
2595                 snprintf(errmsgbuf, n, "Sorry, this is a read-only room.");
2596                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2597         }
2598
2599         strcpy(errmsgbuf, "Ok");
2600         return(0);
2601 }
2602
2603
2604 /*
2605  * Check to see if the specified user has Internet mail permission
2606  * (returns nonzero if permission is granted)
2607  */
2608 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
2609
2610         /* Do not allow twits to send Internet mail */
2611         if (who->axlevel <= 2) return(0);
2612
2613         /* Globally enabled? */
2614         if (config.c_restrict == 0) return(1);
2615
2616         /* User flagged ok? */
2617         if (who->flags & US_INTERNET) return(2);
2618
2619         /* Aide level access? */
2620         if (who->axlevel >= 6) return(3);
2621
2622         /* No mail for you! */
2623         return(0);
2624 }
2625
2626
2627
2628 /*
2629  * Validate recipients, count delivery types and errors, and handle aliasing
2630  * FIXME check for dupes!!!!!
2631  */
2632 struct recptypes *validate_recipients(char *recipients) {
2633         struct recptypes *ret;
2634         char this_recp[SIZ];
2635         char this_recp_cooked[SIZ];
2636         char append[SIZ];
2637         int num_recps;
2638         int i, j;
2639         int mailtype;
2640         int invalid;
2641         struct ctdluser tempUS;
2642         struct ctdlroom tempQR;
2643
2644         /* Initialize */
2645         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
2646         if (ret == NULL) return(NULL);
2647         memset(ret, 0, sizeof(struct recptypes));
2648
2649         ret->num_local = 0;
2650         ret->num_internet = 0;
2651         ret->num_ignet = 0;
2652         ret->num_error = 0;
2653         ret->num_room = 0;
2654
2655         if (recipients == NULL) {
2656                 num_recps = 0;
2657         }
2658         else if (strlen(recipients) == 0) {
2659                 num_recps = 0;
2660         }
2661         else {
2662                 /* Change all valid separator characters to commas */
2663                 for (i=0; i<strlen(recipients); ++i) {
2664                         if ((recipients[i] == ';') || (recipients[i] == '|')) {
2665                                 recipients[i] = ',';
2666                         }
2667                 }
2668
2669                 /* Count 'em up */
2670                 num_recps = num_tokens(recipients, ',');
2671         }
2672
2673         if (num_recps > 0) for (i=0; i<num_recps; ++i) {
2674                 extract_token(this_recp, recipients, i, ',', sizeof this_recp);
2675                 striplt(this_recp);
2676                 lprintf(CTDL_DEBUG, "Evaluating recipient #%d <%s>\n", i, this_recp);
2677                 mailtype = alias(this_recp);
2678                 mailtype = alias(this_recp);
2679                 mailtype = alias(this_recp);
2680                 for (j=0; j<=strlen(this_recp); ++j) {
2681                         if (this_recp[j]=='_') {
2682                                 this_recp_cooked[j] = ' ';
2683                         }
2684                         else {
2685                                 this_recp_cooked[j] = this_recp[j];
2686                         }
2687                 }
2688                 invalid = 0;
2689                 switch(mailtype) {
2690                         case MES_LOCAL:
2691                                 if (!strcasecmp(this_recp, "sysop")) {
2692                                         ++ret->num_room;
2693                                         strcpy(this_recp, config.c_aideroom);
2694                                         if (strlen(ret->recp_room) > 0) {
2695                                                 strcat(ret->recp_room, "|");
2696                                         }
2697                                         strcat(ret->recp_room, this_recp);
2698                                 }
2699                                 else if (getuser(&tempUS, this_recp) == 0) {
2700                                         ++ret->num_local;
2701                                         strcpy(this_recp, tempUS.fullname);
2702                                         if (strlen(ret->recp_local) > 0) {
2703                                                 strcat(ret->recp_local, "|");
2704                                         }
2705                                         strcat(ret->recp_local, this_recp);
2706                                 }
2707                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
2708                                         ++ret->num_local;
2709                                         strcpy(this_recp, tempUS.fullname);
2710                                         if (strlen(ret->recp_local) > 0) {
2711                                                 strcat(ret->recp_local, "|");
2712                                         }
2713                                         strcat(ret->recp_local, this_recp);
2714                                 }
2715                                 else if ( (!strncasecmp(this_recp, "room_", 5))
2716                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
2717                                         ++ret->num_room;
2718                                         if (strlen(ret->recp_room) > 0) {
2719                                                 strcat(ret->recp_room, "|");
2720                                         }
2721                                         strcat(ret->recp_room, &this_recp_cooked[5]);
2722                                 }
2723                                 else {
2724                                         ++ret->num_error;
2725                                         invalid = 1;
2726                                 }
2727                                 break;
2728                         case MES_INTERNET:
2729                                 /* Yes, you're reading this correctly: if the target
2730                                  * domain points back to the local system or an attached
2731                                  * Citadel directory, the address is invalid.  That's
2732                                  * because if the address were valid, we would have
2733                                  * already translated it to a local address by now.
2734                                  */
2735                                 if (IsDirectory(this_recp)) {
2736                                         ++ret->num_error;
2737                                         invalid = 1;
2738                                 }
2739                                 else {
2740                                         ++ret->num_internet;
2741                                         if (strlen(ret->recp_internet) > 0) {
2742                                                 strcat(ret->recp_internet, "|");
2743                                         }
2744                                         strcat(ret->recp_internet, this_recp);
2745                                 }
2746                                 break;
2747                         case MES_IGNET:
2748                                 ++ret->num_ignet;
2749                                 if (strlen(ret->recp_ignet) > 0) {
2750                                         strcat(ret->recp_ignet, "|");
2751                                 }
2752                                 strcat(ret->recp_ignet, this_recp);
2753                                 break;
2754                         case MES_ERROR:
2755                                 ++ret->num_error;
2756                                 invalid = 1;
2757                                 break;
2758                 }
2759                 if (invalid) {
2760                         if (strlen(ret->errormsg) == 0) {
2761                                 snprintf(append, sizeof append,
2762                                          "Invalid recipient: %s",
2763                                          this_recp);
2764                         }
2765                         else {
2766                                 snprintf(append, sizeof append,
2767                                          ", %s", this_recp);
2768                         }
2769                         if ( (strlen(ret->errormsg) + strlen(append)) < SIZ) {
2770                                 strcat(ret->errormsg, append);
2771                         }
2772                 }
2773                 else {
2774                         if (strlen(ret->display_recp) == 0) {
2775                                 strcpy(append, this_recp);
2776                         }
2777                         else {
2778                                 snprintf(append, sizeof append, ", %s",
2779                                          this_recp);
2780                         }
2781                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
2782                                 strcat(ret->display_recp, append);
2783                         }
2784                 }
2785         }
2786
2787         if ((ret->num_local + ret->num_internet + ret->num_ignet +
2788            ret->num_room + ret->num_error) == 0) {
2789                 ++ret->num_error;
2790                 strcpy(ret->errormsg, "No recipients specified.");
2791         }
2792
2793         lprintf(CTDL_DEBUG, "validate_recipients()\n");
2794         lprintf(CTDL_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
2795         lprintf(CTDL_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
2796         lprintf(CTDL_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
2797         lprintf(CTDL_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
2798         lprintf(CTDL_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
2799
2800         return(ret);
2801 }
2802
2803
2804
2805 /*
2806  * message entry  -  mode 0 (normal)
2807  */
2808 void cmd_ent0(char *entargs)
2809 {
2810         int post = 0;
2811         char recp[SIZ];
2812         char masquerade_as[SIZ];
2813         int anon_flag = 0;
2814         int format_type = 0;
2815         char newusername[SIZ];
2816         struct CtdlMessage *msg;
2817         int anonymous = 0;
2818         char errmsg[SIZ];
2819         int err = 0;
2820         struct recptypes *valid = NULL;
2821         char subject[SIZ];
2822         int do_confirm = 0;
2823         long msgnum;
2824
2825         unbuffer_output();
2826
2827         post = extract_int(entargs, 0);
2828         extract_token(recp, entargs, 1, '|', sizeof recp);
2829         anon_flag = extract_int(entargs, 2);
2830         format_type = extract_int(entargs, 3);
2831         extract_token(subject, entargs, 4, '|', sizeof subject);
2832         do_confirm = extract_int(entargs, 6);
2833
2834         /* first check to make sure the request is valid. */
2835
2836         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg);
2837         if (err) {
2838                 cprintf("%d %s\n", err, errmsg);
2839                 return;
2840         }
2841
2842         /* Check some other permission type things. */
2843
2844         if (post == 2) {
2845                 if (CC->user.axlevel < 6) {
2846                         cprintf("%d You don't have permission to masquerade.\n",
2847                                 ERROR + HIGHER_ACCESS_REQUIRED);
2848                         return;
2849                 }
2850                 extract_token(newusername, entargs, 5, '|', sizeof newusername);
2851                 memset(CC->fake_postname, 0, sizeof(CC->fake_postname) );
2852                 safestrncpy(CC->fake_postname, newusername,
2853                         sizeof(CC->fake_postname) );
2854                 cprintf("%d ok\n", CIT_OK);
2855                 return;
2856         }
2857         CC->cs_flags |= CS_POSTING;
2858
2859         /* In the Mail> room we have to behave a little differently --
2860          * make sure the user has specified at least one recipient.  Then
2861          * validate the recipient(s).
2862          */
2863         if ( (CC->room.QRflags & QR_MAILBOX)
2864            && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) ) {
2865
2866                 if (CC->user.axlevel < 2) {
2867                         strcpy(recp, "sysop");
2868                 }
2869
2870                 valid = validate_recipients(recp);
2871                 if (valid->num_error > 0) {
2872                         cprintf("%d %s\n",
2873                                 ERROR + NO_SUCH_USER, valid->errormsg);
2874                         free(valid);
2875                         return;
2876                 }
2877                 if (valid->num_internet > 0) {
2878                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
2879                                 cprintf("%d You do not have permission "
2880                                         "to send Internet mail.\n",
2881                                         ERROR + HIGHER_ACCESS_REQUIRED);
2882                                 free(valid);
2883                                 return;
2884                         }
2885                 }
2886
2887                 if ( ( (valid->num_internet + valid->num_ignet) > 0)
2888                    && (CC->user.axlevel < 4) ) {
2889                         cprintf("%d Higher access required for network mail.\n",
2890                                 ERROR + HIGHER_ACCESS_REQUIRED);
2891                         free(valid);
2892                         return;
2893                 }
2894         
2895                 if ((RESTRICT_INTERNET == 1) && (valid->num_internet > 0)
2896                     && ((CC->user.flags & US_INTERNET) == 0)
2897                     && (!CC->internal_pgm)) {
2898                         cprintf("%d You don't have access to Internet mail.\n",
2899                                 ERROR + HIGHER_ACCESS_REQUIRED);
2900                         free(valid);
2901                         return;
2902                 }
2903
2904         }
2905
2906         /* Is this a room which has anonymous-only or anonymous-option? */
2907         anonymous = MES_NORMAL;
2908         if (CC->room.QRflags & QR_ANONONLY) {
2909                 anonymous = MES_ANONONLY;
2910         }
2911         if (CC->room.QRflags & QR_ANONOPT) {
2912                 if (anon_flag == 1) {   /* only if the user requested it */
2913                         anonymous = MES_ANONOPT;
2914                 }
2915         }
2916
2917         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
2918                 recp[0] = 0;
2919         }
2920
2921         /* If we're only checking the validity of the request, return
2922          * success without creating the message.
2923          */
2924         if (post == 0) {
2925                 cprintf("%d %s\n", CIT_OK,
2926                         ((valid != NULL) ? valid->display_recp : "") );
2927                 free(valid);
2928                 return;
2929         }
2930
2931         /* Handle author masquerading */
2932         if (CC->fake_postname[0]) {
2933                 strcpy(masquerade_as, CC->fake_postname);
2934         }
2935         else if (CC->fake_username[0]) {
2936                 strcpy(masquerade_as, CC->fake_username);
2937         }
2938         else {
2939                 strcpy(masquerade_as, "");
2940         }
2941
2942         /* Read in the message from the client. */
2943         if (do_confirm) {
2944                 cprintf("%d send message\n", START_CHAT_MODE);
2945         } else {
2946                 cprintf("%d send message\n", SEND_LISTING);
2947         }
2948         msg = CtdlMakeMessage(&CC->user, recp,
2949                 CC->room.QRname, anonymous, format_type,
2950                 masquerade_as, subject, NULL);
2951
2952         if (msg != NULL) {
2953                 msgnum = CtdlSubmitMsg(msg, valid, "");
2954
2955                 if (do_confirm) {
2956                         cprintf("%ld\n", msgnum);
2957                         if (msgnum >= 0L) {
2958                                 cprintf("Message accepted.\n");
2959                         }
2960                         else {
2961                                 cprintf("Internal error.\n");
2962                         }
2963                         if (msg->cm_fields['E'] != NULL) {
2964                                 cprintf("%s\n", msg->cm_fields['E']);
2965                         } else {
2966                                 cprintf("\n");
2967                         }
2968                         cprintf("000\n");
2969                 }
2970
2971                 CtdlFreeMessage(msg);
2972         }
2973         CC->fake_postname[0] = '\0';
2974         free(valid);
2975         return;
2976 }
2977
2978
2979
2980 /*
2981  * API function to delete messages which match a set of criteria
2982  * (returns the actual number of messages deleted)
2983  */
2984 int CtdlDeleteMessages(char *room_name,         /* which room */
2985                         long dmsgnum,           /* or "0" for any */
2986                         char *content_type,     /* or "" for any */
2987                         int deferred            /* let TDAP sweep it later */
2988 )
2989 {
2990
2991         struct ctdlroom qrbuf;
2992         struct cdbdata *cdbfr;
2993         long *msglist = NULL;
2994         long *dellist = NULL;
2995         int num_msgs = 0;
2996         int i;
2997         int num_deleted = 0;
2998         int delete_this;
2999         struct MetaData smi;
3000
3001         lprintf(CTDL_DEBUG, "CtdlDeleteMessages(%s, %ld, %s, %d)\n",
3002                 room_name, dmsgnum, content_type, deferred);
3003
3004         /* get room record, obtaining a lock... */
3005         if (lgetroom(&qrbuf, room_name) != 0) {
3006                 lprintf(CTDL_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
3007                         room_name);
3008                 return (0);     /* room not found */
3009         }
3010         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
3011
3012         if (cdbfr != NULL) {
3013                 msglist = malloc(cdbfr->len);
3014                 dellist = malloc(cdbfr->len);
3015                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
3016                 num_msgs = cdbfr->len / sizeof(long);
3017                 cdb_free(cdbfr);
3018         }
3019         if (num_msgs > 0) {
3020                 for (i = 0; i < num_msgs; ++i) {
3021                         delete_this = 0x00;
3022
3023                         /* Set/clear a bit for each criterion */
3024
3025                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
3026                                 delete_this |= 0x01;
3027                         }
3028                         if (strlen(content_type) == 0) {
3029                                 delete_this |= 0x02;
3030                         } else {
3031                                 GetMetaData(&smi, msglist[i]);
3032                                 if (!strcasecmp(smi.meta_content_type,
3033                                                 content_type)) {
3034                                         delete_this |= 0x02;
3035                                 }
3036                         }
3037
3038                         /* Delete message only if all bits are set */
3039                         if (delete_this == 0x03) {
3040                                 dellist[num_deleted++] = msglist[i];
3041                                 msglist[i] = 0L;
3042                         }
3043                 }
3044
3045                 num_msgs = sort_msglist(msglist, num_msgs);
3046                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
3047                           msglist, (int)(num_msgs * sizeof(long)));
3048
3049                 qrbuf.QRhighest = msglist[num_msgs - 1];
3050         }
3051         lputroom(&qrbuf);
3052
3053         /*
3054          * If the delete operation is "deferred" (and technically, any delete
3055          * operation not performed by THE DREADED AUTO-PURGER ought to be
3056          * a deferred delete) then we save a pointer to the message in the
3057          * DELETED_MSGS_ROOM.  This will cause the reference count to remain
3058          * at least 1, which will save the user from having to synchronously
3059          * wait for various disk-intensive operations to complete.
3060          */
3061         if ( (deferred) && (num_deleted) ) {
3062                 for (i=0; i<num_deleted; ++i) {
3063                         CtdlCopyMsgToRoom(dellist[i], DELETED_MSGS_ROOM);
3064                 }
3065         }
3066
3067         /* Go through the messages we pulled out of the index, and decrement
3068          * their reference counts by 1.  If this is the only room the message
3069          * was in, the reference count will reach zero and the message will
3070          * automatically be deleted from the database.  We do this in a
3071          * separate pass because there might be plug-in hooks getting called,
3072          * and we don't want that happening during an S_ROOMS critical
3073          * section.
3074          */
3075         if (num_deleted) for (i=0; i<num_deleted; ++i) {
3076                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
3077                 AdjRefCount(dellist[i], -1);
3078         }
3079
3080         /* Now free the memory we used, and go away. */
3081         if (msglist != NULL) free(msglist);
3082         if (dellist != NULL) free(dellist);
3083         lprintf(CTDL_DEBUG, "%d message(s) deleted.\n", num_deleted);
3084         return (num_deleted);
3085 }
3086
3087
3088
3089 /*
3090  * Check whether the current user has permission to delete messages from
3091  * the current room (returns 1 for yes, 0 for no)
3092  */
3093 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
3094         getuser(&CC->user, CC->curr_user);
3095         if ((CC->user.axlevel < 6)
3096             && (CC->user.usernum != CC->room.QRroomaide)
3097             && ((CC->room.QRflags & QR_MAILBOX) == 0)
3098             && (!(CC->internal_pgm))) {
3099                 return(0);
3100         }
3101         return(1);
3102 }
3103
3104
3105
3106 /*
3107  * Delete message from current room
3108  */
3109 void cmd_dele(char *delstr)
3110 {
3111         long delnum;
3112         int num_deleted;
3113
3114         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
3115                 cprintf("%d Higher access required.\n",
3116                         ERROR + HIGHER_ACCESS_REQUIRED);
3117                 return;
3118         }
3119         delnum = extract_long(delstr, 0);
3120
3121         num_deleted = CtdlDeleteMessages(CC->room.QRname, delnum, "", 1);
3122
3123         if (num_deleted) {
3124                 cprintf("%d %d message%s deleted.\n", CIT_OK,
3125                         num_deleted, ((num_deleted != 1) ? "s" : ""));
3126         } else {
3127                 cprintf("%d Message %ld not found.\n", ERROR + MESSAGE_NOT_FOUND, delnum);
3128         }
3129 }
3130
3131
3132 /*
3133  * Back end API function for moves and deletes
3134  */
3135 int CtdlCopyMsgToRoom(long msgnum, char *dest) {
3136         int err;
3137
3138         err = CtdlSaveMsgPointerInRoom(dest, msgnum,
3139                 (SM_VERIFY_GOODNESS | SM_DO_REPL_CHECK) );
3140         if (err != 0) return(err);
3141
3142         return(0);
3143 }
3144
3145
3146
3147 /*
3148  * move or copy a message to another room
3149  */
3150 void cmd_move(char *args)
3151 {
3152         long num;
3153         char targ[ROOMNAMELEN];
3154         struct ctdlroom qtemp;
3155         int err;
3156         int is_copy = 0;
3157         int ra;
3158         int permit = 0;
3159
3160         num = extract_long(args, 0);
3161         extract_token(targ, args, 1, '|', sizeof targ);
3162         targ[ROOMNAMELEN - 1] = 0;
3163         is_copy = extract_int(args, 2);
3164
3165         if (getroom(&qtemp, targ) != 0) {
3166                 cprintf("%d '%s' does not exist.\n",
3167                         ERROR + ROOM_NOT_FOUND, targ);
3168                 return;
3169         }
3170
3171         getuser(&CC->user, CC->curr_user);
3172         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
3173
3174         /* Check for permission to perform this operation.
3175          * Remember: "CC->room" is source, "qtemp" is target.
3176          */
3177         permit = 0;
3178
3179         /* Aides can move/copy */
3180         if (CC->user.axlevel >= 6) permit = 1;
3181
3182         /* Room aides can move/copy */
3183         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
3184
3185         /* Permit move/copy from personal rooms */
3186         if ((CC->room.QRflags & QR_MAILBOX)
3187            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3188
3189         /* Permit only copy from public to personal room */
3190         if ( (is_copy)
3191            && (!(CC->room.QRflags & QR_MAILBOX))
3192            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3193
3194         /* User must have access to target room */
3195         if (!(ra & UA_KNOWN))  permit = 0;
3196
3197         if (!permit) {
3198                 cprintf("%d Higher access required.\n",
3199                         ERROR + HIGHER_ACCESS_REQUIRED);
3200                 return;
3201         }
3202
3203         err = CtdlCopyMsgToRoom(num, targ);
3204         if (err != 0) {
3205                 cprintf("%d Cannot store message in %s: error %d\n",
3206                         err, targ, err);
3207                 return;
3208         }
3209
3210         /* Now delete the message from the source room,
3211          * if this is a 'move' rather than a 'copy' operation.
3212          */
3213         if (is_copy == 0) {
3214                 CtdlDeleteMessages(CC->room.QRname, num, "", 0);
3215         }
3216
3217         cprintf("%d Message %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
3218 }
3219
3220
3221
3222 /*
3223  * GetMetaData()  -  Get the supplementary record for a message
3224  */
3225 void GetMetaData(struct MetaData *smibuf, long msgnum)
3226 {
3227
3228         struct cdbdata *cdbsmi;
3229         long TheIndex;
3230
3231         memset(smibuf, 0, sizeof(struct MetaData));
3232         smibuf->meta_msgnum = msgnum;
3233         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
3234
3235         /* Use the negative of the message number for its supp record index */
3236         TheIndex = (0L - msgnum);
3237
3238         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
3239         if (cdbsmi == NULL) {
3240                 return;         /* record not found; go with defaults */
3241         }
3242         memcpy(smibuf, cdbsmi->ptr,
3243                ((cdbsmi->len > sizeof(struct MetaData)) ?
3244                 sizeof(struct MetaData) : cdbsmi->len));
3245         cdb_free(cdbsmi);
3246         return;
3247 }
3248
3249
3250 /*
3251  * PutMetaData()  -  (re)write supplementary record for a message
3252  */
3253 void PutMetaData(struct MetaData *smibuf)
3254 {
3255         long TheIndex;
3256
3257         /* Use the negative of the message number for the metadata db index */
3258         TheIndex = (0L - smibuf->meta_msgnum);
3259
3260         lprintf(CTDL_DEBUG, "PutMetaData(%ld) - ref count is %d\n",
3261                 smibuf->meta_msgnum, smibuf->meta_refcount);
3262
3263         cdb_store(CDB_MSGMAIN,
3264                   &TheIndex, (int)sizeof(long),
3265                   smibuf, (int)sizeof(struct MetaData));
3266
3267 }
3268
3269 /*
3270  * AdjRefCount  -  change the reference count for a message;
3271  *               delete the message if it reaches zero
3272  */
3273 void AdjRefCount(long msgnum, int incr)
3274 {
3275
3276         struct MetaData smi;
3277         long delnum;
3278
3279         /* This is a *tight* critical section; please keep it that way, as
3280          * it may get called while nested in other critical sections.  
3281          * Complicating this any further will surely cause deadlock!
3282          */
3283         begin_critical_section(S_SUPPMSGMAIN);
3284         GetMetaData(&smi, msgnum);
3285         smi.meta_refcount += incr;
3286         PutMetaData(&smi);
3287         end_critical_section(S_SUPPMSGMAIN);
3288         lprintf(CTDL_DEBUG, "msg %ld ref count incr %d, is now %d\n",
3289                 msgnum, incr, smi.meta_refcount);
3290
3291         /* If the reference count is now zero, delete the message
3292          * (and its supplementary record as well).
3293          * FIXME ... defer this so it doesn't keep the user waiting.
3294          */
3295         if (smi.meta_refcount == 0) {
3296                 lprintf(CTDL_DEBUG, "Deleting message <%ld>\n", msgnum);
3297
3298                 /* Remove from fulltext index */
3299                 if (config.c_enable_fulltext) {
3300                         ft_index_message(msgnum, 0);
3301                 }
3302
3303                 /* Remove from message base */
3304                 delnum = msgnum;
3305                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3306                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
3307
3308                 /* Remove metadata record */
3309                 delnum = (0L - msgnum);
3310                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3311         }
3312 }
3313
3314 /*
3315  * Write a generic object to this room
3316  *
3317  * Note: this could be much more efficient.  Right now we use two temporary
3318  * files, and still pull the message into memory as with all others.
3319  */
3320 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
3321                         char *content_type,     /* MIME type of this object */
3322                         char *tempfilename,     /* Where to fetch it from */
3323                         struct ctdluser *is_mailbox,    /* Mailbox room? */
3324                         int is_binary,          /* Is encoding necessary? */
3325                         int is_unique,          /* Del others of this type? */
3326                         unsigned int flags      /* Internal save flags */
3327                         )
3328 {
3329
3330         FILE *fp;
3331         struct ctdlroom qrbuf;
3332         char roomname[ROOMNAMELEN];
3333         struct CtdlMessage *msg;
3334
3335         char *raw_message = NULL;
3336         char *encoded_message = NULL;
3337         off_t raw_length = 0;
3338
3339         if (is_mailbox != NULL)
3340                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
3341         else
3342                 safestrncpy(roomname, req_room, sizeof(roomname));
3343         lprintf(CTDL_DEBUG, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
3344
3345
3346         fp = fopen(tempfilename, "rb");
3347         if (fp == NULL) {
3348                 lprintf(CTDL_CRIT, "Cannot open %s: %s\n",
3349                         tempfilename, strerror(errno));
3350                 return;
3351         }
3352         fseek(fp, 0L, SEEK_END);
3353         raw_length = ftell(fp);
3354         rewind(fp);
3355         lprintf(CTDL_DEBUG, "Raw length is %ld\n", (long)raw_length);
3356
3357         raw_message = malloc((size_t)raw_length + 2);
3358         fread(raw_message, (size_t)raw_length, 1, fp);
3359         fclose(fp);
3360
3361         if (is_binary) {
3362                 encoded_message = malloc((size_t)
3363                         (((raw_length * 134) / 100) + 4096 ) );
3364         }
3365         else {
3366                 encoded_message = malloc((size_t)(raw_length + 4096));
3367         }
3368
3369         sprintf(encoded_message, "Content-type: %s\n", content_type);
3370
3371         if (is_binary) {
3372                 sprintf(&encoded_message[strlen(encoded_message)],
3373                         "Content-transfer-encoding: base64\n\n"
3374                 );
3375         }
3376         else {
3377                 sprintf(&encoded_message[strlen(encoded_message)],
3378                         "Content-transfer-encoding: 7bit\n\n"
3379                 );
3380         }
3381
3382         if (is_binary) {
3383                 CtdlEncodeBase64(
3384                         &encoded_message[strlen(encoded_message)],
3385                         raw_message,
3386                         (int)raw_length
3387                 );
3388         }
3389         else {
3390                 raw_message[raw_length] = 0;
3391                 memcpy(
3392                         &encoded_message[strlen(encoded_message)],
3393                         raw_message,
3394                         (int)(raw_length+1)
3395                 );
3396         }
3397
3398         free(raw_message);
3399
3400         lprintf(CTDL_DEBUG, "Allocating\n");
3401         msg = malloc(sizeof(struct CtdlMessage));
3402         memset(msg, 0, sizeof(struct CtdlMessage));
3403         msg->cm_magic = CTDLMESSAGE_MAGIC;
3404         msg->cm_anon_type = MES_NORMAL;
3405         msg->cm_format_type = 4;
3406         msg->cm_fields['A'] = strdup(CC->user.fullname);
3407         msg->cm_fields['O'] = strdup(req_room);
3408         msg->cm_fields['N'] = strdup(config.c_nodename);
3409         msg->cm_fields['H'] = strdup(config.c_humannode);
3410         msg->cm_flags = flags;
3411         
3412         msg->cm_fields['M'] = encoded_message;
3413
3414         /* Create the requested room if we have to. */
3415         if (getroom(&qrbuf, roomname) != 0) {
3416                 create_room(roomname, 
3417                         ( (is_mailbox != NULL) ? 5 : 3 ),
3418                         "", 0, 1, 0, VIEW_BBS);
3419         }
3420         /* If the caller specified this object as unique, delete all
3421          * other objects of this type that are currently in the room.
3422          */
3423         if (is_unique) {
3424                 lprintf(CTDL_DEBUG, "Deleted %d other msgs of this type\n",
3425                         CtdlDeleteMessages(roomname, 0L, content_type, 0)
3426                 );
3427         }
3428         /* Now write the data */
3429         CtdlSubmitMsg(msg, NULL, roomname);
3430         CtdlFreeMessage(msg);
3431 }
3432
3433
3434
3435
3436
3437
3438 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
3439         config_msgnum = msgnum;
3440 }
3441
3442
3443 char *CtdlGetSysConfig(char *sysconfname) {
3444         char hold_rm[ROOMNAMELEN];
3445         long msgnum;
3446         char *conf;
3447         struct CtdlMessage *msg;
3448         char buf[SIZ];
3449         
3450         strcpy(hold_rm, CC->room.QRname);
3451         if (getroom(&CC->room, SYSCONFIGROOM) != 0) {
3452                 getroom(&CC->room, hold_rm);
3453                 return NULL;
3454         }
3455
3456
3457         /* We want the last (and probably only) config in this room */
3458         begin_critical_section(S_CONFIG);
3459         config_msgnum = (-1L);
3460         CtdlForEachMessage(MSGS_LAST, 1, sysconfname, NULL,
3461                 CtdlGetSysConfigBackend, NULL);
3462         msgnum = config_msgnum;
3463         end_critical_section(S_CONFIG);
3464
3465         if (msgnum < 0L) {
3466                 conf = NULL;
3467         }
3468         else {
3469                 msg = CtdlFetchMessage(msgnum, 1);
3470                 if (msg != NULL) {
3471                         conf = strdup(msg->cm_fields['M']);
3472                         CtdlFreeMessage(msg);
3473                 }
3474                 else {
3475                         conf = NULL;
3476                 }
3477         }
3478
3479         getroom(&CC->room, hold_rm);
3480
3481         if (conf != NULL) do {
3482                 extract_token(buf, conf, 0, '\n', sizeof buf);
3483                 strcpy(conf, &conf[strlen(buf)+1]);
3484         } while ( (strlen(conf)>0) && (strlen(buf)>0) );
3485
3486         return(conf);
3487 }
3488
3489 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
3490         char temp[PATH_MAX];
3491         FILE *fp;
3492
3493         strcpy(temp, tmpnam(NULL));
3494
3495         fp = fopen(temp, "w");
3496         if (fp == NULL) return;
3497         fprintf(fp, "%s", sysconfdata);
3498         fclose(fp);
3499
3500         /* this handy API function does all the work for us */
3501         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
3502         unlink(temp);
3503 }
3504
3505
3506 /*
3507  * Determine whether a given Internet address belongs to the current user
3508  */
3509 int CtdlIsMe(char *addr, int addr_buf_len)
3510 {
3511         struct recptypes *recp;
3512         int i;
3513
3514         recp = validate_recipients(addr);
3515         if (recp == NULL) return(0);
3516
3517         if (recp->num_local == 0) {
3518                 free(recp);
3519                 return(0);
3520         }
3521
3522         for (i=0; i<recp->num_local; ++i) {
3523                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
3524                 if (!strcasecmp(addr, CC->user.fullname)) {
3525                         free(recp);
3526                         return(1);
3527                 }
3528         }
3529
3530         free(recp);
3531         return(0);
3532 }
3533
3534
3535 /*
3536  * Citadel protocol command to do the same
3537  */
3538 void cmd_isme(char *argbuf) {
3539         char addr[256];
3540
3541         if (CtdlAccessCheck(ac_logged_in)) return;
3542         extract_token(addr, argbuf, 0, '|', sizeof addr);
3543
3544         if (CtdlIsMe(addr, sizeof addr)) {
3545                 cprintf("%d %s\n", CIT_OK, addr);
3546         }
3547         else {
3548                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
3549         }
3550
3551 }