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