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