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