50aeaa1ae5766316e416e66933df84867b382526
[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         "cccc",
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 == 'Y') {
1433                                         cprintf("CC: %s%s", mptr, nl);
1434                                 }
1435                                 else if (i == 'U') {
1436                                         cprintf("Subject: %s%s", mptr, nl);
1437                                         subject_found = 1;
1438                                 }
1439                                 else if (i == 'I')
1440                                         safestrncpy(mid, mptr, sizeof mid);
1441                                 else if (i == 'H')
1442                                         safestrncpy(lnode, mptr, sizeof lnode);
1443                                 else if (i == 'F')
1444                                         safestrncpy(fuser, mptr, sizeof fuser);
1445                                 /* else if (i == 'O')
1446                                         cprintf("X-Citadel-Room: %s%s",
1447                                                 mptr, nl); */
1448                                 else if (i == 'N')
1449                                         safestrncpy(snode, mptr, sizeof snode);
1450                                 else if (i == 'R')
1451                                         cprintf("To: %s%s", mptr, nl);
1452                                 else if (i == 'T') {
1453                                         datestring(datestamp, sizeof datestamp,
1454                                                 atol(mptr), DATESTRING_RFC822);
1455                                         cprintf("Date: %s%s", datestamp, nl);
1456                                 }
1457                         }
1458                 }
1459                 if (subject_found == 0) {
1460                         cprintf("Subject: (no subject)%s", nl);
1461                 }
1462         }
1463
1464         for (i=0; i<strlen(suser); ++i) {
1465                 suser[i] = tolower(suser[i]);
1466                 if (!isalnum(suser[i])) suser[i]='_';
1467         }
1468
1469         if (mode == MT_RFC822) {
1470                 if (!strcasecmp(snode, NODENAME)) {
1471                         safestrncpy(snode, FQDN, sizeof snode);
1472                 }
1473
1474                 /* Construct a fun message id */
1475                 cprintf("Message-ID: <%s", mid);
1476                 if (strchr(mid, '@')==NULL) {
1477                         cprintf("@%s", snode);
1478                 }
1479                 cprintf(">%s", nl);
1480
1481                 if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONONLY)) {
1482                         // cprintf("From: x@x.org (----)%s", nl);
1483                         cprintf("From: \"----\" <x@x.org>%s", nl);
1484                 }
1485                 else if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONOPT)) {
1486                         // cprintf("From: x@x.org (anonymous)%s", nl);
1487                         cprintf("From: \"anonymous\" <x@x.org>%s", nl);
1488                 }
1489                 else if (strlen(fuser) > 0) {
1490                         // cprintf("From: %s (%s)%s", fuser, luser, nl);
1491                         cprintf("From: \"%s\" <%s>%s", luser, fuser, nl);
1492                 }
1493                 else {
1494                         // cprintf("From: %s@%s (%s)%s", suser, snode, luser, nl);
1495                         cprintf("From: \"%s\" <%s@%s>%s", luser, suser, snode, nl);
1496                 }
1497
1498                 cprintf("Organization: %s%s", lnode, nl);
1499
1500                 /* Blank line signifying RFC822 end-of-headers */
1501                 if (TheMessage->cm_format_type != FMT_RFC822) {
1502                         cprintf("%s", nl);
1503                 }
1504         }
1505
1506         /* end header processing loop ... at this point, we're in the text */
1507 START_TEXT:
1508         if (headers_only == HEADERS_FAST) goto DONE;
1509         mptr = TheMessage->cm_fields['M'];
1510
1511         /* Tell the client about the MIME parts in this message */
1512         if (TheMessage->cm_format_type == FMT_RFC822) {
1513                 if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1514                         mime_parser(mptr, NULL,
1515                                 (do_proto ? *list_this_part : NULL),
1516                                 (do_proto ? *list_this_pref : NULL),
1517                                 (do_proto ? *list_this_suff : NULL),
1518                                 NULL, 0);
1519                 }
1520                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
1521                         /* FIXME ... we have to put some code in here to avoid
1522                          * printing duplicate header information when both
1523                          * Citadel and RFC822 headers exist.  Preference should
1524                          * probably be given to the RFC822 headers.
1525                          */
1526                         int done_rfc822_hdrs = 0;
1527                         while (ch=*(mptr++), ch!=0) {
1528                                 if (ch==13) {
1529                                         /* do nothing */
1530                                 }
1531                                 else if (ch==10) {
1532                                         if (!done_rfc822_hdrs) {
1533                                                 if (headers_only != HEADERS_NONE) {
1534                                                         cprintf("%s", nl);
1535                                                 }
1536                                         }
1537                                         else {
1538                                                 if (headers_only != HEADERS_ONLY) {
1539                                                         cprintf("%s", nl);
1540                                                 }
1541                                         }
1542                                         if ((*(mptr) == 13) || (*(mptr) == 10)) {
1543                                                 done_rfc822_hdrs = 1;
1544                                         }
1545                                 }
1546                                 else {
1547                                         if (done_rfc822_hdrs) {
1548                                                 if (headers_only != HEADERS_NONE) {
1549                                                         cprintf("%c", ch);
1550                                                 }
1551                                         }
1552                                         else {
1553                                                 if (headers_only != HEADERS_ONLY) {
1554                                                         cprintf("%c", ch);
1555                                                 }
1556                                         }
1557                                         if ((*mptr == 13) || (*mptr == 10)) {
1558                                                 done_rfc822_hdrs = 1;
1559                                         }
1560                                 }
1561                         }
1562                         goto DONE;
1563                 }
1564         }
1565
1566         if (headers_only == HEADERS_ONLY) {
1567                 goto DONE;
1568         }
1569
1570         /* signify start of msg text */
1571         if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1572                 if (do_proto) cprintf("text\n");
1573         }
1574
1575         /* If the format type on disk is 1 (fixed-format), then we want
1576          * everything to be output completely literally ... regardless of
1577          * what message transfer format is in use.
1578          */
1579         if (TheMessage->cm_format_type == FMT_FIXED) {
1580                 if (mode == MT_MIME) {
1581                         cprintf("Content-type: text/plain\n\n");
1582                 }
1583                 strcpy(buf, "");
1584                 while (ch = *mptr++, ch > 0) {
1585                         if (ch == 13)
1586                                 ch = 10;
1587                         if ((ch == 10) || (strlen(buf) > 250)) {
1588                                 cprintf("%s%s", buf, nl);
1589                                 strcpy(buf, "");
1590                         } else {
1591                                 buf[strlen(buf) + 1] = 0;
1592                                 buf[strlen(buf)] = ch;
1593                         }
1594                 }
1595                 if (strlen(buf) > 0)
1596                         cprintf("%s%s", buf, nl);
1597         }
1598
1599         /* If the message on disk is format 0 (Citadel vari-format), we
1600          * output using the formatter at 80 columns.  This is the final output
1601          * form if the transfer format is RFC822, but if the transfer format
1602          * is Citadel proprietary, it'll still work, because the indentation
1603          * for new paragraphs is correct and the client will reformat the
1604          * message to the reader's screen width.
1605          */
1606         if (TheMessage->cm_format_type == FMT_CITADEL) {
1607                 if (mode == MT_MIME) {
1608                         cprintf("Content-type: text/x-citadel-variformat\n\n");
1609                 }
1610                 memfmout(80, mptr, 0, nl);
1611         }
1612
1613         /* If the message on disk is format 4 (MIME), we've gotta hand it
1614          * off to the MIME parser.  The client has already been told that
1615          * this message is format 1 (fixed format), so the callback function
1616          * we use will display those parts as-is.
1617          */
1618         if (TheMessage->cm_format_type == FMT_RFC822) {
1619                 ma = malloc(sizeof(struct ma_info));
1620                 memset(ma, 0, sizeof(struct ma_info));
1621
1622                 if (mode == MT_MIME) {
1623                         strcpy(ma->chosen_part, "1");
1624                         mime_parser(mptr, NULL,
1625                                 *choose_preferred, *fixed_output_pre,
1626                                 *fixed_output_post, (void *)ma, 0);
1627                         mime_parser(mptr, NULL,
1628                                 *output_preferred, NULL, NULL, (void *)ma, 0);
1629                 }
1630                 else {
1631                         mime_parser(mptr, NULL,
1632                                 *fixed_output, *fixed_output_pre,
1633                                 *fixed_output_post, (void *)ma, 0);
1634                 }
1635
1636                 free(ma);
1637         }
1638
1639 DONE:   /* now we're done */
1640         if (do_proto) cprintf("000\n");
1641         return(om_ok);
1642 }
1643
1644
1645
1646 /*
1647  * display a message (mode 0 - Citadel proprietary)
1648  */
1649 void cmd_msg0(char *cmdbuf)
1650 {
1651         long msgid;
1652         int headers_only = HEADERS_ALL;
1653
1654         msgid = extract_long(cmdbuf, 0);
1655         headers_only = extract_int(cmdbuf, 1);
1656
1657         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0);
1658         return;
1659 }
1660
1661
1662 /*
1663  * display a message (mode 2 - RFC822)
1664  */
1665 void cmd_msg2(char *cmdbuf)
1666 {
1667         long msgid;
1668         int headers_only = HEADERS_ALL;
1669
1670         msgid = extract_long(cmdbuf, 0);
1671         headers_only = extract_int(cmdbuf, 1);
1672
1673         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1);
1674 }
1675
1676
1677
1678 /* 
1679  * display a message (mode 3 - IGnet raw format - internal programs only)
1680  */
1681 void cmd_msg3(char *cmdbuf)
1682 {
1683         long msgnum;
1684         struct CtdlMessage *msg;
1685         struct ser_ret smr;
1686
1687         if (CC->internal_pgm == 0) {
1688                 cprintf("%d This command is for internal programs only.\n",
1689                         ERROR + HIGHER_ACCESS_REQUIRED);
1690                 return;
1691         }
1692
1693         msgnum = extract_long(cmdbuf, 0);
1694         msg = CtdlFetchMessage(msgnum, 1);
1695         if (msg == NULL) {
1696                 cprintf("%d Message %ld not found.\n", 
1697                         ERROR + MESSAGE_NOT_FOUND, msgnum);
1698                 return;
1699         }
1700
1701         serialize_message(&smr, msg);
1702         CtdlFreeMessage(msg);
1703
1704         if (smr.len == 0) {
1705                 cprintf("%d Unable to serialize message\n",
1706                         ERROR + INTERNAL_ERROR);
1707                 return;
1708         }
1709
1710         cprintf("%d %ld\n", BINARY_FOLLOWS, (long)smr.len);
1711         client_write((char *)smr.ser, (int)smr.len);
1712         free(smr.ser);
1713 }
1714
1715
1716
1717 /* 
1718  * Display a message using MIME content types
1719  */
1720 void cmd_msg4(char *cmdbuf)
1721 {
1722         long msgid;
1723
1724         msgid = extract_long(cmdbuf, 0);
1725         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0);
1726 }
1727
1728
1729
1730 /* 
1731  * Client tells us its preferred message format(s)
1732  */
1733 void cmd_msgp(char *cmdbuf)
1734 {
1735         safestrncpy(CC->preferred_formats, cmdbuf,
1736                         sizeof(CC->preferred_formats));
1737         cprintf("%d ok\n", CIT_OK);
1738 }
1739
1740
1741 /*
1742  * Open a component of a MIME message as a download file 
1743  */
1744 void cmd_opna(char *cmdbuf)
1745 {
1746         long msgid;
1747         char desired_section[128];
1748
1749         msgid = extract_long(cmdbuf, 0);
1750         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
1751         safestrncpy(CC->download_desired_section, desired_section, sizeof CC->download_desired_section);
1752         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1);
1753 }                       
1754
1755
1756 /*
1757  * Save a message pointer into a specified room
1758  * (Returns 0 for success, nonzero for failure)
1759  * roomname may be NULL to use the current room
1760  */
1761 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid, int flags) {
1762         int i;
1763         char hold_rm[ROOMNAMELEN];
1764         struct cdbdata *cdbfr;
1765         int num_msgs;
1766         long *msglist;
1767         long highest_msg = 0L;
1768         struct CtdlMessage *msg = NULL;
1769
1770         lprintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom(%s, %ld, %d)\n",
1771                 roomname, msgid, flags);
1772
1773         strcpy(hold_rm, CC->room.QRname);
1774
1775         /* We may need to check to see if this message is real */
1776         if (  (flags & SM_VERIFY_GOODNESS)
1777            || (flags & SM_DO_REPL_CHECK)
1778            ) {
1779                 msg = CtdlFetchMessage(msgid, 1);
1780                 if (msg == NULL) return(ERROR + ILLEGAL_VALUE);
1781         }
1782
1783         /* Perform replication checks if necessary */
1784         if ( (flags & SM_DO_REPL_CHECK) && (msg != NULL) ) {
1785
1786                 if (getroom(&CC->room,
1787                    ((roomname != NULL) ? roomname : CC->room.QRname) )
1788                    != 0) {
1789                         lprintf(CTDL_ERR, "No such room <%s>\n", roomname);
1790                         if (msg != NULL) CtdlFreeMessage(msg);
1791                         return(ERROR + ROOM_NOT_FOUND);
1792                 }
1793
1794                 if (ReplicationChecks(msg) != 0) {
1795                         getroom(&CC->room, hold_rm);
1796                         if (msg != NULL) CtdlFreeMessage(msg);
1797                         lprintf(CTDL_DEBUG,
1798                                 "Did replication, and newer exists\n");
1799                         return(0);
1800                 }
1801         }
1802
1803         /* Now the regular stuff */
1804         if (lgetroom(&CC->room,
1805            ((roomname != NULL) ? roomname : CC->room.QRname) )
1806            != 0) {
1807                 lprintf(CTDL_ERR, "No such room <%s>\n", roomname);
1808                 if (msg != NULL) CtdlFreeMessage(msg);
1809                 return(ERROR + ROOM_NOT_FOUND);
1810         }
1811
1812         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
1813         if (cdbfr == NULL) {
1814                 msglist = NULL;
1815                 num_msgs = 0;
1816         } else {
1817                 msglist = malloc(cdbfr->len);
1818                 if (msglist == NULL)
1819                         lprintf(CTDL_ALERT, "ERROR malloc msglist!\n");
1820                 num_msgs = cdbfr->len / sizeof(long);
1821                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1822                 cdb_free(cdbfr);
1823         }
1824
1825
1826         /* Make sure the message doesn't already exist in this room.  It
1827          * is absolutely taboo to have more than one reference to the same
1828          * message in a room.
1829          */
1830         if (num_msgs > 0) for (i=0; i<num_msgs; ++i) {
1831                 if (msglist[i] == msgid) {
1832                         lputroom(&CC->room);    /* unlock the room */
1833                         getroom(&CC->room, hold_rm);
1834                         if (msg != NULL) CtdlFreeMessage(msg);
1835                         free(msglist);
1836                         return(ERROR + ALREADY_EXISTS);
1837                 }
1838         }
1839
1840         /* Now add the new message */
1841         ++num_msgs;
1842         msglist = realloc(msglist, (num_msgs * sizeof(long)));
1843
1844         if (msglist == NULL) {
1845                 lprintf(CTDL_ALERT, "ERROR: can't realloc message list!\n");
1846         }
1847         msglist[num_msgs - 1] = msgid;
1848
1849         /* Sort the message list, so all the msgid's are in order */
1850         num_msgs = sort_msglist(msglist, num_msgs);
1851
1852         /* Determine the highest message number */
1853         highest_msg = msglist[num_msgs - 1];
1854
1855         /* Write it back to disk. */
1856         cdb_store(CDB_MSGLISTS, &CC->room.QRnumber, (int)sizeof(long),
1857                   msglist, (int)(num_msgs * sizeof(long)));
1858
1859         /* Free up the memory we used. */
1860         free(msglist);
1861
1862         /* Update the highest-message pointer and unlock the room. */
1863         CC->room.QRhighest = highest_msg;
1864         lputroom(&CC->room);
1865         getroom(&CC->room, hold_rm);
1866
1867         /* Bump the reference count for this message. */
1868         if ((flags & SM_DONT_BUMP_REF)==0) {
1869                 AdjRefCount(msgid, +1);
1870         }
1871
1872         /* Return success. */
1873         if (msg != NULL) CtdlFreeMessage(msg);
1874         return (0);
1875 }
1876
1877
1878
1879 /*
1880  * Message base operation to save a new message to the message store
1881  * (returns new message number)
1882  *
1883  * This is the back end for CtdlSubmitMsg() and should not be directly
1884  * called by server-side modules.
1885  *
1886  */
1887 long send_message(struct CtdlMessage *msg) {
1888         long newmsgid;
1889         long retval;
1890         char msgidbuf[256];
1891         struct ser_ret smr;
1892         int is_bigmsg = 0;
1893         char *holdM = NULL;
1894
1895         /* Get a new message number */
1896         newmsgid = get_new_message_number();
1897         snprintf(msgidbuf, sizeof msgidbuf, "%ld@%s", newmsgid, config.c_fqdn);
1898
1899         /* Generate an ID if we don't have one already */
1900         if (msg->cm_fields['I']==NULL) {
1901                 msg->cm_fields['I'] = strdup(msgidbuf);
1902         }
1903
1904         /* If the message is big, set its body aside for storage elsewhere */
1905         if (msg->cm_fields['M'] != NULL) {
1906                 if (strlen(msg->cm_fields['M']) > BIGMSG) {
1907                         is_bigmsg = 1;
1908                         holdM = msg->cm_fields['M'];
1909                         msg->cm_fields['M'] = NULL;
1910                 }
1911         }
1912
1913         /* Serialize our data structure for storage in the database */  
1914         serialize_message(&smr, msg);
1915
1916         if (is_bigmsg) {
1917                 msg->cm_fields['M'] = holdM;
1918         }
1919
1920         if (smr.len == 0) {
1921                 cprintf("%d Unable to serialize message\n",
1922                         ERROR + INTERNAL_ERROR);
1923                 return (-1L);
1924         }
1925
1926         /* Write our little bundle of joy into the message base */
1927         if (cdb_store(CDB_MSGMAIN, &newmsgid, (int)sizeof(long),
1928                       smr.ser, smr.len) < 0) {
1929                 lprintf(CTDL_ERR, "Can't store message\n");
1930                 retval = 0L;
1931         } else {
1932                 if (is_bigmsg) {
1933                         cdb_store(CDB_BIGMSGS,
1934                                 &newmsgid,
1935                                 (int)sizeof(long),
1936                                 holdM,
1937                                 (strlen(holdM) + 1)
1938                         );
1939                 }
1940                 retval = newmsgid;
1941         }
1942
1943         /* Free the memory we used for the serialized message */
1944         free(smr.ser);
1945
1946         /* Return the *local* message ID to the caller
1947          * (even if we're storing an incoming network message)
1948          */
1949         return(retval);
1950 }
1951
1952
1953
1954 /*
1955  * Serialize a struct CtdlMessage into the format used on disk and network.
1956  * 
1957  * This function loads up a "struct ser_ret" (defined in server.h) which
1958  * contains the length of the serialized message and a pointer to the
1959  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
1960  */
1961 void serialize_message(struct ser_ret *ret,             /* return values */
1962                         struct CtdlMessage *msg)        /* unserialized msg */
1963 {
1964         size_t wlen;
1965         int i;
1966         static char *forder = FORDER;
1967
1968         if (is_valid_message(msg) == 0) return;         /* self check */
1969
1970         ret->len = 3;
1971         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
1972                 ret->len = ret->len +
1973                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
1974
1975         lprintf(CTDL_DEBUG, "serialize_message() calling malloc(%ld)\n", (long)ret->len);
1976         ret->ser = malloc(ret->len);
1977         if (ret->ser == NULL) {
1978                 ret->len = 0;
1979                 return;
1980         }
1981
1982         ret->ser[0] = 0xFF;
1983         ret->ser[1] = msg->cm_anon_type;
1984         ret->ser[2] = msg->cm_format_type;
1985         wlen = 3;
1986
1987         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
1988                 ret->ser[wlen++] = (char)forder[i];
1989                 strcpy((char *)&ret->ser[wlen], msg->cm_fields[(int)forder[i]]);
1990                 wlen = wlen + strlen(msg->cm_fields[(int)forder[i]]) + 1;
1991         }
1992         if (ret->len != wlen) lprintf(CTDL_ERR, "ERROR: len=%ld wlen=%ld\n",
1993                 (long)ret->len, (long)wlen);
1994
1995         return;
1996 }
1997
1998
1999
2000 /*
2001  * Back end for the ReplicationChecks() function
2002  */
2003 void check_repl(long msgnum, void *userdata) {
2004         lprintf(CTDL_DEBUG, "check_repl() replacing message %ld\n", msgnum);
2005         CtdlDeleteMessages(CC->room.QRname, msgnum, "", 0);
2006 }
2007
2008
2009 /*
2010  * Check to see if any messages already exist which carry the same Exclusive ID
2011  * as this one.  If any are found, delete them.
2012  *
2013  */
2014 int ReplicationChecks(struct CtdlMessage *msg) {
2015         struct CtdlMessage *template;
2016         int abort_this = 0;
2017
2018         /* No exclusive id?  Don't do anything. */
2019         if (msg->cm_fields['E'] == NULL) return 0;
2020         if (strlen(msg->cm_fields['E']) == 0) return 0;
2021         lprintf(CTDL_DEBUG, "Exclusive ID: <%s>\n", msg->cm_fields['E']);
2022
2023         template = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
2024         memset(template, 0, sizeof(struct CtdlMessage));
2025         template->cm_fields['E'] = strdup(msg->cm_fields['E']);
2026
2027         CtdlForEachMessage(MSGS_ALL, 0L, NULL, template, check_repl, NULL);
2028
2029         CtdlFreeMessage(template);
2030         lprintf(CTDL_DEBUG, "ReplicationChecks() returning %d\n", abort_this);
2031         return(abort_this);
2032 }
2033
2034
2035
2036
2037
2038
2039 /*
2040  * Save a message to disk and submit it into the delivery system.
2041  */
2042 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
2043                 struct recptypes *recps,        /* recipients (if mail) */
2044                 char *force                     /* force a particular room? */
2045 ) {
2046         char submit_filename[128];
2047         char generated_timestamp[32];
2048         char hold_rm[ROOMNAMELEN];
2049         char actual_rm[ROOMNAMELEN];
2050         char force_room[ROOMNAMELEN];
2051         char content_type[SIZ];                 /* We have to learn this */
2052         char recipient[SIZ];
2053         long newmsgid;
2054         char *mptr = NULL;
2055         struct ctdluser userbuf;
2056         int a, i;
2057         struct MetaData smi;
2058         FILE *network_fp = NULL;
2059         static int seqnum = 1;
2060         struct CtdlMessage *imsg = NULL;
2061         char *instr;
2062         struct ser_ret smr;
2063         char *hold_R, *hold_D;
2064
2065         lprintf(CTDL_DEBUG, "CtdlSubmitMsg() called\n");
2066         if (is_valid_message(msg) == 0) return(-1);     /* self check */
2067
2068         /* If this message has no timestamp, we take the liberty of
2069          * giving it one, right now.
2070          */
2071         if (msg->cm_fields['T'] == NULL) {
2072                 lprintf(CTDL_DEBUG, "Generating timestamp\n");
2073                 snprintf(generated_timestamp, sizeof generated_timestamp, "%ld", (long)time(NULL));
2074                 msg->cm_fields['T'] = strdup(generated_timestamp);
2075         }
2076
2077         /* If this message has no path, we generate one.
2078          */
2079         if (msg->cm_fields['P'] == NULL) {
2080                 lprintf(CTDL_DEBUG, "Generating path\n");
2081                 if (msg->cm_fields['A'] != NULL) {
2082                         msg->cm_fields['P'] = strdup(msg->cm_fields['A']);
2083                         for (a=0; a<strlen(msg->cm_fields['P']); ++a) {
2084                                 if (isspace(msg->cm_fields['P'][a])) {
2085                                         msg->cm_fields['P'][a] = ' ';
2086                                 }
2087                         }
2088                 }
2089                 else {
2090                         msg->cm_fields['P'] = strdup("unknown");
2091                 }
2092         }
2093
2094         if (force == NULL) {
2095                 strcpy(force_room, "");
2096         }
2097         else {
2098                 strcpy(force_room, force);
2099         }
2100
2101         /* Learn about what's inside, because it's what's inside that counts */
2102         lprintf(CTDL_DEBUG, "Learning what's inside\n");
2103         if (msg->cm_fields['M'] == NULL) {
2104                 lprintf(CTDL_ERR, "ERROR: attempt to save message with NULL body\n");
2105                 return(-2);
2106         }
2107
2108         switch (msg->cm_format_type) {
2109         case 0:
2110                 strcpy(content_type, "text/x-citadel-variformat");
2111                 break;
2112         case 1:
2113                 strcpy(content_type, "text/plain");
2114                 break;
2115         case 4:
2116                 strcpy(content_type, "text/plain");
2117                 mptr = bmstrcasestr(msg->cm_fields['M'], "Content-type: ");
2118                 if (mptr != NULL) {
2119                         safestrncpy(content_type, &mptr[14], 
2120                                         sizeof content_type);
2121                         for (a = 0; a < strlen(content_type); ++a) {
2122                                 if ((content_type[a] == ';')
2123                                     || (content_type[a] == ' ')
2124                                     || (content_type[a] == 13)
2125                                     || (content_type[a] == 10)) {
2126                                         content_type[a] = 0;
2127                                 }
2128                         }
2129                 }
2130         }
2131
2132         /* Goto the correct room */
2133         lprintf(CTDL_DEBUG, "Selected room %s\n",
2134                 (recps) ? CC->room.QRname : SENTITEMS);
2135         strcpy(hold_rm, CC->room.QRname);
2136         strcpy(actual_rm, CC->room.QRname);
2137         if (recps != NULL) {
2138                 strcpy(actual_rm, SENTITEMS);
2139         }
2140
2141         /* If the user is a twit, move to the twit room for posting */
2142         lprintf(CTDL_DEBUG, "Handling twit stuff: %s\n",
2143                         (CC->user.axlevel == 2) ? config.c_twitroom : "OK");
2144         if (TWITDETECT) {
2145                 if (CC->user.axlevel == 2) {
2146                         strcpy(hold_rm, actual_rm);
2147                         strcpy(actual_rm, config.c_twitroom);
2148                 }
2149         }
2150
2151         /* ...or if this message is destined for Aide> then go there. */
2152         if (strlen(force_room) > 0) {
2153                 strcpy(actual_rm, force_room);
2154         }
2155
2156         lprintf(CTDL_DEBUG, "Final selection: %s\n", actual_rm);
2157         if (strcasecmp(actual_rm, CC->room.QRname)) {
2158                 /* getroom(&CC->room, actual_rm); */
2159                 usergoto(actual_rm, 0, 1, NULL, NULL);
2160         }
2161
2162         /*
2163          * If this message has no O (room) field, generate one.
2164          */
2165         if (msg->cm_fields['O'] == NULL) {
2166                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2167         }
2168
2169         /* Perform "before save" hooks (aborting if any return nonzero) */
2170         lprintf(CTDL_DEBUG, "Performing before-save hooks\n");
2171         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-3);
2172
2173         /* If this message has an Exclusive ID, perform replication checks */
2174         lprintf(CTDL_DEBUG, "Performing replication checks\n");
2175         if (ReplicationChecks(msg) > 0) return(-4);
2176
2177         /* Save it to disk */
2178         lprintf(CTDL_DEBUG, "Saving to disk\n");
2179         newmsgid = send_message(msg);
2180         if (newmsgid <= 0L) return(-5);
2181
2182         /* Write a supplemental message info record.  This doesn't have to
2183          * be a critical section because nobody else knows about this message
2184          * yet.
2185          */
2186         lprintf(CTDL_DEBUG, "Creating MetaData record\n");
2187         memset(&smi, 0, sizeof(struct MetaData));
2188         smi.meta_msgnum = newmsgid;
2189         smi.meta_refcount = 0;
2190         safestrncpy(smi.meta_content_type, content_type,
2191                         sizeof smi.meta_content_type);
2192
2193         /* As part of the new metadata record, measure how
2194          * big this message will be when displayed as RFC822.
2195          * Both POP and IMAP use this, and it's best to just take the hit now
2196          * instead of having to potentially measure thousands of messages when
2197          * a mailbox is opened later.
2198          */
2199
2200         if (CC->redirect_buffer != NULL) {
2201                 lprintf(CTDL_ALERT, "CC->redirect_buffer is not NULL during message submission!\n");
2202                 abort();
2203         }
2204         CC->redirect_buffer = malloc(SIZ);
2205         CC->redirect_len = 0;
2206         CC->redirect_alloc = SIZ;
2207         CtdlOutputPreLoadedMsg(msg, 0L, MT_RFC822, HEADERS_ALL, 0, 1);
2208         smi.meta_rfc822_length = CC->redirect_len;
2209         free(CC->redirect_buffer);
2210         CC->redirect_buffer = NULL;
2211         CC->redirect_len = 0;
2212         CC->redirect_alloc = 0;
2213
2214         PutMetaData(&smi);
2215
2216         /* Now figure out where to store the pointers */
2217         lprintf(CTDL_DEBUG, "Storing pointers\n");
2218
2219         /* If this is being done by the networker delivering a private
2220          * message, we want to BYPASS saving the sender's copy (because there
2221          * is no local sender; it would otherwise go to the Trashcan).
2222          */
2223         if ((!CC->internal_pgm) || (recps == NULL)) {
2224                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0) != 0) {
2225                         lprintf(CTDL_ERR, "ERROR saving message pointer!\n");
2226                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2227                                                         newmsgid, 0);
2228                 }
2229         }
2230
2231         /* For internet mail, drop a copy in the outbound queue room */
2232         if (recps != NULL)
2233          if (recps->num_internet > 0) {
2234                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0);
2235         }
2236
2237         /* If other rooms are specified, drop them there too. */
2238         if (recps != NULL)
2239          if (recps->num_room > 0)
2240           for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
2241                 extract_token(recipient, recps->recp_room, i,
2242                                         '|', sizeof recipient);
2243                 lprintf(CTDL_DEBUG, "Delivering to room <%s>\n", recipient);
2244                 CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0);
2245         }
2246
2247         /* Bump this user's messages posted counter. */
2248         lprintf(CTDL_DEBUG, "Updating user\n");
2249         lgetuser(&CC->user, CC->curr_user);
2250         CC->user.posted = CC->user.posted + 1;
2251         lputuser(&CC->user);
2252
2253         /* If this is private, local mail, make a copy in the
2254          * recipient's mailbox and bump the reference count.
2255          */
2256         if (recps != NULL)
2257          if (recps->num_local > 0)
2258           for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
2259                 extract_token(recipient, recps->recp_local, i,
2260                                         '|', sizeof recipient);
2261                 lprintf(CTDL_DEBUG, "Delivering private local mail to <%s>\n",
2262                         recipient);
2263                 if (getuser(&userbuf, recipient) == 0) {
2264                         MailboxName(actual_rm, sizeof actual_rm,
2265                                         &userbuf, MAILROOM);
2266                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0);
2267                         BumpNewMailCounter(userbuf.usernum);
2268                 }
2269                 else {
2270                         lprintf(CTDL_DEBUG, "No user <%s>\n", recipient);
2271                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2272                                                         newmsgid, 0);
2273                 }
2274         }
2275
2276         /* Perform "after save" hooks */
2277         lprintf(CTDL_DEBUG, "Performing after-save hooks\n");
2278         PerformMessageHooks(msg, EVT_AFTERSAVE);
2279
2280         /* For IGnet mail, we have to save a new copy into the spooler for
2281          * each recipient, with the R and D fields set to the recipient and
2282          * destination-node.  This has two ugly side effects: all other
2283          * recipients end up being unlisted in this recipient's copy of the
2284          * message, and it has to deliver multiple messages to the same
2285          * node.  We'll revisit this again in a year or so when everyone has
2286          * a network spool receiver that can handle the new style messages.
2287          */
2288         if (recps != NULL)
2289          if (recps->num_ignet > 0)
2290           for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
2291                 extract_token(recipient, recps->recp_ignet, i,
2292                                 '|', sizeof recipient);
2293
2294                 hold_R = msg->cm_fields['R'];
2295                 hold_D = msg->cm_fields['D'];
2296                 msg->cm_fields['R'] = malloc(SIZ);
2297                 msg->cm_fields['D'] = malloc(128);
2298                 extract_token(msg->cm_fields['R'], recipient, 0, '@', SIZ);
2299                 extract_token(msg->cm_fields['D'], recipient, 1, '@', 128);
2300                 
2301                 serialize_message(&smr, msg);
2302                 if (smr.len > 0) {
2303                         snprintf(submit_filename, sizeof submit_filename,
2304 #ifndef HAVE_SPOOL_DIR
2305                                          "."
2306 #else
2307                                          SPOOL_DIR
2308 #endif
2309                                          "/network/spoolin/netmail.%04lx.%04x.%04x",
2310                                          (long) getpid(), CC->cs_pid, ++seqnum);
2311                         network_fp = fopen(submit_filename, "wb+");
2312                         if (network_fp != NULL) {
2313                                 fwrite(smr.ser, smr.len, 1, network_fp);
2314                                 fclose(network_fp);
2315                         }
2316                         free(smr.ser);
2317                 }
2318
2319                 free(msg->cm_fields['R']);
2320                 free(msg->cm_fields['D']);
2321                 msg->cm_fields['R'] = hold_R;
2322                 msg->cm_fields['D'] = hold_D;
2323         }
2324
2325         /* Go back to the room we started from */
2326         lprintf(CTDL_DEBUG, "Returning to original room %s\n", hold_rm);
2327         if (strcasecmp(hold_rm, CC->room.QRname))
2328                 /* getroom(&CC->room, hold_rm); */
2329                 usergoto(hold_rm, 0, 1, NULL, NULL);
2330
2331         /* For internet mail, generate delivery instructions.
2332          * Yes, this is recursive.  Deal with it.  Infinite recursion does
2333          * not happen because the delivery instructions message does not
2334          * contain a recipient.
2335          */
2336         if (recps != NULL)
2337          if (recps->num_internet > 0) {
2338                 lprintf(CTDL_DEBUG, "Generating delivery instructions\n");
2339                 instr = malloc(SIZ * 2);
2340                 snprintf(instr, SIZ * 2,
2341                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2342                         "bounceto|%s@%s\n",
2343                         SPOOLMIME, newmsgid, (long)time(NULL),
2344                         msg->cm_fields['A'], msg->cm_fields['N']
2345                 );
2346
2347                 for (i=0; i<num_tokens(recps->recp_internet, '|'); ++i) {
2348                         size_t tmp = strlen(instr);
2349                         extract_token(recipient, recps->recp_internet, i, '|', sizeof recipient);
2350                         snprintf(&instr[tmp], SIZ * 2 - tmp,
2351                                  "remote|%s|0||\n", recipient);
2352                 }
2353
2354                 imsg = malloc(sizeof(struct CtdlMessage));
2355                 memset(imsg, 0, sizeof(struct CtdlMessage));
2356                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
2357                 imsg->cm_anon_type = MES_NORMAL;
2358                 imsg->cm_format_type = FMT_RFC822;
2359                 imsg->cm_fields['A'] = strdup("Citadel");
2360                 imsg->cm_fields['M'] = instr;
2361                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM);
2362                 CtdlFreeMessage(imsg);
2363         }
2364
2365         return(newmsgid);
2366 }
2367
2368
2369
2370
2371
2372
2373
2374
2375 /*
2376  * Convenience function for generating small administrative messages.
2377  */
2378 void quickie_message(char *from, char *to, char *room, char *text, 
2379                         int format_type, char *subject)
2380 {
2381         struct CtdlMessage *msg;
2382         struct recptypes *recp = NULL;
2383
2384         msg = malloc(sizeof(struct CtdlMessage));
2385         memset(msg, 0, sizeof(struct CtdlMessage));
2386         msg->cm_magic = CTDLMESSAGE_MAGIC;
2387         msg->cm_anon_type = MES_NORMAL;
2388         msg->cm_format_type = format_type;
2389         msg->cm_fields['A'] = strdup(from);
2390         if (room != NULL) msg->cm_fields['O'] = strdup(room);
2391         msg->cm_fields['N'] = strdup(NODENAME);
2392         if (to != NULL) {
2393                 msg->cm_fields['R'] = strdup(to);
2394                 recp = validate_recipients(to);
2395         }
2396         if (subject != NULL) {
2397                 msg->cm_fields['U'] = strdup(subject);
2398         }
2399         msg->cm_fields['M'] = strdup(text);
2400
2401         CtdlSubmitMsg(msg, recp, room);
2402         CtdlFreeMessage(msg);
2403         if (recp != NULL) free(recp);
2404 }
2405
2406
2407
2408 /*
2409  * Back end function used by CtdlMakeMessage() and similar functions
2410  */
2411 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
2412                         size_t maxlen,          /* maximum message length */
2413                         char *exist,            /* if non-null, append to it;
2414                                                    exist is ALWAYS freed  */
2415                         int crlf                /* CRLF newlines instead of LF */
2416                         ) {
2417         char buf[1024];
2418         int linelen;
2419         size_t message_len = 0;
2420         size_t buffer_len = 0;
2421         char *ptr;
2422         char *m;
2423         int flushing = 0;
2424         int finished = 0;
2425
2426         if (exist == NULL) {
2427                 m = malloc(4096);
2428                 m[0] = 0;
2429                 buffer_len = 4096;
2430                 message_len = 0;
2431         }
2432         else {
2433                 message_len = strlen(exist);
2434                 buffer_len = message_len + 4096;
2435                 m = realloc(exist, buffer_len);
2436                 if (m == NULL) {
2437                         free(exist);
2438                         return m;
2439                 }
2440         }
2441
2442         /* flush the input if we have nowhere to store it */
2443         if (m == NULL) {
2444                 flushing = 1;
2445         }
2446
2447         /* read in the lines of message text one by one */
2448         do {
2449                 if (client_getln(buf, (sizeof buf - 3)) < 1) finished = 1;
2450                 if (!strcmp(buf, terminator)) finished = 1;
2451                 if (crlf) {
2452                         strcat(buf, "\r\n");
2453                 }
2454                 else {
2455                         strcat(buf, "\n");
2456                 }
2457
2458                 if ( (!flushing) && (!finished) ) {
2459                         /* Measure the line */
2460                         linelen = strlen(buf);
2461         
2462                         /* augment the buffer if we have to */
2463                         if ((message_len + linelen) >= buffer_len) {
2464                                 ptr = realloc(m, (buffer_len * 2) );
2465                                 if (ptr == NULL) {      /* flush if can't allocate */
2466                                         flushing = 1;
2467                                 } else {
2468                                         buffer_len = (buffer_len * 2);
2469                                         m = ptr;
2470                                         lprintf(CTDL_DEBUG, "buffer_len is now %ld\n", (long)buffer_len);
2471                                 }
2472                         }
2473         
2474                         /* Add the new line to the buffer.  NOTE: this loop must avoid
2475                         * using functions like strcat() and strlen() because they
2476                         * traverse the entire buffer upon every call, and doing that
2477                         * for a multi-megabyte message slows it down beyond usability.
2478                         */
2479                         strcpy(&m[message_len], buf);
2480                         message_len += linelen;
2481                 }
2482
2483                 /* if we've hit the max msg length, flush the rest */
2484                 if (message_len >= maxlen) flushing = 1;
2485
2486         } while (!finished);
2487         return(m);
2488 }
2489
2490
2491
2492
2493 /*
2494  * Build a binary message to be saved on disk.
2495  * (NOTE: if you supply 'preformatted_text', the buffer you give it
2496  * will become part of the message.  This means you are no longer
2497  * responsible for managing that memory -- it will be freed along with
2498  * the rest of the fields when CtdlFreeMessage() is called.)
2499  */
2500
2501 struct CtdlMessage *CtdlMakeMessage(
2502         struct ctdluser *author,        /* author's user structure */
2503         char *recipient,                /* NULL if it's not mail */
2504         char *recp_cc,                  /* NULL if it's not mail */
2505         char *room,                     /* room where it's going */
2506         int type,                       /* see MES_ types in header file */
2507         int format_type,                /* variformat, plain text, MIME... */
2508         char *fake_name,                /* who we're masquerading as */
2509         char *subject,                  /* Subject (optional) */
2510         char *preformatted_text         /* ...or NULL to read text from client */
2511 ) {
2512         char dest_node[SIZ];
2513         char buf[SIZ];
2514         struct CtdlMessage *msg;
2515
2516         msg = malloc(sizeof(struct CtdlMessage));
2517         memset(msg, 0, sizeof(struct CtdlMessage));
2518         msg->cm_magic = CTDLMESSAGE_MAGIC;
2519         msg->cm_anon_type = type;
2520         msg->cm_format_type = format_type;
2521
2522         /* Don't confuse the poor folks if it's not routed mail. */
2523         strcpy(dest_node, "");
2524
2525         striplt(recipient);
2526         striplt(recp_cc);
2527
2528         snprintf(buf, sizeof buf, "cit%ld", author->usernum);   /* Path */
2529         msg->cm_fields['P'] = strdup(buf);
2530
2531         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
2532         msg->cm_fields['T'] = strdup(buf);
2533
2534         if (fake_name[0])                                       /* author */
2535                 msg->cm_fields['A'] = strdup(fake_name);
2536         else
2537                 msg->cm_fields['A'] = strdup(author->fullname);
2538
2539         if (CC->room.QRflags & QR_MAILBOX) {            /* room */
2540                 msg->cm_fields['O'] = strdup(&CC->room.QRname[11]);
2541         }
2542         else {
2543                 msg->cm_fields['O'] = strdup(CC->room.QRname);
2544         }
2545
2546         msg->cm_fields['N'] = strdup(NODENAME);         /* nodename */
2547         msg->cm_fields['H'] = strdup(HUMANNODE);                /* hnodename */
2548
2549         if (recipient[0] != 0) {
2550                 msg->cm_fields['R'] = strdup(recipient);
2551         }
2552         if (recp_cc[0] != 0) {
2553                 msg->cm_fields['Y'] = strdup(recp_cc);
2554         }
2555         if (dest_node[0] != 0) {
2556                 msg->cm_fields['D'] = strdup(dest_node);
2557         }
2558
2559         if ( (author == &CC->user) && (strlen(CC->cs_inet_email) > 0) ) {
2560                 msg->cm_fields['F'] = strdup(CC->cs_inet_email);
2561         }
2562
2563         if (subject != NULL) {
2564                 striplt(subject);
2565                 if (strlen(subject) > 0) {
2566                         msg->cm_fields['U'] = strdup(subject);
2567                 }
2568         }
2569
2570         if (preformatted_text != NULL) {
2571                 msg->cm_fields['M'] = preformatted_text;
2572         }
2573         else {
2574                 msg->cm_fields['M'] = CtdlReadMessageBody("000",
2575                                         config.c_maxmsglen, NULL, 0);
2576         }
2577
2578         return(msg);
2579 }
2580
2581
2582 /*
2583  * Check to see whether we have permission to post a message in the current
2584  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
2585  * returns 0 on success.
2586  */
2587 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, size_t n) {
2588
2589         if (!(CC->logged_in)) {
2590                 snprintf(errmsgbuf, n, "Not logged in.");
2591                 return (ERROR + NOT_LOGGED_IN);
2592         }
2593
2594         if ((CC->user.axlevel < 2)
2595             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
2596                 snprintf(errmsgbuf, n, "Need to be validated to enter "
2597                                 "(except in %s> to sysop)", MAILROOM);
2598                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2599         }
2600
2601         if ((CC->user.axlevel < 4)
2602            && (CC->room.QRflags & QR_NETWORK)) {
2603                 snprintf(errmsgbuf, n, "Need net privileges to enter here.");
2604                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2605         }
2606
2607         if ((CC->user.axlevel < 6)
2608            && (CC->room.QRflags & QR_READONLY)) {
2609                 snprintf(errmsgbuf, n, "Sorry, this is a read-only room.");
2610                 return (ERROR + HIGHER_ACCESS_REQUIRED);
2611         }
2612
2613         strcpy(errmsgbuf, "Ok");
2614         return(0);
2615 }
2616
2617
2618 /*
2619  * Check to see if the specified user has Internet mail permission
2620  * (returns nonzero if permission is granted)
2621  */
2622 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
2623
2624         /* Do not allow twits to send Internet mail */
2625         if (who->axlevel <= 2) return(0);
2626
2627         /* Globally enabled? */
2628         if (config.c_restrict == 0) return(1);
2629
2630         /* User flagged ok? */
2631         if (who->flags & US_INTERNET) return(2);
2632
2633         /* Aide level access? */
2634         if (who->axlevel >= 6) return(3);
2635
2636         /* No mail for you! */
2637         return(0);
2638 }
2639
2640
2641 /*
2642  * Validate recipients, count delivery types and errors, and handle aliasing
2643  * FIXME check for dupes!!!!!
2644  * Returns 0 if all addresses are ok, -1 if no addresses were specified,
2645  * or the number of addresses found invalid.
2646  */
2647 struct recptypes *validate_recipients(char *recipients) {
2648         struct recptypes *ret;
2649         char this_recp[SIZ];
2650         char this_recp_cooked[SIZ];
2651         char append[SIZ];
2652         int num_recps;
2653         int i, j;
2654         int mailtype;
2655         int invalid;
2656         struct ctdluser tempUS;
2657         struct ctdlroom tempQR;
2658
2659         /* Initialize */
2660         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
2661         if (ret == NULL) return(NULL);
2662         memset(ret, 0, sizeof(struct recptypes));
2663
2664         ret->num_local = 0;
2665         ret->num_internet = 0;
2666         ret->num_ignet = 0;
2667         ret->num_error = 0;
2668         ret->num_room = 0;
2669
2670         if (recipients == NULL) {
2671                 num_recps = 0;
2672         }
2673         else if (strlen(recipients) == 0) {
2674                 num_recps = 0;
2675         }
2676         else {
2677                 /* Change all valid separator characters to commas */
2678                 for (i=0; i<strlen(recipients); ++i) {
2679                         if ((recipients[i] == ';') || (recipients[i] == '|')) {
2680                                 recipients[i] = ',';
2681                         }
2682                 }
2683
2684                 /* Count 'em up */
2685                 num_recps = num_tokens(recipients, ',');
2686         }
2687
2688         if (num_recps > 0) for (i=0; i<num_recps; ++i) {
2689                 extract_token(this_recp, recipients, i, ',', sizeof this_recp);
2690                 striplt(this_recp);
2691                 lprintf(CTDL_DEBUG, "Evaluating recipient #%d <%s>\n", i, this_recp);
2692                 mailtype = alias(this_recp);
2693                 mailtype = alias(this_recp);
2694                 mailtype = alias(this_recp);
2695                 for (j=0; j<=strlen(this_recp); ++j) {
2696                         if (this_recp[j]=='_') {
2697                                 this_recp_cooked[j] = ' ';
2698                         }
2699                         else {
2700                                 this_recp_cooked[j] = this_recp[j];
2701                         }
2702                 }
2703                 invalid = 0;
2704                 switch(mailtype) {
2705                         case MES_LOCAL:
2706                                 if (!strcasecmp(this_recp, "sysop")) {
2707                                         ++ret->num_room;
2708                                         strcpy(this_recp, config.c_aideroom);
2709                                         if (strlen(ret->recp_room) > 0) {
2710                                                 strcat(ret->recp_room, "|");
2711                                         }
2712                                         strcat(ret->recp_room, this_recp);
2713                                 }
2714                                 else if (getuser(&tempUS, this_recp) == 0) {
2715                                         ++ret->num_local;
2716                                         strcpy(this_recp, tempUS.fullname);
2717                                         if (strlen(ret->recp_local) > 0) {
2718                                                 strcat(ret->recp_local, "|");
2719                                         }
2720                                         strcat(ret->recp_local, this_recp);
2721                                 }
2722                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
2723                                         ++ret->num_local;
2724                                         strcpy(this_recp, tempUS.fullname);
2725                                         if (strlen(ret->recp_local) > 0) {
2726                                                 strcat(ret->recp_local, "|");
2727                                         }
2728                                         strcat(ret->recp_local, this_recp);
2729                                 }
2730                                 else if ( (!strncasecmp(this_recp, "room_", 5))
2731                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
2732                                         ++ret->num_room;
2733                                         if (strlen(ret->recp_room) > 0) {
2734                                                 strcat(ret->recp_room, "|");
2735                                         }
2736                                         strcat(ret->recp_room, &this_recp_cooked[5]);
2737                                 }
2738                                 else {
2739                                         ++ret->num_error;
2740                                         invalid = 1;
2741                                 }
2742                                 break;
2743                         case MES_INTERNET:
2744                                 /* Yes, you're reading this correctly: if the target
2745                                  * domain points back to the local system or an attached
2746                                  * Citadel directory, the address is invalid.  That's
2747                                  * because if the address were valid, we would have
2748                                  * already translated it to a local address by now.
2749                                  */
2750                                 if (IsDirectory(this_recp)) {
2751                                         ++ret->num_error;
2752                                         invalid = 1;
2753                                 }
2754                                 else {
2755                                         ++ret->num_internet;
2756                                         if (strlen(ret->recp_internet) > 0) {
2757                                                 strcat(ret->recp_internet, "|");
2758                                         }
2759                                         strcat(ret->recp_internet, this_recp);
2760                                 }
2761                                 break;
2762                         case MES_IGNET:
2763                                 ++ret->num_ignet;
2764                                 if (strlen(ret->recp_ignet) > 0) {
2765                                         strcat(ret->recp_ignet, "|");
2766                                 }
2767                                 strcat(ret->recp_ignet, this_recp);
2768                                 break;
2769                         case MES_ERROR:
2770                                 ++ret->num_error;
2771                                 invalid = 1;
2772                                 break;
2773                 }
2774                 if (invalid) {
2775                         if (strlen(ret->errormsg) == 0) {
2776                                 snprintf(append, sizeof append,
2777                                          "Invalid recipient: %s",
2778                                          this_recp);
2779                         }
2780                         else {
2781                                 snprintf(append, sizeof append,
2782                                          ", %s", this_recp);
2783                         }
2784                         if ( (strlen(ret->errormsg) + strlen(append)) < SIZ) {
2785                                 strcat(ret->errormsg, append);
2786                         }
2787                 }
2788                 else {
2789                         if (strlen(ret->display_recp) == 0) {
2790                                 strcpy(append, this_recp);
2791                         }
2792                         else {
2793                                 snprintf(append, sizeof append, ", %s",
2794                                          this_recp);
2795                         }
2796                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
2797                                 strcat(ret->display_recp, append);
2798                         }
2799                 }
2800         }
2801
2802         if ((ret->num_local + ret->num_internet + ret->num_ignet +
2803            ret->num_room + ret->num_error) == 0) {
2804                 ret->num_error = (-1);
2805                 strcpy(ret->errormsg, "No recipients specified.");
2806         }
2807
2808         lprintf(CTDL_DEBUG, "validate_recipients()\n");
2809         lprintf(CTDL_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
2810         lprintf(CTDL_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
2811         lprintf(CTDL_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
2812         lprintf(CTDL_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
2813         lprintf(CTDL_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
2814
2815         return(ret);
2816 }
2817
2818
2819
2820 /*
2821  * message entry  -  mode 0 (normal)
2822  */
2823 void cmd_ent0(char *entargs)
2824 {
2825         int post = 0;
2826         char recp[SIZ];
2827         char cc[SIZ];
2828         char bcc[SIZ];
2829         char masquerade_as[SIZ];
2830         int anon_flag = 0;
2831         int format_type = 0;
2832         char newusername[SIZ];
2833         struct CtdlMessage *msg;
2834         int anonymous = 0;
2835         char errmsg[SIZ];
2836         int err = 0;
2837         struct recptypes *valid = NULL;
2838         struct recptypes *valid_to = NULL;
2839         struct recptypes *valid_cc = NULL;
2840         struct recptypes *valid_bcc = NULL;
2841         char subject[SIZ];
2842         int do_confirm = 0;
2843         long msgnum;
2844
2845         unbuffer_output();
2846
2847         post = extract_int(entargs, 0);
2848         extract_token(recp, entargs, 1, '|', sizeof recp);
2849         anon_flag = extract_int(entargs, 2);
2850         format_type = extract_int(entargs, 3);
2851         extract_token(subject, entargs, 4, '|', sizeof subject);
2852         do_confirm = extract_int(entargs, 6);
2853         extract_token(cc, entargs, 7, '|', sizeof cc);
2854         extract_token(bcc, entargs, 8, '|', sizeof bcc);
2855
2856         /* first check to make sure the request is valid. */
2857
2858         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg);
2859         if (err) {
2860                 cprintf("%d %s\n", err, errmsg);
2861                 return;
2862         }
2863
2864         /* Check some other permission type things. */
2865
2866         if (post == 2) {
2867                 if (CC->user.axlevel < 6) {
2868                         cprintf("%d You don't have permission to masquerade.\n",
2869                                 ERROR + HIGHER_ACCESS_REQUIRED);
2870                         return;
2871                 }
2872                 extract_token(newusername, entargs, 5, '|', sizeof newusername);
2873                 memset(CC->fake_postname, 0, sizeof(CC->fake_postname) );
2874                 safestrncpy(CC->fake_postname, newusername,
2875                         sizeof(CC->fake_postname) );
2876                 cprintf("%d ok\n", CIT_OK);
2877                 return;
2878         }
2879         CC->cs_flags |= CS_POSTING;
2880
2881         /* In the Mail> room we have to behave a little differently --
2882          * make sure the user has specified at least one recipient.  Then
2883          * validate the recipient(s).
2884          */
2885         if ( (CC->room.QRflags & QR_MAILBOX)
2886            && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) ) {
2887
2888                 if (CC->user.axlevel < 2) {
2889                         strcpy(recp, "sysop");
2890                         strcpy(cc, "");
2891                         strcpy(bcc, "");
2892                 }
2893
2894                 valid_to = validate_recipients(recp);
2895                 if (valid_to->num_error > 0) {
2896                         cprintf("%d Invalid recipient (To)\n", ERROR + NO_SUCH_USER);
2897                         free(valid_to);
2898                         return;
2899                 }
2900
2901                 valid_cc = validate_recipients(cc);
2902                 if (valid_cc->num_error > 0) {
2903                         cprintf("%d Invalid recipient (CC)\n", ERROR + NO_SUCH_USER);
2904                         free(valid_to);
2905                         free(valid_cc);
2906                         return;
2907                 }
2908
2909                 valid_bcc = validate_recipients(bcc);
2910                 if (valid_bcc->num_error > 0) {
2911                         cprintf("%d Invalid recipient (BCC)\n", ERROR + NO_SUCH_USER);
2912                         free(valid_to);
2913                         free(valid_cc);
2914                         free(valid_bcc);
2915                         return;
2916                 }
2917
2918                 /* Recipient required, but none were specified */
2919                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
2920                         free(valid_to);
2921                         free(valid_cc);
2922                         free(valid_bcc);
2923                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
2924                         return;
2925                 }
2926
2927                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
2928                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
2929                                 cprintf("%d You do not have permission "
2930                                         "to send Internet mail.\n",
2931                                         ERROR + HIGHER_ACCESS_REQUIRED);
2932                                 free(valid_to);
2933                                 free(valid_cc);
2934                                 free(valid_bcc);
2935                                 return;
2936                         }
2937                 }
2938
2939                 if ( ( (valid_to->num_internet + valid_to->num_ignet + valid_cc->num_internet + valid_cc->num_ignet + valid_bcc->num_internet + valid_bcc->num_ignet) > 0)
2940                    && (CC->user.axlevel < 4) ) {
2941                         cprintf("%d Higher access required for network mail.\n",
2942                                 ERROR + HIGHER_ACCESS_REQUIRED);
2943                         free(valid_to);
2944                         free(valid_cc);
2945                         free(valid_bcc);
2946                         return;
2947                 }
2948         
2949                 if ((RESTRICT_INTERNET == 1)
2950                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
2951                     && ((CC->user.flags & US_INTERNET) == 0)
2952                     && (!CC->internal_pgm)) {
2953                         cprintf("%d You don't have access to Internet mail.\n",
2954                                 ERROR + HIGHER_ACCESS_REQUIRED);
2955                         free(valid_to);
2956                         free(valid_cc);
2957                         free(valid_bcc);
2958                         return;
2959                 }
2960
2961         }
2962
2963         /* Is this a room which has anonymous-only or anonymous-option? */
2964         anonymous = MES_NORMAL;
2965         if (CC->room.QRflags & QR_ANONONLY) {
2966                 anonymous = MES_ANONONLY;
2967         }
2968         if (CC->room.QRflags & QR_ANONOPT) {
2969                 if (anon_flag == 1) {   /* only if the user requested it */
2970                         anonymous = MES_ANONOPT;
2971                 }
2972         }
2973
2974         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
2975                 recp[0] = 0;
2976         }
2977
2978         /* If we're only checking the validity of the request, return
2979          * success without creating the message.
2980          */
2981         if (post == 0) {
2982                 cprintf("%d %s\n", CIT_OK,
2983                         ((valid_to != NULL) ? valid_to->display_recp : "") );
2984                 free(valid_to);
2985                 free(valid_cc);
2986                 free(valid_bcc);
2987                 return;
2988         }
2989
2990         /* We don't need these anymore because we'll do it differently below */
2991         free(valid_to);
2992         free(valid_cc);
2993         free(valid_bcc);
2994
2995         /* Handle author masquerading */
2996         if (CC->fake_postname[0]) {
2997                 strcpy(masquerade_as, CC->fake_postname);
2998         }
2999         else if (CC->fake_username[0]) {
3000                 strcpy(masquerade_as, CC->fake_username);
3001         }
3002         else {
3003                 strcpy(masquerade_as, "");
3004         }
3005
3006         /* Read in the message from the client. */
3007         if (do_confirm) {
3008                 cprintf("%d send message\n", START_CHAT_MODE);
3009         } else {
3010                 cprintf("%d send message\n", SEND_LISTING);
3011         }
3012
3013         msg = CtdlMakeMessage(&CC->user, recp, cc,
3014                 CC->room.QRname, anonymous, format_type,
3015                 masquerade_as, subject, NULL);
3016
3017         /* Put together one big recipients struct containing to/cc/bcc all in
3018          * one.  This is for the envelope.
3019          */
3020         char *all_recps = malloc(SIZ * 3);
3021         strcpy(all_recps, recp);
3022         if (strlen(cc) > 0) {
3023                 if (strlen(all_recps) > 0) {
3024                         strcat(all_recps, ",");
3025                 }
3026                 strcat(all_recps, cc);
3027         }
3028         if (strlen(bcc) > 0) {
3029                 if (strlen(all_recps) > 0) {
3030                         strcat(all_recps, ",");
3031                 }
3032                 strcat(all_recps, bcc);
3033         }
3034         if (strlen(all_recps) > 0) {
3035                 valid = validate_recipients(all_recps);
3036         }
3037         else {
3038                 valid = NULL;
3039         }
3040         free(all_recps);
3041
3042         if (msg != NULL) {
3043                 msgnum = CtdlSubmitMsg(msg, valid, "");
3044
3045                 if (do_confirm) {
3046                         cprintf("%ld\n", msgnum);
3047                         if (msgnum >= 0L) {
3048                                 cprintf("Message accepted.\n");
3049                         }
3050                         else {
3051                                 cprintf("Internal error.\n");
3052                         }
3053                         if (msg->cm_fields['E'] != NULL) {
3054                                 cprintf("%s\n", msg->cm_fields['E']);
3055                         } else {
3056                                 cprintf("\n");
3057                         }
3058                         cprintf("000\n");
3059                 }
3060
3061                 CtdlFreeMessage(msg);
3062         }
3063         CC->fake_postname[0] = '\0';
3064         if (valid != NULL) {
3065                 free(valid);
3066         }
3067         return;
3068 }
3069
3070
3071
3072 /*
3073  * API function to delete messages which match a set of criteria
3074  * (returns the actual number of messages deleted)
3075  */
3076 int CtdlDeleteMessages(char *room_name,         /* which room */
3077                         long dmsgnum,           /* or "0" for any */
3078                         char *content_type,     /* or "" for any */
3079                         int deferred            /* let TDAP sweep it later */
3080 )
3081 {
3082
3083         struct ctdlroom qrbuf;
3084         struct cdbdata *cdbfr;
3085         long *msglist = NULL;
3086         long *dellist = NULL;
3087         int num_msgs = 0;
3088         int i;
3089         int num_deleted = 0;
3090         int delete_this;
3091         struct MetaData smi;
3092
3093         lprintf(CTDL_DEBUG, "CtdlDeleteMessages(%s, %ld, %s, %d)\n",
3094                 room_name, dmsgnum, content_type, deferred);
3095
3096         /* get room record, obtaining a lock... */
3097         if (lgetroom(&qrbuf, room_name) != 0) {
3098                 lprintf(CTDL_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
3099                         room_name);
3100                 return (0);     /* room not found */
3101         }
3102         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
3103
3104         if (cdbfr != NULL) {
3105                 msglist = malloc(cdbfr->len);
3106                 dellist = malloc(cdbfr->len);
3107                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
3108                 num_msgs = cdbfr->len / sizeof(long);
3109                 cdb_free(cdbfr);
3110         }
3111         if (num_msgs > 0) {
3112                 for (i = 0; i < num_msgs; ++i) {
3113                         delete_this = 0x00;
3114
3115                         /* Set/clear a bit for each criterion */
3116
3117                         if ((dmsgnum == 0L) || (msglist[i] == dmsgnum)) {
3118                                 delete_this |= 0x01;
3119                         }
3120                         if (strlen(content_type) == 0) {
3121                                 delete_this |= 0x02;
3122                         } else {
3123                                 GetMetaData(&smi, msglist[i]);
3124                                 if (!strcasecmp(smi.meta_content_type,
3125                                                 content_type)) {
3126                                         delete_this |= 0x02;
3127                                 }
3128                         }
3129
3130                         /* Delete message only if all bits are set */
3131                         if (delete_this == 0x03) {
3132                                 dellist[num_deleted++] = msglist[i];
3133                                 msglist[i] = 0L;
3134                         }
3135                 }
3136
3137                 num_msgs = sort_msglist(msglist, num_msgs);
3138                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
3139                           msglist, (int)(num_msgs * sizeof(long)));
3140
3141                 qrbuf.QRhighest = msglist[num_msgs - 1];
3142         }
3143         lputroom(&qrbuf);
3144
3145         /*
3146          * If the delete operation is "deferred" (and technically, any delete
3147          * operation not performed by THE DREADED AUTO-PURGER ought to be
3148          * a deferred delete) then we save a pointer to the message in the
3149          * DELETED_MSGS_ROOM.  This will cause the reference count to remain
3150          * at least 1, which will save the user from having to synchronously
3151          * wait for various disk-intensive operations to complete.
3152          */
3153         if ( (deferred) && (num_deleted) ) {
3154                 for (i=0; i<num_deleted; ++i) {
3155                         CtdlCopyMsgToRoom(dellist[i], DELETED_MSGS_ROOM);
3156                 }
3157         }
3158
3159         /* Go through the messages we pulled out of the index, and decrement
3160          * their reference counts by 1.  If this is the only room the message
3161          * was in, the reference count will reach zero and the message will
3162          * automatically be deleted from the database.  We do this in a
3163          * separate pass because there might be plug-in hooks getting called,
3164          * and we don't want that happening during an S_ROOMS critical
3165          * section.
3166          */
3167         if (num_deleted) for (i=0; i<num_deleted; ++i) {
3168                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
3169                 AdjRefCount(dellist[i], -1);
3170         }
3171
3172         /* Now free the memory we used, and go away. */
3173         if (msglist != NULL) free(msglist);
3174         if (dellist != NULL) free(dellist);
3175         lprintf(CTDL_DEBUG, "%d message(s) deleted.\n", num_deleted);
3176         return (num_deleted);
3177 }
3178
3179
3180
3181 /*
3182  * Check whether the current user has permission to delete messages from
3183  * the current room (returns 1 for yes, 0 for no)
3184  */
3185 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
3186         getuser(&CC->user, CC->curr_user);
3187         if ((CC->user.axlevel < 6)
3188             && (CC->user.usernum != CC->room.QRroomaide)
3189             && ((CC->room.QRflags & QR_MAILBOX) == 0)
3190             && (!(CC->internal_pgm))) {
3191                 return(0);
3192         }
3193         return(1);
3194 }
3195
3196
3197
3198 /*
3199  * Delete message from current room
3200  */
3201 void cmd_dele(char *delstr)
3202 {
3203         long delnum;
3204         int num_deleted;
3205
3206         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
3207                 cprintf("%d Higher access required.\n",
3208                         ERROR + HIGHER_ACCESS_REQUIRED);
3209                 return;
3210         }
3211         delnum = extract_long(delstr, 0);
3212
3213         num_deleted = CtdlDeleteMessages(CC->room.QRname, delnum, "", 1);
3214
3215         if (num_deleted) {
3216                 cprintf("%d %d message%s deleted.\n", CIT_OK,
3217                         num_deleted, ((num_deleted != 1) ? "s" : ""));
3218         } else {
3219                 cprintf("%d Message %ld not found.\n", ERROR + MESSAGE_NOT_FOUND, delnum);
3220         }
3221 }
3222
3223
3224 /*
3225  * Back end API function for moves and deletes
3226  */
3227 int CtdlCopyMsgToRoom(long msgnum, char *dest) {
3228         int err;
3229
3230         err = CtdlSaveMsgPointerInRoom(dest, msgnum,
3231                 (SM_VERIFY_GOODNESS | SM_DO_REPL_CHECK) );
3232         if (err != 0) return(err);
3233
3234         return(0);
3235 }
3236
3237
3238
3239 /*
3240  * move or copy a message to another room
3241  */
3242 void cmd_move(char *args)
3243 {
3244         long num;
3245         char targ[ROOMNAMELEN];
3246         struct ctdlroom qtemp;
3247         int err;
3248         int is_copy = 0;
3249         int ra;
3250         int permit = 0;
3251
3252         num = extract_long(args, 0);
3253         extract_token(targ, args, 1, '|', sizeof targ);
3254         targ[ROOMNAMELEN - 1] = 0;
3255         is_copy = extract_int(args, 2);
3256
3257         if (getroom(&qtemp, targ) != 0) {
3258                 cprintf("%d '%s' does not exist.\n",
3259                         ERROR + ROOM_NOT_FOUND, targ);
3260                 return;
3261         }
3262
3263         getuser(&CC->user, CC->curr_user);
3264         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
3265
3266         /* Check for permission to perform this operation.
3267          * Remember: "CC->room" is source, "qtemp" is target.
3268          */
3269         permit = 0;
3270
3271         /* Aides can move/copy */
3272         if (CC->user.axlevel >= 6) permit = 1;
3273
3274         /* Room aides can move/copy */
3275         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
3276
3277         /* Permit move/copy from personal rooms */
3278         if ((CC->room.QRflags & QR_MAILBOX)
3279            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3280
3281         /* Permit only copy from public to personal room */
3282         if ( (is_copy)
3283            && (!(CC->room.QRflags & QR_MAILBOX))
3284            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
3285
3286         /* User must have access to target room */
3287         if (!(ra & UA_KNOWN))  permit = 0;
3288
3289         if (!permit) {
3290                 cprintf("%d Higher access required.\n",
3291                         ERROR + HIGHER_ACCESS_REQUIRED);
3292                 return;
3293         }
3294
3295         err = CtdlCopyMsgToRoom(num, targ);
3296         if (err != 0) {
3297                 cprintf("%d Cannot store message in %s: error %d\n",
3298                         err, targ, err);
3299                 return;
3300         }
3301
3302         /* Now delete the message from the source room,
3303          * if this is a 'move' rather than a 'copy' operation.
3304          */
3305         if (is_copy == 0) {
3306                 CtdlDeleteMessages(CC->room.QRname, num, "", 0);
3307         }
3308
3309         cprintf("%d Message %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
3310 }
3311
3312
3313
3314 /*
3315  * GetMetaData()  -  Get the supplementary record for a message
3316  */
3317 void GetMetaData(struct MetaData *smibuf, long msgnum)
3318 {
3319
3320         struct cdbdata *cdbsmi;
3321         long TheIndex;
3322
3323         memset(smibuf, 0, sizeof(struct MetaData));
3324         smibuf->meta_msgnum = msgnum;
3325         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
3326
3327         /* Use the negative of the message number for its supp record index */
3328         TheIndex = (0L - msgnum);
3329
3330         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
3331         if (cdbsmi == NULL) {
3332                 return;         /* record not found; go with defaults */
3333         }
3334         memcpy(smibuf, cdbsmi->ptr,
3335                ((cdbsmi->len > sizeof(struct MetaData)) ?
3336                 sizeof(struct MetaData) : cdbsmi->len));
3337         cdb_free(cdbsmi);
3338         return;
3339 }
3340
3341
3342 /*
3343  * PutMetaData()  -  (re)write supplementary record for a message
3344  */
3345 void PutMetaData(struct MetaData *smibuf)
3346 {
3347         long TheIndex;
3348
3349         /* Use the negative of the message number for the metadata db index */
3350         TheIndex = (0L - smibuf->meta_msgnum);
3351
3352         lprintf(CTDL_DEBUG, "PutMetaData(%ld) - ref count is %d\n",
3353                 smibuf->meta_msgnum, smibuf->meta_refcount);
3354
3355         cdb_store(CDB_MSGMAIN,
3356                   &TheIndex, (int)sizeof(long),
3357                   smibuf, (int)sizeof(struct MetaData));
3358
3359 }
3360
3361 /*
3362  * AdjRefCount  -  change the reference count for a message;
3363  *               delete the message if it reaches zero
3364  */
3365 void AdjRefCount(long msgnum, int incr)
3366 {
3367
3368         struct MetaData smi;
3369         long delnum;
3370
3371         /* This is a *tight* critical section; please keep it that way, as
3372          * it may get called while nested in other critical sections.  
3373          * Complicating this any further will surely cause deadlock!
3374          */
3375         begin_critical_section(S_SUPPMSGMAIN);
3376         GetMetaData(&smi, msgnum);
3377         smi.meta_refcount += incr;
3378         PutMetaData(&smi);
3379         end_critical_section(S_SUPPMSGMAIN);
3380         lprintf(CTDL_DEBUG, "msg %ld ref count incr %d, is now %d\n",
3381                 msgnum, incr, smi.meta_refcount);
3382
3383         /* If the reference count is now zero, delete the message
3384          * (and its supplementary record as well).
3385          * FIXME ... defer this so it doesn't keep the user waiting.
3386          */
3387         if (smi.meta_refcount == 0) {
3388                 lprintf(CTDL_DEBUG, "Deleting message <%ld>\n", msgnum);
3389
3390                 /* Remove from fulltext index */
3391                 if (config.c_enable_fulltext) {
3392                         ft_index_message(msgnum, 0);
3393                 }
3394
3395                 /* Remove from message base */
3396                 delnum = msgnum;
3397                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3398                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
3399
3400                 /* Remove metadata record */
3401                 delnum = (0L - msgnum);
3402                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
3403         }
3404 }
3405
3406 /*
3407  * Write a generic object to this room
3408  *
3409  * Note: this could be much more efficient.  Right now we use two temporary
3410  * files, and still pull the message into memory as with all others.
3411  */
3412 void CtdlWriteObject(char *req_room,            /* Room to stuff it in */
3413                         char *content_type,     /* MIME type of this object */
3414                         char *tempfilename,     /* Where to fetch it from */
3415                         struct ctdluser *is_mailbox,    /* Mailbox room? */
3416                         int is_binary,          /* Is encoding necessary? */
3417                         int is_unique,          /* Del others of this type? */
3418                         unsigned int flags      /* Internal save flags */
3419                         )
3420 {
3421
3422         FILE *fp;
3423         struct ctdlroom qrbuf;
3424         char roomname[ROOMNAMELEN];
3425         struct CtdlMessage *msg;
3426
3427         char *raw_message = NULL;
3428         char *encoded_message = NULL;
3429         off_t raw_length = 0;
3430
3431         if (is_mailbox != NULL)
3432                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
3433         else
3434                 safestrncpy(roomname, req_room, sizeof(roomname));
3435         lprintf(CTDL_DEBUG, "CtdlWriteObject() to <%s> (flags=%d)\n", roomname, flags);
3436
3437
3438         fp = fopen(tempfilename, "rb");
3439         if (fp == NULL) {
3440                 lprintf(CTDL_CRIT, "Cannot open %s: %s\n",
3441                         tempfilename, strerror(errno));
3442                 return;
3443         }
3444         fseek(fp, 0L, SEEK_END);
3445         raw_length = ftell(fp);
3446         rewind(fp);
3447         lprintf(CTDL_DEBUG, "Raw length is %ld\n", (long)raw_length);
3448
3449         raw_message = malloc((size_t)raw_length + 2);
3450         fread(raw_message, (size_t)raw_length, 1, fp);
3451         fclose(fp);
3452
3453         if (is_binary) {
3454                 encoded_message = malloc((size_t)
3455                         (((raw_length * 134) / 100) + 4096 ) );
3456         }
3457         else {
3458                 encoded_message = malloc((size_t)(raw_length + 4096));
3459         }
3460
3461         sprintf(encoded_message, "Content-type: %s\n", content_type);
3462
3463         if (is_binary) {
3464                 sprintf(&encoded_message[strlen(encoded_message)],
3465                         "Content-transfer-encoding: base64\n\n"
3466                 );
3467         }
3468         else {
3469                 sprintf(&encoded_message[strlen(encoded_message)],
3470                         "Content-transfer-encoding: 7bit\n\n"
3471                 );
3472         }
3473
3474         if (is_binary) {
3475                 CtdlEncodeBase64(
3476                         &encoded_message[strlen(encoded_message)],
3477                         raw_message,
3478                         (int)raw_length
3479                 );
3480         }
3481         else {
3482                 raw_message[raw_length] = 0;
3483                 memcpy(
3484                         &encoded_message[strlen(encoded_message)],
3485                         raw_message,
3486                         (int)(raw_length+1)
3487                 );
3488         }
3489
3490         free(raw_message);
3491
3492         lprintf(CTDL_DEBUG, "Allocating\n");
3493         msg = malloc(sizeof(struct CtdlMessage));
3494         memset(msg, 0, sizeof(struct CtdlMessage));
3495         msg->cm_magic = CTDLMESSAGE_MAGIC;
3496         msg->cm_anon_type = MES_NORMAL;
3497         msg->cm_format_type = 4;
3498         msg->cm_fields['A'] = strdup(CC->user.fullname);
3499         msg->cm_fields['O'] = strdup(req_room);
3500         msg->cm_fields['N'] = strdup(config.c_nodename);
3501         msg->cm_fields['H'] = strdup(config.c_humannode);
3502         msg->cm_flags = flags;
3503         
3504         msg->cm_fields['M'] = encoded_message;
3505
3506         /* Create the requested room if we have to. */
3507         if (getroom(&qrbuf, roomname) != 0) {
3508                 create_room(roomname, 
3509                         ( (is_mailbox != NULL) ? 5 : 3 ),
3510                         "", 0, 1, 0, VIEW_BBS);
3511         }
3512         /* If the caller specified this object as unique, delete all
3513          * other objects of this type that are currently in the room.
3514          */
3515         if (is_unique) {
3516                 lprintf(CTDL_DEBUG, "Deleted %d other msgs of this type\n",
3517                         CtdlDeleteMessages(roomname, 0L, content_type, 0)
3518                 );
3519         }
3520         /* Now write the data */
3521         CtdlSubmitMsg(msg, NULL, roomname);
3522         CtdlFreeMessage(msg);
3523 }
3524
3525
3526
3527
3528
3529
3530 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
3531         config_msgnum = msgnum;
3532 }
3533
3534
3535 char *CtdlGetSysConfig(char *sysconfname) {
3536         char hold_rm[ROOMNAMELEN];
3537         long msgnum;
3538         char *conf;
3539         struct CtdlMessage *msg;
3540         char buf[SIZ];
3541         
3542         strcpy(hold_rm, CC->room.QRname);
3543         if (getroom(&CC->room, SYSCONFIGROOM) != 0) {
3544                 getroom(&CC->room, hold_rm);
3545                 return NULL;
3546         }
3547
3548
3549         /* We want the last (and probably only) config in this room */
3550         begin_critical_section(S_CONFIG);
3551         config_msgnum = (-1L);
3552         CtdlForEachMessage(MSGS_LAST, 1, sysconfname, NULL,
3553                 CtdlGetSysConfigBackend, NULL);
3554         msgnum = config_msgnum;
3555         end_critical_section(S_CONFIG);
3556
3557         if (msgnum < 0L) {
3558                 conf = NULL;
3559         }
3560         else {
3561                 msg = CtdlFetchMessage(msgnum, 1);
3562                 if (msg != NULL) {
3563                         conf = strdup(msg->cm_fields['M']);
3564                         CtdlFreeMessage(msg);
3565                 }
3566                 else {
3567                         conf = NULL;
3568                 }
3569         }
3570
3571         getroom(&CC->room, hold_rm);
3572
3573         if (conf != NULL) do {
3574                 extract_token(buf, conf, 0, '\n', sizeof buf);
3575                 strcpy(conf, &conf[strlen(buf)+1]);
3576         } while ( (strlen(conf)>0) && (strlen(buf)>0) );
3577
3578         return(conf);
3579 }
3580
3581 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
3582         char temp[PATH_MAX];
3583         FILE *fp;
3584
3585         strcpy(temp, tmpnam(NULL));
3586
3587         fp = fopen(temp, "w");
3588         if (fp == NULL) return;
3589         fprintf(fp, "%s", sysconfdata);
3590         fclose(fp);
3591
3592         /* this handy API function does all the work for us */
3593         CtdlWriteObject(SYSCONFIGROOM, sysconfname, temp, NULL, 0, 1, 0);
3594         unlink(temp);
3595 }
3596
3597
3598 /*
3599  * Determine whether a given Internet address belongs to the current user
3600  */
3601 int CtdlIsMe(char *addr, int addr_buf_len)
3602 {
3603         struct recptypes *recp;
3604         int i;
3605
3606         recp = validate_recipients(addr);
3607         if (recp == NULL) return(0);
3608
3609         if (recp->num_local == 0) {
3610                 free(recp);
3611                 return(0);
3612         }
3613
3614         for (i=0; i<recp->num_local; ++i) {
3615                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
3616                 if (!strcasecmp(addr, CC->user.fullname)) {
3617                         free(recp);
3618                         return(1);
3619                 }
3620         }
3621
3622         free(recp);
3623         return(0);
3624 }
3625
3626
3627 /*
3628  * Citadel protocol command to do the same
3629  */
3630 void cmd_isme(char *argbuf) {
3631         char addr[256];
3632
3633         if (CtdlAccessCheck(ac_logged_in)) return;
3634         extract_token(addr, argbuf, 0, '|', sizeof addr);
3635
3636         if (CtdlIsMe(addr, sizeof addr)) {
3637                 cprintf("%d %s\n", CIT_OK, addr);
3638         }
3639         else {
3640                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
3641         }
3642
3643 }