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