d290e192f0239d034feb68ffa078533e8a27d0b8
[citadel.git] / citadel / msgbase.c
1 /*
2  * $Id$
3  *
4  * Implements the message store.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13
14 #if TIME_WITH_SYS_TIME
15 # include <sys/time.h>
16 # include <time.h>
17 #else
18 # if HAVE_SYS_TIME_H
19 #  include <sys/time.h>
20 # else
21 #  include <time.h>
22 # endif
23 #endif
24
25
26 #include <ctype.h>
27 #include <string.h>
28 #include <limits.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 #include <regex.h>
34 #include <libcitadel.h>
35 #include "citadel.h"
36 #include "server.h"
37 #include "serv_extensions.h"
38 #include "database.h"
39 #include "msgbase.h"
40 #include "support.h"
41 #include "sysdep_decls.h"
42 #include "citserver.h"
43 #include "room_ops.h"
44 #include "user_ops.h"
45 #include "file_ops.h"
46 #include "config.h"
47 #include "control.h"
48 #include "genstamp.h"
49 #include "internet_addressing.h"
50 #include "euidindex.h"
51 #include "journaling.h"
52 #include "citadel_dirs.h"
53 #include "clientsocket.h"
54 #include "serv_network.h"
55 #include "threads.h"
56
57 long config_msgnum;
58 struct addresses_to_be_filed *atbf = NULL;
59
60 /* This temp file holds the queue of operations for AdjRefCount() */
61 static FILE *arcfp = NULL;
62
63 /* 
64  * This really belongs in serv_network.c, but I don't know how to export
65  * symbols between modules.
66  */
67 struct FilterList *filterlist = NULL;
68
69
70 /*
71  * These are the four-character field headers we use when outputting
72  * messages in Citadel format (as opposed to RFC822 format).
73  */
74 char *msgkeys[] = {
75         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
76         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
77         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
78         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
79         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
80         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
81         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
82         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
83         NULL, 
84         "from",
85         NULL, NULL, NULL,
86         "exti",
87         "rfca",
88         NULL, 
89         "hnod",
90         "msgn",
91         "jrnl",
92         NULL,
93         "list",
94         "text",
95         "node",
96         "room",
97         "path",
98         NULL,
99         "rcpt",
100         "spec",
101         "time",
102         "subj",
103         NULL,
104         "wefw",
105         NULL,
106         "cccc",
107         NULL
108 };
109
110 /*
111  * This function is self explanatory.
112  * (What can I say, I'm in a weird mood today...)
113  */
114 void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
115 {
116         int i;
117
118         for (i = 0; i < strlen(name); ++i) {
119                 if (name[i] == '@') {
120                         while (isspace(name[i - 1]) && i > 0) {
121                                 strcpy(&name[i - 1], &name[i]);
122                                 --i;
123                         }
124                         while (isspace(name[i + 1])) {
125                                 strcpy(&name[i + 1], &name[i + 2]);
126                         }
127                 }
128         }
129 }
130
131
132 /*
133  * Aliasing for network mail.
134  * (Error messages have been commented out, because this is a server.)
135  */
136 int alias(char *name)
137 {                               /* process alias and routing info for mail */
138         FILE *fp;
139         int a, i;
140         char aaa[SIZ], bbb[SIZ];
141         char *ignetcfg = NULL;
142         char *ignetmap = NULL;
143         int at = 0;
144         char node[64];
145         char testnode[64];
146         char buf[SIZ];
147
148         char original_name[256];
149         safestrncpy(original_name, name, sizeof original_name);
150
151         striplt(name);
152         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
153         stripallbut(name, '<', '>');
154
155         fp = fopen(file_mail_aliases, "r");
156         if (fp == NULL) {
157                 fp = fopen("/dev/null", "r");
158         }
159         if (fp == NULL) {
160                 return (MES_ERROR);
161         }
162         strcpy(aaa, "");
163         strcpy(bbb, "");
164         while (fgets(aaa, sizeof aaa, fp) != NULL) {
165                 while (isspace(name[0]))
166                         strcpy(name, &name[1]);
167                 aaa[strlen(aaa) - 1] = 0;
168                 strcpy(bbb, "");
169                 for (a = 0; a < strlen(aaa); ++a) {
170                         if (aaa[a] == ',') {
171                                 strcpy(bbb, &aaa[a + 1]);
172                                 aaa[a] = 0;
173                         }
174                 }
175                 if (!strcasecmp(name, aaa))
176                         strcpy(name, bbb);
177         }
178         fclose(fp);
179
180         /* Hit the Global Address Book */
181         if (CtdlDirectoryLookup(aaa, name, sizeof aaa) == 0) {
182                 strcpy(name, aaa);
183         }
184
185         if (strcasecmp(original_name, name)) {
186                 CtdlLogPrintf(CTDL_INFO, "%s is being forwarded to %s\n", original_name, name);
187         }
188
189         /* Change "user @ xxx" to "user" if xxx is an alias for this host */
190         for (a=0; a<strlen(name); ++a) {
191                 if (name[a] == '@') {
192                         if (CtdlHostAlias(&name[a+1]) == hostalias_localhost) {
193                                 name[a] = 0;
194                                 CtdlLogPrintf(CTDL_INFO, "Changed to <%s>\n", name);
195                         }
196                 }
197         }
198
199         /* determine local or remote type, see citadel.h */
200         at = haschar(name, '@');
201         if (at == 0) return(MES_LOCAL);         /* no @'s - local address */
202         if (at > 1) return(MES_ERROR);          /* >1 @'s - invalid address */
203         remove_any_whitespace_to_the_left_or_right_of_at_symbol(name);
204
205         /* figure out the delivery mode */
206         extract_token(node, name, 1, '@', sizeof node);
207
208         /* If there are one or more dots in the nodename, we assume that it
209          * is an FQDN and will attempt SMTP delivery to the Internet.
210          */
211         if (haschar(node, '.') > 0) {
212                 return(MES_INTERNET);
213         }
214
215         /* Otherwise we look in the IGnet maps for a valid Citadel node.
216          * Try directly-connected nodes first...
217          */
218         ignetcfg = CtdlGetSysConfig(IGNETCFG);
219         for (i=0; i<num_tokens(ignetcfg, '\n'); ++i) {
220                 extract_token(buf, ignetcfg, i, '\n', sizeof buf);
221                 extract_token(testnode, buf, 0, '|', sizeof testnode);
222                 if (!strcasecmp(node, testnode)) {
223                         free(ignetcfg);
224                         return(MES_IGNET);
225                 }
226         }
227         free(ignetcfg);
228
229         /*
230          * Then try nodes that are two or more hops away.
231          */
232         ignetmap = CtdlGetSysConfig(IGNETMAP);
233         for (i=0; i<num_tokens(ignetmap, '\n'); ++i) {
234                 extract_token(buf, ignetmap, i, '\n', sizeof buf);
235                 extract_token(testnode, buf, 0, '|', sizeof testnode);
236                 if (!strcasecmp(node, testnode)) {
237                         free(ignetmap);
238                         return(MES_IGNET);
239                 }
240         }
241         free(ignetmap);
242
243         /* If we get to this point it's an invalid node name */
244         return (MES_ERROR);
245 }
246
247
248 /*
249  * Back end for the MSGS command: output message number only.
250  */
251 void simple_listing(long msgnum, void *userdata)
252 {
253         cprintf("%ld\n", msgnum);
254 }
255
256
257
258 /*
259  * Back end for the MSGS command: output header summary.
260  */
261 void headers_listing(long msgnum, void *userdata)
262 {
263         struct CtdlMessage *msg;
264
265         msg = CtdlFetchMessage(msgnum, 0);
266         if (msg == NULL) {
267                 cprintf("%ld|0|||||\n", msgnum);
268                 return;
269         }
270
271         cprintf("%ld|%s|%s|%s|%s|%s|\n",
272                 msgnum,
273                 (msg->cm_fields['T'] ? msg->cm_fields['T'] : "0"),
274                 (msg->cm_fields['A'] ? msg->cm_fields['A'] : ""),
275                 (msg->cm_fields['N'] ? msg->cm_fields['N'] : ""),
276                 (msg->cm_fields['F'] ? msg->cm_fields['F'] : ""),
277                 (msg->cm_fields['U'] ? msg->cm_fields['U'] : "")
278         );
279         CtdlFreeMessage(msg);
280 }
281
282
283
284 /* Determine if a given message matches the fields in a message template.
285  * Return 0 for a successful match.
286  */
287 int CtdlMsgCmp(struct CtdlMessage *msg, struct CtdlMessage *template) {
288         int i;
289
290         /* If there aren't any fields in the template, all messages will
291          * match.
292          */
293         if (template == NULL) return(0);
294
295         /* Null messages are bogus. */
296         if (msg == NULL) return(1);
297
298         for (i='A'; i<='Z'; ++i) {
299                 if (template->cm_fields[i] != NULL) {
300                         if (msg->cm_fields[i] == NULL) {
301                                 return 1;
302                         }
303                         if (strcasecmp(msg->cm_fields[i],
304                                 template->cm_fields[i])) return 1;
305                 }
306         }
307
308         /* All compares succeeded: we have a match! */
309         return 0;
310 }
311
312
313
314 /*
315  * Retrieve the "seen" message list for the current room.
316  */
317 void CtdlGetSeen(char *buf, int which_set) {
318         struct visit vbuf;
319
320         /* Learn about the user and room in question */
321         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
322
323         if (which_set == ctdlsetseen_seen)
324                 safestrncpy(buf, vbuf.v_seen, SIZ);
325         if (which_set == ctdlsetseen_answered)
326                 safestrncpy(buf, vbuf.v_answered, SIZ);
327 }
328
329
330
331 /*
332  * Manipulate the "seen msgs" string (or other message set strings)
333  */
334 void CtdlSetSeen(long *target_msgnums, int num_target_msgnums,
335                 int target_setting, int which_set,
336                 struct ctdluser *which_user, struct ctdlroom *which_room) {
337         struct cdbdata *cdbfr;
338         int i, j, k;
339         int is_seen = 0;
340         int was_seen = 0;
341         long lo = (-1L);
342         long hi = (-1L);
343         struct visit vbuf;
344         long *msglist;
345         int num_msgs = 0;
346         char vset[SIZ];
347         char *is_set;   /* actually an array of booleans */
348         int num_sets;
349         int s;
350         int w = 0;
351         char setstr[SIZ], lostr[SIZ], histr[SIZ];
352
353         /* Don't bother doing *anything* if we were passed a list of zero messages */
354         if (num_target_msgnums < 1) {
355                 return;
356         }
357
358         /* If no room was specified, we go with the current room. */
359         if (!which_room) {
360                 which_room = &CC->room;
361         }
362
363         /* If no user was specified, we go with the current user. */
364         if (!which_user) {
365                 which_user = &CC->user;
366         }
367
368         CtdlLogPrintf(CTDL_DEBUG, "CtdlSetSeen(%d msgs starting with %ld, %s, %d) in <%s>\n",
369                 num_target_msgnums, target_msgnums[0],
370                 (target_setting ? "SET" : "CLEAR"),
371                 which_set,
372                 which_room->QRname);
373
374         /* Learn about the user and room in question */
375         CtdlGetRelationship(&vbuf, which_user, which_room);
376
377         /* Load the message list */
378         cdbfr = cdb_fetch(CDB_MSGLISTS, &which_room->QRnumber, sizeof(long));
379         if (cdbfr != NULL) {
380                 msglist = (long *) cdbfr->ptr;
381                 cdbfr->ptr = NULL;      /* CtdlSetSeen() now owns this memory */
382                 num_msgs = cdbfr->len / sizeof(long);
383                 cdb_free(cdbfr);
384         } else {
385                 return; /* No messages at all?  No further action. */
386         }
387
388         is_set = malloc(num_msgs * sizeof(char));
389         memset(is_set, 0, (num_msgs * sizeof(char)) );
390
391         /* Decide which message set we're manipulating */
392         switch(which_set) {
393                 case ctdlsetseen_seen:
394                         safestrncpy(vset, vbuf.v_seen, sizeof vset);
395                         break;
396                 case ctdlsetseen_answered:
397                         safestrncpy(vset, vbuf.v_answered, sizeof vset);
398                         break;
399         }
400
401
402 #if 0   /* This is a special diagnostic section.  Do not allow it to run during normal operation. */
403         CtdlLogPrintf(CTDL_DEBUG, "There are %d messages in the room.\n", num_msgs);
404         for (i=0; i<num_msgs; ++i) {
405                 if ((i > 0) && (msglist[i] <= msglist[i-1])) abort();
406         }
407         CtdlLogPrintf(CTDL_DEBUG, "We are twiddling %d of them.\n", num_target_msgnums);
408         for (k=0; k<num_target_msgnums; ++k) {
409                 if ((k > 0) && (target_msgnums[k] <= target_msgnums[k-1])) abort();
410         }
411 #endif
412
413         CtdlLogPrintf(CTDL_DEBUG, "before update: %s\n", vset);
414
415         /* Translate the existing sequence set into an array of booleans */
416         num_sets = num_tokens(vset, ',');
417         for (s=0; s<num_sets; ++s) {
418                 extract_token(setstr, vset, s, ',', sizeof setstr);
419
420                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
421                 if (num_tokens(setstr, ':') >= 2) {
422                         extract_token(histr, setstr, 1, ':', sizeof histr);
423                 }
424                 else {
425                         strcpy(histr, lostr);
426                 }
427                 lo = atol(lostr);
428                 if (!strcmp(histr, "*")) {
429                         hi = LONG_MAX;
430                 }
431                 else {
432                         hi = atol(histr);
433                 }
434
435                 for (i = 0; i < num_msgs; ++i) {
436                         if ((msglist[i] >= lo) && (msglist[i] <= hi)) {
437                                 is_set[i] = 1;
438                         }
439                 }
440         }
441
442
443         /* Now translate the array of booleans back into a sequence set */
444         strcpy(vset, "");
445         was_seen = 0;
446         lo = (-1);
447         hi = (-1);
448
449         for (i=0; i<num_msgs; ++i) {
450                 is_seen = is_set[i];
451
452                 /* Apply changes */
453                 for (k=0; k<num_target_msgnums; ++k) {
454                         if (msglist[i] == target_msgnums[k]) {
455                                 is_seen = target_setting;
456                         }
457                 }
458
459                 w = 0;  /* set to 1 if we write something to the string */
460
461                 if ((was_seen == 0) && (is_seen == 1)) {
462                         lo = msglist[i];
463                 }
464                 else if ((was_seen == 1) && (is_seen == 0)) {
465                         hi = msglist[i-1];
466                         w = 1;
467
468                         if (!IsEmptyStr(vset)) {
469                                 strcat(vset, ",");
470                         }
471                         if (lo == hi) {
472                                 sprintf(&vset[strlen(vset)], "%ld", hi);
473                         }
474                         else {
475                                 sprintf(&vset[strlen(vset)], "%ld:%ld", lo, hi);
476                         }
477                 }
478                 else if ((is_seen) && (i == num_msgs - 1)) {
479                         w = 1;
480                         if (!IsEmptyStr(vset)) {
481                                 strcat(vset, ",");
482                         }
483                         if ((i==0) || (was_seen == 0)) {
484                                 sprintf(&vset[strlen(vset)], "%ld", msglist[i]);
485                         }
486                         else {
487                                 sprintf(&vset[strlen(vset)], "%ld:%ld", lo, msglist[i]);
488                         }
489                 }
490
491                 /* If the string is getting too long, truncate it at the beginning; repeat up to 9 times */
492                 if (w) for (j=0; j<9; ++j) {
493                         if ((strlen(vset) + 20) > sizeof vset) {
494                                 remove_token(vset, 0, ',');
495                                 if (which_set == ctdlsetseen_seen) {
496                                         char temp[SIZ];
497                                         sprintf(temp, "1:%ld,", atol(vset)-1L);
498                                         strcat(temp, vset);
499                                         strcpy(vset, temp);
500                                 }
501                         }
502                 }
503
504                 was_seen = is_seen;
505         }
506
507         CtdlLogPrintf(CTDL_DEBUG, " after update: %s\n", vset);
508
509         /* Decide which message set we're manipulating */
510         switch (which_set) {
511                 case ctdlsetseen_seen:
512                         safestrncpy(vbuf.v_seen, vset, sizeof vbuf.v_seen);
513                         break;
514                 case ctdlsetseen_answered:
515                         safestrncpy(vbuf.v_answered, vset, sizeof vbuf.v_answered);
516                         break;
517         }
518
519         free(is_set);
520         free(msglist);
521         CtdlSetRelationship(&vbuf, which_user, which_room);
522 }
523
524
525 /*
526  * API function to perform an operation for each qualifying message in the
527  * current room.  (Returns the number of messages processed.)
528  */
529 int CtdlForEachMessage(int mode, long ref, char *search_string,
530                         char *content_type,
531                         struct CtdlMessage *compare,
532                         void (*CallBack) (long, void *),
533                         void *userdata)
534 {
535
536         int a, i, j;
537         struct visit vbuf;
538         struct cdbdata *cdbfr;
539         long *msglist = NULL;
540         int num_msgs = 0;
541         int num_processed = 0;
542         long thismsg;
543         struct MetaData smi;
544         struct CtdlMessage *msg = NULL;
545         int is_seen = 0;
546         long lastold = 0L;
547         int printed_lastold = 0;
548         int num_search_msgs = 0;
549         long *search_msgs = NULL;
550         regex_t re;
551         int need_to_free_re = 0;
552         regmatch_t pm;
553
554         if ((content_type) && (!IsEmptyStr(content_type))) {
555                 regcomp(&re, content_type, 0);
556                 need_to_free_re = 1;
557         }
558
559         /* Learn about the user and room in question */
560         getuser(&CC->user, CC->curr_user);
561         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
562
563         /* Load the message list */
564         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
565         if (cdbfr != NULL) {
566                 msglist = (long *) cdbfr->ptr;
567                 num_msgs = cdbfr->len / sizeof(long);
568         } else {
569                 if (need_to_free_re) regfree(&re);
570                 return 0;       /* No messages at all?  No further action. */
571         }
572
573
574         /*
575          * Now begin the traversal.
576          */
577         if (num_msgs > 0) for (a = 0; a < num_msgs; ++a) {
578
579                 /* If the caller is looking for a specific MIME type, filter
580                  * out all messages which are not of the type requested.
581                  */
582                 if ((content_type != NULL) && (!IsEmptyStr(content_type))) {
583
584                         /* This call to GetMetaData() sits inside this loop
585                          * so that we only do the extra database read per msg
586                          * if we need to.  Doing the extra read all the time
587                          * really kills the server.  If we ever need to use
588                          * metadata for another search criterion, we need to
589                          * move the read somewhere else -- but still be smart
590                          * enough to only do the read if the caller has
591                          * specified something that will need it.
592                          */
593                         GetMetaData(&smi, msglist[a]);
594
595                         /* if (strcasecmp(smi.meta_content_type, content_type)) { old non-regex way */
596                         if (regexec(&re, smi.meta_content_type, 1, &pm, 0) != 0) {
597                                 msglist[a] = 0L;
598                         }
599                 }
600         }
601
602         num_msgs = sort_msglist(msglist, num_msgs);
603
604         /* If a template was supplied, filter out the messages which
605          * don't match.  (This could induce some delays!)
606          */
607         if (num_msgs > 0) {
608                 if (compare != NULL) {
609                         for (a = 0; a < num_msgs; ++a) {
610                                 msg = CtdlFetchMessage(msglist[a], 1);
611                                 if (msg != NULL) {
612                                         if (CtdlMsgCmp(msg, compare)) {
613                                                 msglist[a] = 0L;
614                                         }
615                                         CtdlFreeMessage(msg);
616                                 }
617                         }
618                 }
619         }
620
621         /* If a search string was specified, get a message list from
622          * the full text index and remove messages which aren't on both
623          * lists.
624          *
625          * How this works:
626          * Since the lists are sorted and strictly ascending, and the
627          * output list is guaranteed to be shorter than or equal to the
628          * input list, we overwrite the bottom of the input list.  This
629          * eliminates the need to memmove big chunks of the list over and
630          * over again.
631          */
632         if ( (num_msgs > 0) && (mode == MSGS_SEARCH) && (search_string) ) {
633
634                 /* Call search module via hook mechanism.
635                  * NULL means use any search function available.
636                  * otherwise replace with a char * to name of search routine
637                  */
638                 CtdlModuleDoSearch(&num_search_msgs, &search_msgs, search_string, "fulltext");
639
640                 if (num_search_msgs > 0) {
641         
642                         int orig_num_msgs;
643
644                         orig_num_msgs = num_msgs;
645                         num_msgs = 0;
646                         for (i=0; i<orig_num_msgs; ++i) {
647                                 for (j=0; j<num_search_msgs; ++j) {
648                                         if (msglist[i] == search_msgs[j]) {
649                                                 msglist[num_msgs++] = msglist[i];
650                                         }
651                                 }
652                         }
653                 }
654                 else {
655                         num_msgs = 0;   /* No messages qualify */
656                 }
657                 if (search_msgs != NULL) free(search_msgs);
658
659                 /* Now that we've purged messages which don't contain the search
660                  * string, treat a MSGS_SEARCH just like a MSGS_ALL from this
661                  * point on.
662                  */
663                 mode = MSGS_ALL;
664         }
665
666         /*
667          * Now iterate through the message list, according to the
668          * criteria supplied by the caller.
669          */
670         if (num_msgs > 0)
671                 for (a = 0; a < num_msgs; ++a) {
672                         thismsg = msglist[a];
673                         if (mode == MSGS_ALL) {
674                                 is_seen = 0;
675                         }
676                         else {
677                                 is_seen = is_msg_in_sequence_set(
678                                                         vbuf.v_seen, thismsg);
679                                 if (is_seen) lastold = thismsg;
680                         }
681                         if ((thismsg > 0L)
682                             && (
683
684                                        (mode == MSGS_ALL)
685                                        || ((mode == MSGS_OLD) && (is_seen))
686                                        || ((mode == MSGS_NEW) && (!is_seen))
687                                        || ((mode == MSGS_LAST) && (a >= (num_msgs - ref)))
688                                    || ((mode == MSGS_FIRST) && (a < ref))
689                                 || ((mode == MSGS_GT) && (thismsg > ref))
690                                 || ((mode == MSGS_EQ) && (thismsg == ref))
691                             )
692                             ) {
693                                 if ((mode == MSGS_NEW) && (CC->user.flags & US_LASTOLD) && (lastold > 0L) && (printed_lastold == 0) && (!is_seen)) {
694                                         if (CallBack)
695                                                 CallBack(lastold, userdata);
696                                         printed_lastold = 1;
697                                         ++num_processed;
698                                 }
699                                 if (CallBack) CallBack(thismsg, userdata);
700                                 ++num_processed;
701                         }
702                 }
703         cdb_free(cdbfr);        /* Clean up */
704         if (need_to_free_re) regfree(&re);
705         return num_processed;
706 }
707
708
709
710 /*
711  * cmd_msgs()  -  get list of message #'s in this room
712  *              implements the MSGS server command using CtdlForEachMessage()
713  */
714 void cmd_msgs(char *cmdbuf)
715 {
716         int mode = 0;
717         char which[16];
718         char buf[256];
719         char tfield[256];
720         char tvalue[256];
721         int cm_ref = 0;
722         int i;
723         int with_template = 0;
724         struct CtdlMessage *template = NULL;
725         int with_headers = 0;
726         char search_string[1024];
727
728         extract_token(which, cmdbuf, 0, '|', sizeof which);
729         cm_ref = extract_int(cmdbuf, 1);
730         extract_token(search_string, cmdbuf, 1, '|', sizeof search_string);
731         with_template = extract_int(cmdbuf, 2);
732         with_headers = extract_int(cmdbuf, 3);
733
734         strcat(which, "   ");
735         if (!strncasecmp(which, "OLD", 3))
736                 mode = MSGS_OLD;
737         else if (!strncasecmp(which, "NEW", 3))
738                 mode = MSGS_NEW;
739         else if (!strncasecmp(which, "FIRST", 5))
740                 mode = MSGS_FIRST;
741         else if (!strncasecmp(which, "LAST", 4))
742                 mode = MSGS_LAST;
743         else if (!strncasecmp(which, "GT", 2))
744                 mode = MSGS_GT;
745         else if (!strncasecmp(which, "SEARCH", 6))
746                 mode = MSGS_SEARCH;
747         else
748                 mode = MSGS_ALL;
749
750         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
751                 cprintf("%d not logged in\n", ERROR + NOT_LOGGED_IN);
752                 return;
753         }
754
755         if ( (mode == MSGS_SEARCH) && (!config.c_enable_fulltext) ) {
756                 cprintf("%d Full text index is not enabled on this server.\n",
757                         ERROR + CMD_NOT_SUPPORTED);
758                 return;
759         }
760
761         if (with_template) {
762                 unbuffer_output();
763                 cprintf("%d Send template then receive message list\n",
764                         START_CHAT_MODE);
765                 template = (struct CtdlMessage *)
766                         malloc(sizeof(struct CtdlMessage));
767                 memset(template, 0, sizeof(struct CtdlMessage));
768                 template->cm_magic = CTDLMESSAGE_MAGIC;
769                 template->cm_anon_type = MES_NORMAL;
770
771                 while(client_getln(buf, sizeof buf) >= 0 && strcmp(buf,"000")) {
772                         extract_token(tfield, buf, 0, '|', sizeof tfield);
773                         extract_token(tvalue, buf, 1, '|', sizeof tvalue);
774                         for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
775                                 if (!strcasecmp(tfield, msgkeys[i])) {
776                                         template->cm_fields[i] =
777                                                 strdup(tvalue);
778                                 }
779                         }
780                 }
781                 buffer_output();
782         }
783         else {
784                 cprintf("%d  \n", LISTING_FOLLOWS);
785         }
786
787         CtdlForEachMessage(mode,
788                         ( (mode == MSGS_SEARCH) ? 0 : cm_ref ),
789                         ( (mode == MSGS_SEARCH) ? search_string : NULL ),
790                         NULL,
791                         template,
792                         (with_headers ? headers_listing : simple_listing),
793                         NULL
794         );
795         if (template != NULL) CtdlFreeMessage(template);
796         cprintf("000\n");
797 }
798
799
800
801
802 /* 
803  * help_subst()  -  support routine for help file viewer
804  */
805 void help_subst(char *strbuf, char *source, char *dest)
806 {
807         char workbuf[SIZ];
808         int p;
809
810         while (p = pattern2(strbuf, source), (p >= 0)) {
811                 strcpy(workbuf, &strbuf[p + strlen(source)]);
812                 strcpy(&strbuf[p], dest);
813                 strcat(strbuf, workbuf);
814         }
815 }
816
817
818 void do_help_subst(char *buffer)
819 {
820         char buf2[16];
821
822         help_subst(buffer, "^nodename", config.c_nodename);
823         help_subst(buffer, "^humannode", config.c_humannode);
824         help_subst(buffer, "^fqdn", config.c_fqdn);
825         help_subst(buffer, "^username", CC->user.fullname);
826         snprintf(buf2, sizeof buf2, "%ld", CC->user.usernum);
827         help_subst(buffer, "^usernum", buf2);
828         help_subst(buffer, "^sysadm", config.c_sysadm);
829         help_subst(buffer, "^variantname", CITADEL);
830         snprintf(buf2, sizeof buf2, "%d", config.c_maxsessions);
831         help_subst(buffer, "^maxsessions", buf2);
832         help_subst(buffer, "^bbsdir", ctdl_message_dir);
833 }
834
835
836
837 /*
838  * memfmout()  -  Citadel text formatter and paginator.
839  *           Although the original purpose of this routine was to format
840  *           text to the reader's screen width, all we're really using it
841  *           for here is to format text out to 80 columns before sending it
842  *           to the client.  The client software may reformat it again.
843  */
844 void memfmout(
845         char *mptr,             /* where are we going to get our text from? */
846         char subst,             /* nonzero if we should do substitutions */
847         char *nl)               /* string to terminate lines with */
848 {
849         int a, b, c;
850         int real = 0;
851         int old = 0;
852         cit_uint8_t ch;
853         char aaa[140];
854         char buffer[SIZ];
855         static int width = 80;
856
857         strcpy(aaa, "");
858         old = 255;
859         strcpy(buffer, "");
860         c = 1;                  /* c is the current pos */
861
862         do {
863                 if (subst) {
864                         while (ch = *mptr, ((ch != 0) && (strlen(buffer) < 126))) {
865                                 ch = *mptr++;
866                                 buffer[strlen(buffer) + 1] = 0;
867                                 buffer[strlen(buffer)] = ch;
868                         }
869
870                         if (buffer[0] == '^')
871                                 do_help_subst(buffer);
872
873                         buffer[strlen(buffer) + 1] = 0;
874                         a = buffer[0];
875                         strcpy(buffer, &buffer[1]);
876                 } else {
877                         ch = *mptr++;
878                 }
879
880                 old = real;
881                 real = ch;
882
883                 if (((ch == 13) || (ch == 10)) && (old != 13) && (old != 10)) {
884                         ch = 32;
885                 }
886                 if (((old == 13) || (old == 10)) && (isspace(real))) {
887                         cprintf("%s", nl);
888                         c = 1;
889                 }
890                 if (ch > 32) {
891                         if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
892                                 cprintf("%s%s", nl, aaa);
893                                 c = strlen(aaa);
894                                 aaa[0] = 0;
895                         }
896                         b = strlen(aaa);
897                         aaa[b] = ch;
898                         aaa[b + 1] = 0;
899                 }
900                 if (ch == 32) {
901                         if ((strlen(aaa) + c) > (width - 5)) {
902                                 cprintf("%s", nl);
903                                 c = 1;
904                         }
905                         cprintf("%s ", aaa);
906                         ++c;
907                         c = c + strlen(aaa);
908                         strcpy(aaa, "");
909                 }
910                 if ((ch == 13) || (ch == 10)) {
911                         cprintf("%s%s", aaa, nl);
912                         c = 1;
913                         strcpy(aaa, "");
914                 }
915
916         } while (ch > 0);
917
918         cprintf("%s%s", aaa, nl);
919 }
920
921
922
923 /*
924  * Callback function for mime parser that simply lists the part
925  */
926 void list_this_part(char *name, char *filename, char *partnum, char *disp,
927                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
928                     char *cbid, void *cbuserdata)
929 {
930         struct ma_info *ma;
931         
932         ma = (struct ma_info *)cbuserdata;
933         if (ma->is_ma == 0) {
934                 cprintf("part=%s|%s|%s|%s|%s|%ld|%s\n",
935                         name, filename, partnum, disp, cbtype, (long)length, cbid);
936         }
937 }
938
939 /* 
940  * Callback function for multipart prefix
941  */
942 void list_this_pref(char *name, char *filename, char *partnum, char *disp,
943                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
944                     char *cbid, void *cbuserdata)
945 {
946         struct ma_info *ma;
947         
948         ma = (struct ma_info *)cbuserdata;
949         if (!strcasecmp(cbtype, "multipart/alternative")) {
950                 ++ma->is_ma;
951         }
952
953         if (ma->is_ma == 0) {
954                 cprintf("pref=%s|%s\n", partnum, cbtype);
955         }
956 }
957
958 /* 
959  * Callback function for multipart sufffix
960  */
961 void list_this_suff(char *name, char *filename, char *partnum, char *disp,
962                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
963                     char *cbid, void *cbuserdata)
964 {
965         struct ma_info *ma;
966         
967         ma = (struct ma_info *)cbuserdata;
968         if (ma->is_ma == 0) {
969                 cprintf("suff=%s|%s\n", partnum, cbtype);
970         }
971         if (!strcasecmp(cbtype, "multipart/alternative")) {
972                 --ma->is_ma;
973         }
974 }
975
976
977 /*
978  * Callback function for mime parser that opens a section for downloading
979  */
980 void mime_download(char *name, char *filename, char *partnum, char *disp,
981                    void *content, char *cbtype, char *cbcharset, size_t length,
982                    char *encoding, char *cbid, void *cbuserdata)
983 {
984
985         /* Silently go away if there's already a download open. */
986         if (CC->download_fp != NULL)
987                 return;
988
989         if (
990                 (!IsEmptyStr(partnum) && (!strcasecmp(CC->download_desired_section, partnum)))
991         ||      (!IsEmptyStr(cbid) && (!strcasecmp(CC->download_desired_section, cbid)))
992         ) {
993                 CC->download_fp = tmpfile();
994                 if (CC->download_fp == NULL)
995                         return;
996         
997                 fwrite(content, length, 1, CC->download_fp);
998                 fflush(CC->download_fp);
999                 rewind(CC->download_fp);
1000         
1001                 OpenCmdResult(filename, cbtype);
1002         }
1003 }
1004
1005
1006
1007 /*
1008  * Callback function for mime parser that outputs a section all at once.
1009  * We can specify the desired section by part number *or* content-id.
1010  */
1011 void mime_spew_section(char *name, char *filename, char *partnum, char *disp,
1012                    void *content, char *cbtype, char *cbcharset, size_t length,
1013                    char *encoding, char *cbid, void *cbuserdata)
1014 {
1015         int *found_it = (int *)cbuserdata;
1016
1017         if (
1018                 (!IsEmptyStr(partnum) && (!strcasecmp(CC->download_desired_section, partnum)))
1019         ||      (!IsEmptyStr(cbid) && (!strcasecmp(CC->download_desired_section, cbid)))
1020         ) {
1021                 *found_it = 1;
1022                 cprintf("%d %d|-1|%s|%s\n",
1023                         BINARY_FOLLOWS,
1024                         (int)length,
1025                         filename,
1026                         cbtype
1027                 );
1028                 client_write(content, length);
1029         }
1030 }
1031
1032
1033
1034 /*
1035  * Load a message from disk into memory.
1036  * This is used by CtdlOutputMsg() and other fetch functions.
1037  *
1038  * NOTE: Caller is responsible for freeing the returned CtdlMessage struct
1039  *       using the CtdlMessageFree() function.
1040  */
1041 struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body)
1042 {
1043         struct cdbdata *dmsgtext;
1044         struct CtdlMessage *ret = NULL;
1045         char *mptr;
1046         char *upper_bound;
1047         cit_uint8_t ch;
1048         cit_uint8_t field_header;
1049
1050         CtdlLogPrintf(CTDL_DEBUG, "CtdlFetchMessage(%ld, %d)\n", msgnum, with_body);
1051
1052         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msgnum, sizeof(long));
1053         if (dmsgtext == NULL) {
1054                 return NULL;
1055         }
1056         mptr = dmsgtext->ptr;
1057         upper_bound = mptr + dmsgtext->len;
1058
1059         /* Parse the three bytes that begin EVERY message on disk.
1060          * The first is always 0xFF, the on-disk magic number.
1061          * The second is the anonymous/public type byte.
1062          * The third is the format type byte (vari, fixed, or MIME).
1063          */
1064         ch = *mptr++;
1065         if (ch != 255) {
1066                 CtdlLogPrintf(CTDL_ERR, "Message %ld appears to be corrupted.\n", msgnum);
1067                 cdb_free(dmsgtext);
1068                 return NULL;
1069         }
1070         ret = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
1071         memset(ret, 0, sizeof(struct CtdlMessage));
1072
1073         ret->cm_magic = CTDLMESSAGE_MAGIC;
1074         ret->cm_anon_type = *mptr++;    /* Anon type byte */
1075         ret->cm_format_type = *mptr++;  /* Format type byte */
1076
1077         /*
1078          * The rest is zero or more arbitrary fields.  Load them in.
1079          * We're done when we encounter either a zero-length field or
1080          * have just processed the 'M' (message text) field.
1081          */
1082         do {
1083                 if (mptr >= upper_bound) {
1084                         break;
1085                 }
1086                 field_header = *mptr++;
1087                 ret->cm_fields[field_header] = strdup(mptr);
1088
1089                 while (*mptr++ != 0);   /* advance to next field */
1090
1091         } while ((mptr < upper_bound) && (field_header != 'M'));
1092
1093         cdb_free(dmsgtext);
1094
1095         /* Always make sure there's something in the msg text field.  If
1096          * it's NULL, the message text is most likely stored separately,
1097          * so go ahead and fetch that.  Failing that, just set a dummy
1098          * body so other code doesn't barf.
1099          */
1100         if ( (ret->cm_fields['M'] == NULL) && (with_body) ) {
1101                 dmsgtext = cdb_fetch(CDB_BIGMSGS, &msgnum, sizeof(long));
1102                 if (dmsgtext != NULL) {
1103                         ret->cm_fields['M'] = strdup(dmsgtext->ptr);
1104                         cdb_free(dmsgtext);
1105                 }
1106         }
1107         if (ret->cm_fields['M'] == NULL) {
1108                 ret->cm_fields['M'] = strdup("\r\n\r\n (no text)\r\n");
1109         }
1110
1111         /* Perform "before read" hooks (aborting if any return nonzero) */
1112         if (PerformMessageHooks(ret, EVT_BEFOREREAD) > 0) {
1113                 CtdlFreeMessage(ret);
1114                 return NULL;
1115         }
1116
1117         return (ret);
1118 }
1119
1120
1121 /*
1122  * Returns 1 if the supplied pointer points to a valid Citadel message.
1123  * If the pointer is NULL or the magic number check fails, returns 0.
1124  */
1125 int is_valid_message(struct CtdlMessage *msg) {
1126         if (msg == NULL)
1127                 return 0;
1128         if ((msg->cm_magic) != CTDLMESSAGE_MAGIC) {
1129                 CtdlLogPrintf(CTDL_WARNING, "is_valid_message() -- self-check failed\n");
1130                 return 0;
1131         }
1132         return 1;
1133 }
1134
1135
1136 /*
1137  * 'Destructor' for struct CtdlMessage
1138  */
1139 void CtdlFreeMessage(struct CtdlMessage *msg)
1140 {
1141         int i;
1142
1143         if (is_valid_message(msg) == 0) 
1144         {
1145                 if (msg != NULL) free (msg);
1146                 return;
1147         }
1148
1149         for (i = 0; i < 256; ++i)
1150                 if (msg->cm_fields[i] != NULL) {
1151                         free(msg->cm_fields[i]);
1152                 }
1153
1154         msg->cm_magic = 0;      /* just in case */
1155         free(msg);
1156 }
1157
1158
1159 /*
1160  * Pre callback function for multipart/alternative
1161  *
1162  * NOTE: this differs from the standard behavior for a reason.  Normally when
1163  *       displaying multipart/alternative you want to show the _last_ usable
1164  *       format in the message.  Here we show the _first_ one, because it's
1165  *       usually text/plain.  Since this set of functions is designed for text
1166  *       output to non-MIME-aware clients, this is the desired behavior.
1167  *
1168  */
1169 void fixed_output_pre(char *name, char *filename, char *partnum, char *disp,
1170                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
1171                 char *cbid, void *cbuserdata)
1172 {
1173         struct ma_info *ma;
1174         
1175         ma = (struct ma_info *)cbuserdata;
1176         CtdlLogPrintf(CTDL_DEBUG, "fixed_output_pre() type=<%s>\n", cbtype);    
1177         if (!strcasecmp(cbtype, "multipart/alternative")) {
1178                 ++ma->is_ma;
1179                 ma->did_print = 0;
1180         }
1181         if (!strcasecmp(cbtype, "message/rfc822")) {
1182                 ++ma->freeze;
1183         }
1184 }
1185
1186 /*
1187  * Post callback function for multipart/alternative
1188  */
1189 void fixed_output_post(char *name, char *filename, char *partnum, char *disp,
1190                 void *content, char *cbtype, char *cbcharset, size_t length,
1191                 char *encoding, char *cbid, void *cbuserdata)
1192 {
1193         struct ma_info *ma;
1194         
1195         ma = (struct ma_info *)cbuserdata;
1196         CtdlLogPrintf(CTDL_DEBUG, "fixed_output_post() type=<%s>\n", cbtype);   
1197         if (!strcasecmp(cbtype, "multipart/alternative")) {
1198                 --ma->is_ma;
1199                 ma->did_print = 0;
1200         }
1201         if (!strcasecmp(cbtype, "message/rfc822")) {
1202                 --ma->freeze;
1203         }
1204 }
1205
1206 /*
1207  * Inline callback function for mime parser that wants to display text
1208  */
1209 void fixed_output(char *name, char *filename, char *partnum, char *disp,
1210                 void *content, char *cbtype, char *cbcharset, size_t length,
1211                 char *encoding, char *cbid, void *cbuserdata)
1212 {
1213         char *ptr;
1214         char *wptr;
1215         size_t wlen;
1216         struct ma_info *ma;
1217
1218         ma = (struct ma_info *)cbuserdata;
1219
1220         CtdlLogPrintf(CTDL_DEBUG,
1221                 "fixed_output() part %s: %s (%s) (%ld bytes)\n",
1222                 partnum, filename, cbtype, (long)length);
1223
1224         /*
1225          * If we're in the middle of a multipart/alternative scope and
1226          * we've already printed another section, skip this one.
1227          */     
1228         if ( (ma->is_ma) && (ma->did_print) ) {
1229                 CtdlLogPrintf(CTDL_DEBUG, "Skipping part %s (%s)\n", partnum, cbtype);
1230                 return;
1231         }
1232         ma->did_print = 1;
1233
1234         if ( (!strcasecmp(cbtype, "text/plain")) 
1235            || (IsEmptyStr(cbtype)) ) {
1236                 wptr = content;
1237                 if (length > 0) {
1238                         client_write(wptr, length);
1239                         if (wptr[length-1] != '\n') {
1240                                 cprintf("\n");
1241                         }
1242                 }
1243                 return;
1244         }
1245
1246         if (!strcasecmp(cbtype, "text/html")) {
1247                 ptr = html_to_ascii(content, length, 80, 0);
1248                 wlen = strlen(ptr);
1249                 client_write(ptr, wlen);
1250                 if (ptr[wlen-1] != '\n') {
1251                         cprintf("\n");
1252                 }
1253                 free(ptr);
1254                 return;
1255         }
1256
1257         if (ma->use_fo_hooks) {
1258                 if (PerformFixedOutputHooks(cbtype, content, length)) {
1259                 /* above function returns nonzero if it handled the part */
1260                         return;
1261                 }
1262         }
1263
1264         if (strncasecmp(cbtype, "multipart/", 10)) {
1265                 cprintf("Part %s: %s (%s) (%ld bytes)\r\n",
1266                         partnum, filename, cbtype, (long)length);
1267                 return;
1268         }
1269 }
1270
1271 /*
1272  * The client is elegant and sophisticated and wants to be choosy about
1273  * MIME content types, so figure out which multipart/alternative part
1274  * we're going to send.
1275  *
1276  * We use a system of weights.  When we find a part that matches one of the
1277  * MIME types we've declared as preferential, we can store it in ma->chosen_part
1278  * and then set ma->chosen_pref to that MIME type's position in our preference
1279  * list.  If we then hit another match, we only replace the first match if
1280  * the preference value is lower.
1281  */
1282 void choose_preferred(char *name, char *filename, char *partnum, char *disp,
1283                 void *content, char *cbtype, char *cbcharset, size_t length,
1284                 char *encoding, char *cbid, void *cbuserdata)
1285 {
1286         char buf[1024];
1287         int i;
1288         struct ma_info *ma;
1289         
1290         ma = (struct ma_info *)cbuserdata;
1291
1292         // NOTE: REMOVING THIS CONDITIONAL FIXES BUG 220
1293         //       http://bugzilla.citadel.org/show_bug.cgi?id=220
1294         // I don't know if there are any side effects!  Please TEST TEST TEST
1295         //if (ma->is_ma > 0) {
1296
1297         for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1298                 extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1299                 if ( (!strcasecmp(buf, cbtype)) && (!ma->freeze) ) {
1300                         if (i < ma->chosen_pref) {
1301                                 CtdlLogPrintf(CTDL_DEBUG, "Setting chosen part: <%s>\n", partnum);
1302                                 safestrncpy(ma->chosen_part, partnum, sizeof ma->chosen_part);
1303                                 ma->chosen_pref = i;
1304                         }
1305                 }
1306         }
1307 }
1308
1309 /*
1310  * Now that we've chosen our preferred part, output it.
1311  */
1312 void output_preferred(char *name, char *filename, char *partnum, char *disp,
1313                 void *content, char *cbtype, char *cbcharset, size_t length,
1314                 char *encoding, char *cbid, void *cbuserdata)
1315 {
1316         int i;
1317         char buf[128];
1318         int add_newline = 0;
1319         char *text_content;
1320         struct ma_info *ma;
1321         
1322         ma = (struct ma_info *)cbuserdata;
1323
1324         /* This is not the MIME part you're looking for... */
1325         if (strcasecmp(partnum, ma->chosen_part)) return;
1326
1327         /* If the content-type of this part is in our preferred formats
1328          * list, we can simply output it verbatim.
1329          */
1330         for (i=0; i<num_tokens(CC->preferred_formats, '|'); ++i) {
1331                 extract_token(buf, CC->preferred_formats, i, '|', sizeof buf);
1332                 if (!strcasecmp(buf, cbtype)) {
1333                         /* Yeah!  Go!  W00t!! */
1334
1335                         text_content = (char *)content;
1336                         if (text_content[length-1] != '\n') {
1337                                 ++add_newline;
1338                         }
1339                         cprintf("Content-type: %s", cbtype);
1340                         if (!IsEmptyStr(cbcharset)) {
1341                                 cprintf("; charset=%s", cbcharset);
1342                         }
1343                         cprintf("\nContent-length: %d\n",
1344                                 (int)(length + add_newline) );
1345                         if (!IsEmptyStr(encoding)) {
1346                                 cprintf("Content-transfer-encoding: %s\n", encoding);
1347                         }
1348                         else {
1349                                 cprintf("Content-transfer-encoding: 7bit\n");
1350                         }
1351                         cprintf("X-Citadel-MSG4-Partnum: %s\n", partnum);
1352                         cprintf("\n");
1353                         client_write(content, length);
1354                         if (add_newline) cprintf("\n");
1355                         return;
1356                 }
1357         }
1358
1359         /* No translations required or possible: output as text/plain */
1360         cprintf("Content-type: text/plain\n\n");
1361         fixed_output(name, filename, partnum, disp, content, cbtype, cbcharset,
1362                         length, encoding, cbid, cbuserdata);
1363 }
1364
1365
1366 struct encapmsg {
1367         char desired_section[64];
1368         char *msg;
1369         size_t msglen;
1370 };
1371
1372
1373 /*
1374  * Callback function for
1375  */
1376 void extract_encapsulated_message(char *name, char *filename, char *partnum, char *disp,
1377                    void *content, char *cbtype, char *cbcharset, size_t length,
1378                    char *encoding, char *cbid, void *cbuserdata)
1379 {
1380         struct encapmsg *encap;
1381
1382         encap = (struct encapmsg *)cbuserdata;
1383
1384         /* Only proceed if this is the desired section... */
1385         if (!strcasecmp(encap->desired_section, partnum)) {
1386                 encap->msglen = length;
1387                 encap->msg = malloc(length + 2);
1388                 memcpy(encap->msg, content, length);
1389                 return;
1390         }
1391
1392 }
1393
1394
1395
1396
1397 /*
1398  * Get a message off disk.  (returns om_* values found in msgbase.h)
1399  * 
1400  */
1401 int CtdlOutputMsg(long msg_num,         /* message number (local) to fetch */
1402                   int mode,             /* how would you like that message? */
1403                   int headers_only,     /* eschew the message body? */
1404                   int do_proto,         /* do Citadel protocol responses? */
1405                   int crlf,             /* Use CRLF newlines instead of LF? */
1406                   char *section,        /* NULL or a message/rfc822 section */
1407                   int flags             /* should the bessage be exported clean? */
1408 ) {
1409         struct CtdlMessage *TheMessage = NULL;
1410         int retcode = om_no_such_msg;
1411         struct encapmsg encap;
1412
1413         CtdlLogPrintf(CTDL_DEBUG, "CtdlOutputMsg() msgnum=%ld, mode=%d, section=%s\n", 
1414                 msg_num, mode,
1415                 (section ? section : "<>")
1416         );
1417
1418         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
1419                 if (do_proto) cprintf("%d Not logged in.\n",
1420                         ERROR + NOT_LOGGED_IN);
1421                 return(om_not_logged_in);
1422         }
1423
1424         /* FIXME: check message id against msglist for this room */
1425
1426         /*
1427          * Fetch the message from disk.  If we're in HEADERS_FAST mode,
1428          * request that we don't even bother loading the body into memory.
1429          */
1430         if (headers_only == HEADERS_FAST) {
1431                 TheMessage = CtdlFetchMessage(msg_num, 0);
1432         }
1433         else {
1434                 TheMessage = CtdlFetchMessage(msg_num, 1);
1435         }
1436
1437         if (TheMessage == NULL) {
1438                 if (do_proto) cprintf("%d Can't locate msg %ld on disk\n",
1439                         ERROR + MESSAGE_NOT_FOUND, msg_num);
1440                 return(om_no_such_msg);
1441         }
1442
1443         /* Here is the weird form of this command, to process only an
1444          * encapsulated message/rfc822 section.
1445          */
1446         if (section) if (!IsEmptyStr(section)) if (strcmp(section, "0")) {
1447                 memset(&encap, 0, sizeof encap);
1448                 safestrncpy(encap.desired_section, section, sizeof encap.desired_section);
1449                 mime_parser(TheMessage->cm_fields['M'],
1450                         NULL,
1451                         *extract_encapsulated_message,
1452                         NULL, NULL, (void *)&encap, 0
1453                 );
1454                 CtdlFreeMessage(TheMessage);
1455                 TheMessage = NULL;
1456
1457                 if (encap.msg) {
1458                         encap.msg[encap.msglen] = 0;
1459                         TheMessage = convert_internet_message(encap.msg);
1460                         encap.msg = NULL;       /* no free() here, TheMessage owns it now */
1461
1462                         /* Now we let it fall through to the bottom of this
1463                          * function, because TheMessage now contains the
1464                          * encapsulated message instead of the top-level
1465                          * message.  Isn't that neat?
1466                          */
1467
1468                 }
1469                 else {
1470                         if (do_proto) cprintf("%d msg %ld has no part %s\n",
1471                                 ERROR + MESSAGE_NOT_FOUND, msg_num, section);
1472                         retcode = om_no_such_msg;
1473                 }
1474
1475         }
1476
1477         /* Ok, output the message now */
1478         retcode = CtdlOutputPreLoadedMsg(TheMessage, mode, headers_only, do_proto, crlf, flags);
1479         CtdlFreeMessage(TheMessage);
1480
1481         return(retcode);
1482 }
1483
1484
1485 char *qp_encode_email_addrs(char *source)
1486 {
1487         char user[256], node[256], name[256];
1488         const char headerStr[] = "=?UTF-8?Q?";
1489         char *Encoded;
1490         char *EncodedName;
1491         char *nPtr;
1492         int need_to_encode = 0;
1493         long SourceLen;
1494         long EncodedMaxLen;
1495         long nColons = 0;
1496         long *AddrPtr;
1497         long *AddrUtf8;
1498         long nAddrPtrMax = 50;
1499         long nmax;
1500         int InQuotes = 0;
1501         int i, n;
1502
1503         if (source == NULL) return source;
1504         if (IsEmptyStr(source)) return source;
1505
1506         AddrPtr = malloc (sizeof (long) * nAddrPtrMax);
1507         AddrUtf8 = malloc (sizeof (long) * nAddrPtrMax);
1508         memset(AddrUtf8, 0, sizeof (long) * nAddrPtrMax);
1509         *AddrPtr = 0;
1510         i = 0;
1511         while (!IsEmptyStr (&source[i])) {
1512                 if (nColons >= nAddrPtrMax){
1513                         long *ptr;
1514
1515                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
1516                         memcpy (ptr, AddrPtr, sizeof (long) * nAddrPtrMax);
1517                         free (AddrPtr), AddrPtr = ptr;
1518
1519                         ptr = (long *) malloc(sizeof (long) * nAddrPtrMax * 2);
1520                         memset(&ptr[nAddrPtrMax], 0, 
1521                                sizeof (long) * nAddrPtrMax);
1522
1523                         memcpy (ptr, AddrUtf8, sizeof (long) * nAddrPtrMax);
1524                         free (AddrUtf8), AddrUtf8 = ptr;
1525                         nAddrPtrMax *= 2;                               
1526                 }
1527                 if (((unsigned char) source[i] < 32) || 
1528                     ((unsigned char) source[i] > 126)) {
1529                         need_to_encode = 1;
1530                         AddrUtf8[nColons] = 1;
1531                 }
1532                 if (source[i] == '"')
1533                         InQuotes = !InQuotes;
1534                 if (!InQuotes && source[i] == ',') {
1535                         AddrPtr[nColons] = i;
1536                         nColons++;
1537                 }
1538                 i++;
1539         }
1540         if (need_to_encode == 0) {
1541                 free(AddrPtr);
1542                 free(AddrUtf8);
1543                 return source;
1544         }
1545
1546         SourceLen = i;
1547         EncodedMaxLen = nColons * (sizeof(headerStr) + 3) + SourceLen * 3;
1548         Encoded = (char*) malloc (EncodedMaxLen);
1549
1550         for (i = 0; i < nColons; i++)
1551                 source[AddrPtr[i]++] = '\0';
1552
1553         nPtr = Encoded;
1554         *nPtr = '\0';
1555         for (i = 0; i < nColons && nPtr != NULL; i++) {
1556                 nmax = EncodedMaxLen - (nPtr - Encoded);
1557                 if (AddrUtf8[i]) {
1558                         process_rfc822_addr(&source[AddrPtr[i]], 
1559                                             user,
1560                                             node,
1561                                             name);
1562                         /* TODO: libIDN here ! */
1563                         if (IsEmptyStr(name)) {
1564                                 n = snprintf(nPtr, nmax, 
1565                                              (i==0)?"%s@%s" : ",%s@%s",
1566                                              user, node);
1567                         }
1568                         else {
1569                                 EncodedName = rfc2047encode(name, strlen(name));                        
1570                                 n = snprintf(nPtr, nmax, 
1571                                              (i==0)?"%s <%s@%s>" : ",%s <%s@%s>",
1572                                              EncodedName, user, node);
1573                                 free(EncodedName);
1574                         }
1575                 }
1576                 else { 
1577                         n = snprintf(nPtr, nmax, 
1578                                      (i==0)?"%s" : ",%s",
1579                                      &source[AddrPtr[i]]);
1580                 }
1581                 if (n > 0 )
1582                         nPtr += n;
1583                 else { 
1584                         char *ptr, *nnPtr;
1585                         ptr = (char*) malloc(EncodedMaxLen * 2);
1586                         memcpy(ptr, Encoded, EncodedMaxLen);
1587                         nnPtr = ptr + (nPtr - Encoded), nPtr = nnPtr;
1588                         free(Encoded), Encoded = ptr;
1589                         EncodedMaxLen *= 2;
1590                         i--; /* do it once more with properly lengthened buffer */
1591                 }
1592         }
1593         for (i = 0; i < nColons; i++)
1594                 source[--AddrPtr[i]] = ',';
1595         free(AddrUtf8);
1596         free(AddrPtr);
1597         return Encoded;
1598 }
1599
1600
1601 /* If the last item in a list of recipients was truncated to a partial address,
1602  * remove it completely in order to avoid choking libSieve
1603  */
1604 void sanitize_truncated_recipient(char *str)
1605 {
1606         if (!str) return;
1607         if (num_tokens(str, ',') < 2) return;
1608
1609         int len = strlen(str);
1610         if (len < 900) return;
1611         if (len > 998) str[998] = 0;
1612
1613         char *cptr = strrchr(str, ',');
1614         if (!cptr) return;
1615
1616         char *lptr = strchr(cptr, '<');
1617         char *rptr = strchr(cptr, '>');
1618
1619         if ( (lptr) && (rptr) && (rptr > lptr) ) return;
1620
1621         *cptr = 0;
1622 }
1623
1624
1625
1626 /*
1627  * Get a message off disk.  (returns om_* values found in msgbase.h)
1628  */
1629 int CtdlOutputPreLoadedMsg(
1630                 struct CtdlMessage *TheMessage,
1631                 int mode,               /* how would you like that message? */
1632                 int headers_only,       /* eschew the message body? */
1633                 int do_proto,           /* do Citadel protocol responses? */
1634                 int crlf,               /* Use CRLF newlines instead of LF? */
1635                 int flags               /* should the bessage be exported clean? */
1636 ) {
1637         int i, j, k;
1638         char buf[SIZ];
1639         cit_uint8_t ch, prev_ch;
1640         char allkeys[30];
1641         char display_name[256];
1642         char *mptr, *mpptr;
1643         char *nl;       /* newline string */
1644         int suppress_f = 0;
1645         int subject_found = 0;
1646         struct ma_info ma;
1647
1648         /* Buffers needed for RFC822 translation.  These are all filled
1649          * using functions that are bounds-checked, and therefore we can
1650          * make them substantially smaller than SIZ.
1651          */
1652         char suser[100];
1653         char luser[100];
1654         char fuser[100];
1655         char snode[100];
1656         char mid[100];
1657         char datestamp[100];
1658
1659         CtdlLogPrintf(CTDL_DEBUG, "CtdlOutputPreLoadedMsg(TheMessage=%s, %d, %d, %d, %d\n",
1660                 ((TheMessage == NULL) ? "NULL" : "not null"),
1661                 mode, headers_only, do_proto, crlf);
1662
1663         strcpy(mid, "unknown");
1664         nl = (crlf ? "\r\n" : "\n");
1665
1666         if (!is_valid_message(TheMessage)) {
1667                 CtdlLogPrintf(CTDL_ERR,
1668                         "ERROR: invalid preloaded message for output\n");
1669                 cit_backtrace ();
1670                 return(om_no_such_msg);
1671         }
1672
1673         /* Are we downloading a MIME component? */
1674         if (mode == MT_DOWNLOAD) {
1675                 if (TheMessage->cm_format_type != FMT_RFC822) {
1676                         if (do_proto)
1677                                 cprintf("%d This is not a MIME message.\n",
1678                                 ERROR + ILLEGAL_VALUE);
1679                 } else if (CC->download_fp != NULL) {
1680                         if (do_proto) cprintf(
1681                                 "%d You already have a download open.\n",
1682                                 ERROR + RESOURCE_BUSY);
1683                 } else {
1684                         /* Parse the message text component */
1685                         mptr = TheMessage->cm_fields['M'];
1686                         mime_parser(mptr, NULL, *mime_download, NULL, NULL, NULL, 0);
1687                         /* If there's no file open by this time, the requested
1688                          * section wasn't found, so print an error
1689                          */
1690                         if (CC->download_fp == NULL) {
1691                                 if (do_proto) cprintf(
1692                                         "%d Section %s not found.\n",
1693                                         ERROR + FILE_NOT_FOUND,
1694                                         CC->download_desired_section);
1695                         }
1696                 }
1697                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
1698         }
1699
1700         /* MT_SPEW_SECTION is like MT_DOWNLOAD except it outputs the whole MIME part
1701          * in a single server operation instead of opening a download file.
1702          */
1703         if (mode == MT_SPEW_SECTION) {
1704                 if (TheMessage->cm_format_type != FMT_RFC822) {
1705                         if (do_proto)
1706                                 cprintf("%d This is not a MIME message.\n",
1707                                 ERROR + ILLEGAL_VALUE);
1708                 } else {
1709                         /* Parse the message text component */
1710                         int found_it = 0;
1711
1712                         mptr = TheMessage->cm_fields['M'];
1713                         mime_parser(mptr, NULL, *mime_spew_section, NULL, NULL, (void *)&found_it, 0);
1714                         /* If section wasn't found, print an error
1715                          */
1716                         if (!found_it) {
1717                                 if (do_proto) cprintf(
1718                                         "%d Section %s not found.\n",
1719                                         ERROR + FILE_NOT_FOUND,
1720                                         CC->download_desired_section);
1721                         }
1722                 }
1723                 return((CC->download_fp != NULL) ? om_ok : om_mime_error);
1724         }
1725
1726         /* now for the user-mode message reading loops */
1727         if (do_proto) cprintf("%d msg:\n", LISTING_FOLLOWS);
1728
1729         /* Does the caller want to skip the headers? */
1730         if (headers_only == HEADERS_NONE) goto START_TEXT;
1731
1732         /* Tell the client which format type we're using. */
1733         if ( (mode == MT_CITADEL) && (do_proto) ) {
1734                 cprintf("type=%d\n", TheMessage->cm_format_type);
1735         }
1736
1737         /* nhdr=yes means that we're only displaying headers, no body */
1738         if ( (TheMessage->cm_anon_type == MES_ANONONLY)
1739            && ((mode == MT_CITADEL) || (mode == MT_MIME))
1740            && (do_proto)
1741            ) {
1742                 cprintf("nhdr=yes\n");
1743         }
1744
1745         /* begin header processing loop for Citadel message format */
1746
1747         if ((mode == MT_CITADEL) || (mode == MT_MIME)) {
1748
1749                 safestrncpy(display_name, "<unknown>", sizeof display_name);
1750                 if (TheMessage->cm_fields['A']) {
1751                         strcpy(buf, TheMessage->cm_fields['A']);
1752                         if (TheMessage->cm_anon_type == MES_ANONONLY) {
1753                                 safestrncpy(display_name, "****", sizeof display_name);
1754                         }
1755                         else if (TheMessage->cm_anon_type == MES_ANONOPT) {
1756                                 safestrncpy(display_name, "anonymous", sizeof display_name);
1757                         }
1758                         else {
1759                                 safestrncpy(display_name, buf, sizeof display_name);
1760                         }
1761                         if ((is_room_aide())
1762                             && ((TheMessage->cm_anon_type == MES_ANONONLY)
1763                              || (TheMessage->cm_anon_type == MES_ANONOPT))) {
1764                                 size_t tmp = strlen(display_name);
1765                                 snprintf(&display_name[tmp],
1766                                          sizeof display_name - tmp,
1767                                          " [%s]", buf);
1768                         }
1769                 }
1770
1771                 /* Don't show Internet address for users on the
1772                  * local Citadel network.
1773                  */
1774                 suppress_f = 0;
1775                 if (TheMessage->cm_fields['N'] != NULL)
1776                    if (!IsEmptyStr(TheMessage->cm_fields['N']))
1777                       if (haschar(TheMessage->cm_fields['N'], '.') == 0) {
1778                         suppress_f = 1;
1779                 }
1780                 
1781                 /* Now spew the header fields in the order we like them. */
1782                 safestrncpy(allkeys, FORDER, sizeof allkeys);
1783                 for (i=0; i<strlen(allkeys); ++i) {
1784                         k = (int) allkeys[i];
1785                         if (k != 'M') {
1786                                 if ( (TheMessage->cm_fields[k] != NULL)
1787                                    && (msgkeys[k] != NULL) ) {
1788                                         if ((k == 'V') || (k == 'R') || (k == 'Y')) {
1789                                                 sanitize_truncated_recipient(TheMessage->cm_fields[k]);
1790                                         }
1791                                         if (k == 'A') {
1792                                                 if (do_proto) cprintf("%s=%s\n",
1793                                                         msgkeys[k],
1794                                                         display_name);
1795                                         }
1796                                         else if ((k == 'F') && (suppress_f)) {
1797                                                 /* do nothing */
1798                                         }
1799                                         /* Masquerade display name if needed */
1800                                         else {
1801                                                 if (do_proto) cprintf("%s=%s\n",
1802                                                         msgkeys[k],
1803                                                         TheMessage->cm_fields[k]
1804                                         );
1805                                         }
1806                                 }
1807                         }
1808                 }
1809
1810         }
1811
1812         /* begin header processing loop for RFC822 transfer format */
1813
1814         strcpy(suser, "");
1815         strcpy(luser, "");
1816         strcpy(fuser, "");
1817         strcpy(snode, NODENAME);
1818         if (mode == MT_RFC822) {
1819                 for (i = 0; i < 256; ++i) {
1820                         if (TheMessage->cm_fields[i]) {
1821                                 mptr = mpptr = TheMessage->cm_fields[i];
1822                                 
1823                                 if (i == 'A') {
1824                                         safestrncpy(luser, mptr, sizeof luser);
1825                                         safestrncpy(suser, mptr, sizeof suser);
1826                                 }
1827                                 else if (i == 'Y') {
1828                                         if ((flags & QP_EADDR) != 0) {
1829                                                 mptr = qp_encode_email_addrs(mptr);
1830                                         }
1831                                         sanitize_truncated_recipient(mptr);
1832                                         cprintf("CC: %s%s", mptr, nl);
1833                                 }
1834                                 else if (i == 'P') {
1835                                         cprintf("Return-Path: %s%s", mptr, nl);
1836                                 }
1837                                 else if (i == 'L') {
1838                                         cprintf("List-ID: %s%s", mptr, nl);
1839                                 }
1840                                 else if (i == 'V') {
1841                                         if ((flags & QP_EADDR) != 0) 
1842                                                 mptr = qp_encode_email_addrs(mptr);
1843                                         cprintf("Envelope-To: %s%s", mptr, nl);
1844                                 }
1845                                 else if (i == 'U') {
1846                                         cprintf("Subject: %s%s", mptr, nl);
1847                                         subject_found = 1;
1848                                 }
1849                                 else if (i == 'I')
1850                                         safestrncpy(mid, mptr, sizeof mid);
1851                                 else if (i == 'F')
1852                                         safestrncpy(fuser, mptr, sizeof fuser);
1853                                 /* else if (i == 'O')
1854                                         cprintf("X-Citadel-Room: %s%s",
1855                                                 mptr, nl); */
1856                                 else if (i == 'N')
1857                                         safestrncpy(snode, mptr, sizeof snode);
1858                                 else if (i == 'R')
1859                                 {
1860                                         if (haschar(mptr, '@') == 0)
1861                                         {
1862                                                 sanitize_truncated_recipient(mptr);
1863                                                 cprintf("To: %s@%s", mptr, config.c_fqdn);
1864                                                 cprintf("%s", nl);
1865                                         }
1866                                         else
1867                                         {
1868                                                 if ((flags & QP_EADDR) != 0) {
1869                                                         mptr = qp_encode_email_addrs(mptr);
1870                                                 }
1871                                                 sanitize_truncated_recipient(mptr);
1872                                                 cprintf("To: %s", mptr);
1873                                                 cprintf("%s", nl);
1874                                         }
1875                                 }
1876                                 else if (i == 'T') {
1877                                         datestring(datestamp, sizeof datestamp,
1878                                                 atol(mptr), DATESTRING_RFC822);
1879                                         cprintf("Date: %s%s", datestamp, nl);
1880                                 }
1881                                 else if (i == 'W') {
1882                                         cprintf("References: ");
1883                                         k = num_tokens(mptr, '|');
1884                                         for (j=0; j<k; ++j) {
1885                                                 extract_token(buf, mptr, j, '|', sizeof buf);
1886                                                 cprintf("<%s>", buf);
1887                                                 if (j == (k-1)) {
1888                                                         cprintf("%s", nl);
1889                                                 }
1890                                                 else {
1891                                                         cprintf(" ");
1892                                                 }
1893                                         }
1894                                 }
1895                                 if (mptr != mpptr)
1896                                         free (mptr);
1897                         }
1898                 }
1899                 if (subject_found == 0) {
1900                         cprintf("Subject: (no subject)%s", nl);
1901                 }
1902         }
1903
1904         for (i=0; !IsEmptyStr(&suser[i]); ++i) {
1905                 suser[i] = tolower(suser[i]);
1906                 if (!isalnum(suser[i])) suser[i]='_';
1907         }
1908
1909         if (mode == MT_RFC822) {
1910                 if (!strcasecmp(snode, NODENAME)) {
1911                         safestrncpy(snode, FQDN, sizeof snode);
1912                 }
1913
1914                 /* Construct a fun message id */
1915                 cprintf("Message-ID: <%s", mid);/// todo: this possibly breaks threadding mails.
1916                 if (strchr(mid, '@')==NULL) {
1917                         cprintf("@%s", snode);
1918                 }
1919                 cprintf(">%s", nl);
1920
1921                 if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONONLY)) {
1922                         cprintf("From: \"----\" <x@x.org>%s", nl);
1923                 }
1924                 else if (!is_room_aide() && (TheMessage->cm_anon_type == MES_ANONOPT)) {
1925                         cprintf("From: \"anonymous\" <x@x.org>%s", nl);
1926                 }
1927                 else if (!IsEmptyStr(fuser)) {
1928                         cprintf("From: \"%s\" <%s>%s", luser, fuser, nl);
1929                 }
1930                 else {
1931                         cprintf("From: \"%s\" <%s@%s>%s", luser, suser, snode, nl);
1932                 }
1933
1934                 /* Blank line signifying RFC822 end-of-headers */
1935                 if (TheMessage->cm_format_type != FMT_RFC822) {
1936                         cprintf("%s", nl);
1937                 }
1938         }
1939
1940         /* end header processing loop ... at this point, we're in the text */
1941 START_TEXT:
1942         if (headers_only == HEADERS_FAST) goto DONE;
1943         mptr = TheMessage->cm_fields['M'];
1944
1945         /* Tell the client about the MIME parts in this message */
1946         if (TheMessage->cm_format_type == FMT_RFC822) {
1947                 if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
1948                         memset(&ma, 0, sizeof(struct ma_info));
1949                         mime_parser(mptr, NULL,
1950                                 (do_proto ? *list_this_part : NULL),
1951                                 (do_proto ? *list_this_pref : NULL),
1952                                 (do_proto ? *list_this_suff : NULL),
1953                                 (void *)&ma, 0);
1954                 }
1955                 else if (mode == MT_RFC822) {   /* unparsed RFC822 dump */
1956                         char *start_of_text = NULL;
1957                         start_of_text = strstr(mptr, "\n\r\n");
1958                         if (start_of_text == NULL) start_of_text = strstr(mptr, "\n\n");
1959                         if (start_of_text == NULL) start_of_text = mptr;
1960                         ++start_of_text;
1961                         start_of_text = strstr(start_of_text, "\n");
1962                         ++start_of_text;
1963
1964                         char outbuf[1024];
1965                         int outlen = 0;
1966                         int nllen = strlen(nl);
1967                         prev_ch = 0;
1968                         while (ch=*mptr, ch!=0) {
1969                                 if (ch==13) {
1970                                         /* do nothing */
1971                                 }
1972                                 else {
1973                                         if (
1974                                                 ((headers_only == HEADERS_NONE) && (mptr >= start_of_text))
1975                                            ||   ((headers_only == HEADERS_ONLY) && (mptr < start_of_text))
1976                                            ||   ((headers_only != HEADERS_NONE) && (headers_only != HEADERS_ONLY))
1977                                         ) {
1978                                                 if (ch == 10) {
1979                                                         sprintf(&outbuf[outlen], "%s", nl);
1980                                                         outlen += nllen;
1981                                                 }
1982                                                 else {
1983                                                         outbuf[outlen++] = ch;
1984                                                 }
1985                                         }
1986                                 }
1987                                 if (flags & ESC_DOT)
1988                                 {
1989                                         if ((prev_ch == 10) && (ch == '.') && ((*(mptr+1) == 13) || (*(mptr+1) == 10)))
1990                                         {
1991                                                 outbuf[outlen++] = '.';
1992                                         }
1993                                 }
1994                                 prev_ch = ch;
1995                                 ++mptr;
1996                                 if (outlen > 1000) {
1997                                         client_write(outbuf, outlen);
1998                                         outlen = 0;
1999                                 }
2000                         }
2001                         if (outlen > 0) {
2002                                 client_write(outbuf, outlen);
2003                                 outlen = 0;
2004                         }
2005
2006                         goto DONE;
2007                 }
2008         }
2009
2010         if (headers_only == HEADERS_ONLY) {
2011                 goto DONE;
2012         }
2013
2014         /* signify start of msg text */
2015         if ( (mode == MT_CITADEL) || (mode == MT_MIME) ) {
2016                 if (do_proto) cprintf("text\n");
2017         }
2018
2019         /* If the format type on disk is 1 (fixed-format), then we want
2020          * everything to be output completely literally ... regardless of
2021          * what message transfer format is in use.
2022          */
2023         if (TheMessage->cm_format_type == FMT_FIXED) {
2024                 int buflen;
2025                 if (mode == MT_MIME) {
2026                         cprintf("Content-type: text/plain\n\n");
2027                 }
2028                 *buf = '\0';
2029                 buflen = 0;
2030                 while (ch = *mptr++, ch > 0) {
2031                         if (ch == 13)
2032                                 ch = 10;
2033                         if ((ch == 10) || (buflen > 250)) {
2034                                 buf[buflen] = '\0';
2035                                 cprintf("%s%s", buf, nl);
2036                                 *buf = '\0';
2037                                 buflen = 0;
2038                         } else {
2039                                 buf[buflen] = ch;
2040                                 buflen++;
2041                         }
2042                 }
2043                 buf[buflen] = '\0';
2044                 if (!IsEmptyStr(buf))
2045                         cprintf("%s%s", buf, nl);
2046         }
2047
2048         /* If the message on disk is format 0 (Citadel vari-format), we
2049          * output using the formatter at 80 columns.  This is the final output
2050          * form if the transfer format is RFC822, but if the transfer format
2051          * is Citadel proprietary, it'll still work, because the indentation
2052          * for new paragraphs is correct and the client will reformat the
2053          * message to the reader's screen width.
2054          */
2055         if (TheMessage->cm_format_type == FMT_CITADEL) {
2056                 if (mode == MT_MIME) {
2057                         cprintf("Content-type: text/x-citadel-variformat\n\n");
2058                 }
2059                 memfmout(mptr, 0, nl);
2060         }
2061
2062         /* If the message on disk is format 4 (MIME), we've gotta hand it
2063          * off to the MIME parser.  The client has already been told that
2064          * this message is format 1 (fixed format), so the callback function
2065          * we use will display those parts as-is.
2066          */
2067         if (TheMessage->cm_format_type == FMT_RFC822) {
2068                 memset(&ma, 0, sizeof(struct ma_info));
2069
2070                 if (mode == MT_MIME) {
2071                         ma.use_fo_hooks = 0;
2072                         strcpy(ma.chosen_part, "1");
2073                         ma.chosen_pref = 9999;
2074                         mime_parser(mptr, NULL,
2075                                 *choose_preferred, *fixed_output_pre,
2076                                 *fixed_output_post, (void *)&ma, 0);
2077                         mime_parser(mptr, NULL,
2078                                 *output_preferred, NULL, NULL, (void *)&ma, CC->msg4_dont_decode);
2079                 }
2080                 else {
2081                         ma.use_fo_hooks = 1;
2082                         mime_parser(mptr, NULL,
2083                                 *fixed_output, *fixed_output_pre,
2084                                 *fixed_output_post, (void *)&ma, 0);
2085                 }
2086
2087         }
2088
2089 DONE:   /* now we're done */
2090         if (do_proto) cprintf("000\n");
2091         return(om_ok);
2092 }
2093
2094
2095
2096 /*
2097  * display a message (mode 0 - Citadel proprietary)
2098  */
2099 void cmd_msg0(char *cmdbuf)
2100 {
2101         long msgid;
2102         int headers_only = HEADERS_ALL;
2103
2104         msgid = extract_long(cmdbuf, 0);
2105         headers_only = extract_int(cmdbuf, 1);
2106
2107         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0, NULL, 0);
2108         return;
2109 }
2110
2111
2112 /*
2113  * display a message (mode 2 - RFC822)
2114  */
2115 void cmd_msg2(char *cmdbuf)
2116 {
2117         long msgid;
2118         int headers_only = HEADERS_ALL;
2119
2120         msgid = extract_long(cmdbuf, 0);
2121         headers_only = extract_int(cmdbuf, 1);
2122
2123         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1, NULL, 0);
2124 }
2125
2126
2127
2128 /* 
2129  * display a message (mode 3 - IGnet raw format - internal programs only)
2130  */
2131 void cmd_msg3(char *cmdbuf)
2132 {
2133         long msgnum;
2134         struct CtdlMessage *msg = NULL;
2135         struct ser_ret smr;
2136
2137         if (CC->internal_pgm == 0) {
2138                 cprintf("%d This command is for internal programs only.\n",
2139                         ERROR + HIGHER_ACCESS_REQUIRED);
2140                 return;
2141         }
2142
2143         msgnum = extract_long(cmdbuf, 0);
2144         msg = CtdlFetchMessage(msgnum, 1);
2145         if (msg == NULL) {
2146                 cprintf("%d Message %ld not found.\n", 
2147                         ERROR + MESSAGE_NOT_FOUND, msgnum);
2148                 return;
2149         }
2150
2151         serialize_message(&smr, msg);
2152         CtdlFreeMessage(msg);
2153
2154         if (smr.len == 0) {
2155                 cprintf("%d Unable to serialize message\n",
2156                         ERROR + INTERNAL_ERROR);
2157                 return;
2158         }
2159
2160         cprintf("%d %ld\n", BINARY_FOLLOWS, (long)smr.len);
2161         client_write((char *)smr.ser, (int)smr.len);
2162         free(smr.ser);
2163 }
2164
2165
2166
2167 /* 
2168  * Display a message using MIME content types
2169  */
2170 void cmd_msg4(char *cmdbuf)
2171 {
2172         long msgid;
2173         char section[64];
2174
2175         msgid = extract_long(cmdbuf, 0);
2176         extract_token(section, cmdbuf, 1, '|', sizeof section);
2177         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0, (section[0] ? section : NULL) , 0);
2178 }
2179
2180
2181
2182 /* 
2183  * Client tells us its preferred message format(s)
2184  */
2185 void cmd_msgp(char *cmdbuf)
2186 {
2187         if (!strcasecmp(cmdbuf, "dont_decode")) {
2188                 CC->msg4_dont_decode = 1;
2189                 cprintf("%d MSG4 will not pre-decode messages.\n", CIT_OK);
2190         }
2191         else {
2192                 safestrncpy(CC->preferred_formats, cmdbuf, sizeof(CC->preferred_formats));
2193                 cprintf("%d Preferred MIME formats have been set.\n", CIT_OK);
2194         }
2195 }
2196
2197
2198 /*
2199  * Open a component of a MIME message as a download file 
2200  */
2201 void cmd_opna(char *cmdbuf)
2202 {
2203         long msgid;
2204         char desired_section[128];
2205
2206         msgid = extract_long(cmdbuf, 0);
2207         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
2208         safestrncpy(CC->download_desired_section, desired_section,
2209                 sizeof CC->download_desired_section);
2210         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1, NULL, 0);
2211 }                       
2212
2213
2214 /*
2215  * Open a component of a MIME message and transmit it all at once
2216  */
2217 void cmd_dlat(char *cmdbuf)
2218 {
2219         long msgid;
2220         char desired_section[128];
2221
2222         msgid = extract_long(cmdbuf, 0);
2223         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
2224         safestrncpy(CC->download_desired_section, desired_section,
2225                 sizeof CC->download_desired_section);
2226         CtdlOutputMsg(msgid, MT_SPEW_SECTION, 0, 1, 1, NULL, 0);
2227 }                       
2228
2229
2230 /*
2231  * Save one or more message pointers into a specified room
2232  * (Returns 0 for success, nonzero for failure)
2233  * roomname may be NULL to use the current room
2234  *
2235  * Note that the 'supplied_msg' field may be set to NULL, in which case
2236  * the message will be fetched from disk, by number, if we need to perform
2237  * replication checks.  This adds an additional database read, so if the
2238  * caller already has the message in memory then it should be supplied.  (Obviously
2239  * this mode of operation only works if we're saving a single message.)
2240  */
2241 int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newmsgs,
2242                                 int do_repl_check, struct CtdlMessage *supplied_msg)
2243 {
2244         int i, j, unique;
2245         char hold_rm[ROOMNAMELEN];
2246         struct cdbdata *cdbfr;
2247         int num_msgs;
2248         long *msglist;
2249         long highest_msg = 0L;
2250
2251         long msgid = 0;
2252         struct CtdlMessage *msg = NULL;
2253
2254         long *msgs_to_be_merged = NULL;
2255         int num_msgs_to_be_merged = 0;
2256
2257         CtdlLogPrintf(CTDL_DEBUG,
2258                 "CtdlSaveMsgPointersInRoom(room=%s, num_msgs=%d, repl=%d)\n",
2259                 roomname, num_newmsgs, do_repl_check);
2260
2261         strcpy(hold_rm, CC->room.QRname);
2262
2263         /* Sanity checks */
2264         if (newmsgidlist == NULL) return(ERROR + INTERNAL_ERROR);
2265         if (num_newmsgs < 1) return(ERROR + INTERNAL_ERROR);
2266         if (num_newmsgs > 1) supplied_msg = NULL;
2267
2268         /* Now the regular stuff */
2269         if (lgetroom(&CC->room,
2270            ((roomname != NULL) ? roomname : CC->room.QRname) )
2271            != 0) {
2272                 CtdlLogPrintf(CTDL_ERR, "No such room <%s>\n", roomname);
2273                 return(ERROR + ROOM_NOT_FOUND);
2274         }
2275
2276
2277         msgs_to_be_merged = malloc(sizeof(long) * num_newmsgs);
2278         num_msgs_to_be_merged = 0;
2279
2280
2281         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
2282         if (cdbfr == NULL) {
2283                 msglist = NULL;
2284                 num_msgs = 0;
2285         } else {
2286                 msglist = (long *) cdbfr->ptr;
2287                 cdbfr->ptr = NULL;      /* CtdlSaveMsgPointerInRoom() now owns this memory */
2288                 num_msgs = cdbfr->len / sizeof(long);
2289                 cdb_free(cdbfr);
2290         }
2291
2292
2293         /* Create a list of msgid's which were supplied by the caller, but do
2294          * not already exist in the target room.  It is absolutely taboo to
2295          * have more than one reference to the same message in a room.
2296          */
2297         for (i=0; i<num_newmsgs; ++i) {
2298                 unique = 1;
2299                 if (num_msgs > 0) for (j=0; j<num_msgs; ++j) {
2300                         if (msglist[j] == newmsgidlist[i]) {
2301                                 unique = 0;
2302                         }
2303                 }
2304                 if (unique) {
2305                         msgs_to_be_merged[num_msgs_to_be_merged++] = newmsgidlist[i];
2306                 }
2307         }
2308
2309         CtdlLogPrintf(9, "%d unique messages to be merged\n", num_msgs_to_be_merged);
2310
2311         /*
2312          * Now merge the new messages
2313          */
2314         msglist = realloc(msglist, (sizeof(long) * (num_msgs + num_msgs_to_be_merged)) );
2315         if (msglist == NULL) {
2316                 CtdlLogPrintf(CTDL_ALERT, "ERROR: can't realloc message list!\n");
2317         }
2318         memcpy(&msglist[num_msgs], msgs_to_be_merged, (sizeof(long) * num_msgs_to_be_merged) );
2319         num_msgs += num_msgs_to_be_merged;
2320
2321         /* Sort the message list, so all the msgid's are in order */
2322         num_msgs = sort_msglist(msglist, num_msgs);
2323
2324         /* Determine the highest message number */
2325         highest_msg = msglist[num_msgs - 1];
2326
2327         /* Write it back to disk. */
2328         cdb_store(CDB_MSGLISTS, &CC->room.QRnumber, (int)sizeof(long),
2329                   msglist, (int)(num_msgs * sizeof(long)));
2330
2331         /* Free up the memory we used. */
2332         free(msglist);
2333
2334         /* Update the highest-message pointer and unlock the room. */
2335         CC->room.QRhighest = highest_msg;
2336         lputroom(&CC->room);
2337
2338         /* Perform replication checks if necessary */
2339         if ( (DoesThisRoomNeedEuidIndexing(&CC->room)) && (do_repl_check) ) {
2340                 CtdlLogPrintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom() doing repl checks\n");
2341
2342                 for (i=0; i<num_msgs_to_be_merged; ++i) {
2343                         msgid = msgs_to_be_merged[i];
2344         
2345                         if (supplied_msg != NULL) {
2346                                 msg = supplied_msg;
2347                         }
2348                         else {
2349                                 msg = CtdlFetchMessage(msgid, 0);
2350                         }
2351         
2352                         if (msg != NULL) {
2353                                 ReplicationChecks(msg);
2354                 
2355                                 /* If the message has an Exclusive ID, index that... */
2356                                 if (msg->cm_fields['E'] != NULL) {
2357                                         index_message_by_euid(msg->cm_fields['E'], &CC->room, msgid);
2358                                 }
2359
2360                                 /* Free up the memory we may have allocated */
2361                                 if (msg != supplied_msg) {
2362                                         CtdlFreeMessage(msg);
2363                                 }
2364                         }
2365         
2366                 }
2367         }
2368
2369         else {
2370                 CtdlLogPrintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom() skips repl checks\n");
2371         }
2372
2373         /* Submit this room for processing by hooks */
2374         PerformRoomHooks(&CC->room);
2375
2376         /* Go back to the room we were in before we wandered here... */
2377         getroom(&CC->room, hold_rm);
2378
2379         /* Bump the reference count for all messages which were merged */
2380         for (i=0; i<num_msgs_to_be_merged; ++i) {
2381                 AdjRefCount(msgs_to_be_merged[i], +1);
2382         }
2383
2384         /* Free up memory... */
2385         if (msgs_to_be_merged != NULL) {
2386                 free(msgs_to_be_merged);
2387         }
2388
2389         /* Return success. */
2390         return (0);
2391 }
2392
2393
2394 /*
2395  * This is the same as CtdlSaveMsgPointersInRoom() but it only accepts
2396  * a single message.
2397  */
2398 int CtdlSaveMsgPointerInRoom(char *roomname, long msgid,
2399                         int do_repl_check, struct CtdlMessage *supplied_msg)
2400 {
2401         return CtdlSaveMsgPointersInRoom(roomname, &msgid, 1, do_repl_check, supplied_msg);
2402 }
2403
2404
2405
2406
2407 /*
2408  * Message base operation to save a new message to the message store
2409  * (returns new message number)
2410  *
2411  * This is the back end for CtdlSubmitMsg() and should not be directly
2412  * called by server-side modules.
2413  *
2414  */
2415 long send_message(struct CtdlMessage *msg) {
2416         long newmsgid;
2417         long retval;
2418         char msgidbuf[256];
2419         struct ser_ret smr;
2420         int is_bigmsg = 0;
2421         char *holdM = NULL;
2422
2423         /* Get a new message number */
2424         newmsgid = get_new_message_number();
2425         snprintf(msgidbuf, sizeof msgidbuf, "%010ld@%s", newmsgid, config.c_fqdn);
2426
2427         /* Generate an ID if we don't have one already */
2428         if (msg->cm_fields['I']==NULL) {
2429                 msg->cm_fields['I'] = strdup(msgidbuf);
2430         }
2431
2432         /* If the message is big, set its body aside for storage elsewhere */
2433         if (msg->cm_fields['M'] != NULL) {
2434                 if (strlen(msg->cm_fields['M']) > BIGMSG) {
2435                         is_bigmsg = 1;
2436                         holdM = msg->cm_fields['M'];
2437                         msg->cm_fields['M'] = NULL;
2438                 }
2439         }
2440
2441         /* Serialize our data structure for storage in the database */  
2442         serialize_message(&smr, msg);
2443
2444         if (is_bigmsg) {
2445                 msg->cm_fields['M'] = holdM;
2446         }
2447
2448         if (smr.len == 0) {
2449                 cprintf("%d Unable to serialize message\n",
2450                         ERROR + INTERNAL_ERROR);
2451                 return (-1L);
2452         }
2453
2454         /* Write our little bundle of joy into the message base */
2455         if (cdb_store(CDB_MSGMAIN, &newmsgid, (int)sizeof(long),
2456                       smr.ser, smr.len) < 0) {
2457                 CtdlLogPrintf(CTDL_ERR, "Can't store message\n");
2458                 retval = 0L;
2459         } else {
2460                 if (is_bigmsg) {
2461                         cdb_store(CDB_BIGMSGS,
2462                                 &newmsgid,
2463                                 (int)sizeof(long),
2464                                 holdM,
2465                                 (strlen(holdM) + 1)
2466                         );
2467                 }
2468                 retval = newmsgid;
2469         }
2470
2471         /* Free the memory we used for the serialized message */
2472         free(smr.ser);
2473
2474         /* Return the *local* message ID to the caller
2475          * (even if we're storing an incoming network message)
2476          */
2477         return(retval);
2478 }
2479
2480
2481
2482 /*
2483  * Serialize a struct CtdlMessage into the format used on disk and network.
2484  * 
2485  * This function loads up a "struct ser_ret" (defined in server.h) which
2486  * contains the length of the serialized message and a pointer to the
2487  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
2488  */
2489 void serialize_message(struct ser_ret *ret,             /* return values */
2490                         struct CtdlMessage *msg)        /* unserialized msg */
2491 {
2492         size_t wlen, fieldlen;
2493         int i;
2494         static char *forder = FORDER;
2495
2496         /*
2497          * Check for valid message format
2498          */
2499         if (is_valid_message(msg) == 0) {
2500                 CtdlLogPrintf(CTDL_ERR, "serialize_message() aborting due to invalid message\n");
2501                 ret->len = 0;
2502                 ret->ser = NULL;
2503                 return;
2504         }
2505
2506         ret->len = 3;
2507         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL)
2508                 ret->len = ret->len +
2509                         strlen(msg->cm_fields[(int)forder[i]]) + 2;
2510
2511         ret->ser = malloc(ret->len);
2512         if (ret->ser == NULL) {
2513                 CtdlLogPrintf(CTDL_ERR, "serialize_message() malloc(%ld) failed: %s\n",
2514                         (long)ret->len, strerror(errno));
2515                 ret->len = 0;
2516                 ret->ser = NULL;
2517                 return;
2518         }
2519
2520         ret->ser[0] = 0xFF;
2521         ret->ser[1] = msg->cm_anon_type;
2522         ret->ser[2] = msg->cm_format_type;
2523         wlen = 3;
2524
2525         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
2526                 fieldlen = strlen(msg->cm_fields[(int)forder[i]]);
2527                 ret->ser[wlen++] = (char)forder[i];
2528                 safestrncpy((char *)&ret->ser[wlen], msg->cm_fields[(int)forder[i]], fieldlen+1);
2529                 wlen = wlen + fieldlen + 1;
2530         }
2531         if (ret->len != wlen) CtdlLogPrintf(CTDL_ERR, "ERROR: len=%ld wlen=%ld\n",
2532                 (long)ret->len, (long)wlen);
2533
2534         return;
2535 }
2536
2537
2538 /*
2539  * Serialize a struct CtdlMessage into the format used on disk and network.
2540  * 
2541  * This function loads up a "struct ser_ret" (defined in server.h) which
2542  * contains the length of the serialized message and a pointer to the
2543  * serialized message in memory.  THE LATTER MUST BE FREED BY THE CALLER.
2544  */
2545 void dump_message(struct CtdlMessage *msg,      /* unserialized msg */
2546                   long Siz)                     /* how many chars ? */
2547 {
2548         size_t wlen;
2549         int i;
2550         static char *forder = FORDER;
2551         char *buf;
2552
2553         /*
2554          * Check for valid message format
2555          */
2556         if (is_valid_message(msg) == 0) {
2557                 CtdlLogPrintf(CTDL_ERR, "dump_message() aborting due to invalid message\n");
2558                 return;
2559         }
2560
2561         buf = (char*) malloc (Siz + 1);
2562
2563         wlen = 3;
2564         
2565         for (i=0; i<26; ++i) if (msg->cm_fields[(int)forder[i]] != NULL) {
2566                         snprintf (buf, Siz, " msg[%c] = %s ...\n", (char) forder[i], 
2567                                    msg->cm_fields[(int)forder[i]]);
2568                         client_write (buf, strlen(buf));
2569                 }
2570
2571         return;
2572 }
2573
2574
2575
2576 /*
2577  * Check to see if any messages already exist in the current room which
2578  * carry the same Exclusive ID as this one.  If any are found, delete them.
2579  */
2580 void ReplicationChecks(struct CtdlMessage *msg) {
2581         long old_msgnum = (-1L);
2582
2583         if (DoesThisRoomNeedEuidIndexing(&CC->room) == 0) return;
2584
2585         CtdlLogPrintf(CTDL_DEBUG, "Performing replication checks in <%s>\n",
2586                 CC->room.QRname);
2587
2588         /* No exclusive id?  Don't do anything. */
2589         if (msg == NULL) return;
2590         if (msg->cm_fields['E'] == NULL) return;
2591         if (IsEmptyStr(msg->cm_fields['E'])) return;
2592         /*CtdlLogPrintf(CTDL_DEBUG, "Exclusive ID: <%s> for room <%s>\n",
2593                 msg->cm_fields['E'], CC->room.QRname);*/
2594
2595         old_msgnum = locate_message_by_euid(msg->cm_fields['E'], &CC->room);
2596         if (old_msgnum > 0L) {
2597                 CtdlLogPrintf(CTDL_DEBUG, "ReplicationChecks() replacing message %ld\n", old_msgnum);
2598                 CtdlDeleteMessages(CC->room.QRname, &old_msgnum, 1, "");
2599         }
2600 }
2601
2602
2603
2604 /*
2605  * Save a message to disk and submit it into the delivery system.
2606  */
2607 long CtdlSubmitMsg(struct CtdlMessage *msg,     /* message to save */
2608                    struct recptypes *recps,     /* recipients (if mail) */
2609                    char *force,                 /* force a particular room? */
2610                    int flags                    /* should the bessage be exported clean? */
2611 ) {
2612         char submit_filename[128];
2613         char generated_timestamp[32];
2614         char hold_rm[ROOMNAMELEN];
2615         char actual_rm[ROOMNAMELEN];
2616         char force_room[ROOMNAMELEN];
2617         char content_type[SIZ];                 /* We have to learn this */
2618         char recipient[SIZ];
2619         long newmsgid;
2620         char *mptr = NULL;
2621         struct ctdluser userbuf;
2622         int a, i;
2623         struct MetaData smi;
2624         FILE *network_fp = NULL;
2625         static int seqnum = 1;
2626         struct CtdlMessage *imsg = NULL;
2627         char *instr = NULL;
2628         size_t instr_alloc = 0;
2629         struct ser_ret smr;
2630         char *hold_R, *hold_D;
2631         char *collected_addresses = NULL;
2632         struct addresses_to_be_filed *aptr = NULL;
2633         char *saved_rfc822_version = NULL;
2634         int qualified_for_journaling = 0;
2635         struct CitContext *CCC = CC;            /* CachedCitContext - performance boost */
2636         char bounce_to[1024] = "";
2637
2638         CtdlLogPrintf(CTDL_DEBUG, "CtdlSubmitMsg() called\n");
2639         if (is_valid_message(msg) == 0) return(-1);     /* self check */
2640
2641         /* If this message has no timestamp, we take the liberty of
2642          * giving it one, right now.
2643          */
2644         if (msg->cm_fields['T'] == NULL) {
2645                 snprintf(generated_timestamp, sizeof generated_timestamp, "%ld", (long)time(NULL));
2646                 msg->cm_fields['T'] = strdup(generated_timestamp);
2647         }
2648
2649         /* If this message has no path, we generate one.
2650          */
2651         if (msg->cm_fields['P'] == NULL) {
2652                 if (msg->cm_fields['A'] != NULL) {
2653                         msg->cm_fields['P'] = strdup(msg->cm_fields['A']);
2654                         for (a=0; !IsEmptyStr(&msg->cm_fields['P'][a]); ++a) {
2655                                 if (isspace(msg->cm_fields['P'][a])) {
2656                                         msg->cm_fields['P'][a] = ' ';
2657                                 }
2658                         }
2659                 }
2660                 else {
2661                         msg->cm_fields['P'] = strdup("unknown");
2662                 }
2663         }
2664
2665         if (force == NULL) {
2666                 strcpy(force_room, "");
2667         }
2668         else {
2669                 strcpy(force_room, force);
2670         }
2671
2672         /* Learn about what's inside, because it's what's inside that counts */
2673         if (msg->cm_fields['M'] == NULL) {
2674                 CtdlLogPrintf(CTDL_ERR, "ERROR: attempt to save message with NULL body\n");
2675                 return(-2);
2676         }
2677
2678         switch (msg->cm_format_type) {
2679         case 0:
2680                 strcpy(content_type, "text/x-citadel-variformat");
2681                 break;
2682         case 1:
2683                 strcpy(content_type, "text/plain");
2684                 break;
2685         case 4:
2686                 strcpy(content_type, "text/plain");
2687                 mptr = bmstrcasestr(msg->cm_fields['M'], "Content-type:");
2688                 if (mptr != NULL) {
2689                         char *aptr;
2690                         safestrncpy(content_type, &mptr[13], sizeof content_type);
2691                         striplt(content_type);
2692                         aptr = content_type;
2693                         while (!IsEmptyStr(aptr)) {
2694                                 if ((*aptr == ';')
2695                                     || (*aptr == ' ')
2696                                     || (*aptr == 13)
2697                                     || (*aptr == 10)) {
2698                                         *aptr = 0;
2699                                 }
2700                                 else aptr++;
2701                         }
2702                 }
2703         }
2704
2705         /* Goto the correct room */
2706         CtdlLogPrintf(CTDL_DEBUG, "Selected room %s\n", (recps) ? CCC->room.QRname : SENTITEMS);
2707         strcpy(hold_rm, CCC->room.QRname);
2708         strcpy(actual_rm, CCC->room.QRname);
2709         if (recps != NULL) {
2710                 strcpy(actual_rm, SENTITEMS);
2711         }
2712
2713         /* If the user is a twit, move to the twit room for posting */
2714         if (TWITDETECT) {
2715                 if (CCC->user.axlevel == 2) {
2716                         strcpy(hold_rm, actual_rm);
2717                         strcpy(actual_rm, config.c_twitroom);
2718                         CtdlLogPrintf(CTDL_DEBUG, "Diverting to twit room\n");
2719                 }
2720         }
2721
2722         /* ...or if this message is destined for Aide> then go there. */
2723         if (!IsEmptyStr(force_room)) {
2724                 strcpy(actual_rm, force_room);
2725         }
2726
2727         CtdlLogPrintf(CTDL_DEBUG, "Final selection: %s\n", actual_rm);
2728         if (strcasecmp(actual_rm, CCC->room.QRname)) {
2729                 /* getroom(&CCC->room, actual_rm); */
2730                 usergoto(actual_rm, 0, 1, NULL, NULL);
2731         }
2732
2733         /*
2734          * If this message has no O (room) field, generate one.
2735          */
2736         if (msg->cm_fields['O'] == NULL) {
2737                 msg->cm_fields['O'] = strdup(CCC->room.QRname);
2738         }
2739
2740         /* Perform "before save" hooks (aborting if any return nonzero) */
2741         CtdlLogPrintf(CTDL_DEBUG, "Performing before-save hooks\n");
2742         if (PerformMessageHooks(msg, EVT_BEFORESAVE) > 0) return(-3);
2743
2744         /*
2745          * If this message has an Exclusive ID, and the room is replication
2746          * checking enabled, then do replication checks.
2747          */
2748         if (DoesThisRoomNeedEuidIndexing(&CCC->room)) {
2749                 ReplicationChecks(msg);
2750         }
2751
2752         /* Save it to disk */
2753         CtdlLogPrintf(CTDL_DEBUG, "Saving to disk\n");
2754         newmsgid = send_message(msg);
2755         if (newmsgid <= 0L) return(-5);
2756
2757         /* Write a supplemental message info record.  This doesn't have to
2758          * be a critical section because nobody else knows about this message
2759          * yet.
2760          */
2761         CtdlLogPrintf(CTDL_DEBUG, "Creating MetaData record\n");
2762         memset(&smi, 0, sizeof(struct MetaData));
2763         smi.meta_msgnum = newmsgid;
2764         smi.meta_refcount = 0;
2765         safestrncpy(smi.meta_content_type, content_type,
2766                         sizeof smi.meta_content_type);
2767
2768         /*
2769          * Measure how big this message will be when rendered as RFC822.
2770          * We do this for two reasons:
2771          * 1. We need the RFC822 length for the new metadata record, so the
2772          *    POP and IMAP services don't have to calculate message lengths
2773          *    while the user is waiting (multiplied by potentially hundreds
2774          *    or thousands of messages).
2775          * 2. If journaling is enabled, we will need an RFC822 version of the
2776          *    message to attach to the journalized copy.
2777          */
2778         if (CCC->redirect_buffer != NULL) {
2779                 CtdlLogPrintf(CTDL_ALERT, "CCC->redirect_buffer is not NULL during message submission!\n");
2780                 abort();
2781         }
2782         CCC->redirect_buffer = malloc(SIZ);
2783         CCC->redirect_len = 0;
2784         CCC->redirect_alloc = SIZ;
2785         CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ALL, 0, 1, QP_EADDR);
2786         smi.meta_rfc822_length = CCC->redirect_len;
2787         saved_rfc822_version = CCC->redirect_buffer;
2788         CCC->redirect_buffer = NULL;
2789         CCC->redirect_len = 0;
2790         CCC->redirect_alloc = 0;
2791
2792         PutMetaData(&smi);
2793
2794         /* Now figure out where to store the pointers */
2795         CtdlLogPrintf(CTDL_DEBUG, "Storing pointers\n");
2796
2797         /* If this is being done by the networker delivering a private
2798          * message, we want to BYPASS saving the sender's copy (because there
2799          * is no local sender; it would otherwise go to the Trashcan).
2800          */
2801         if ((!CCC->internal_pgm) || (recps == NULL)) {
2802                 if (CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 1, msg) != 0) {
2803                         CtdlLogPrintf(CTDL_ERR, "ERROR saving message pointer!\n");
2804                         CtdlSaveMsgPointerInRoom(config.c_aideroom, newmsgid, 0, msg);
2805                 }
2806         }
2807
2808         /* For internet mail, drop a copy in the outbound queue room */
2809         if (recps != NULL)
2810          if (recps->num_internet > 0) {
2811                 CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, newmsgid, 0, msg);
2812         }
2813
2814         /* If other rooms are specified, drop them there too. */
2815         if (recps != NULL)
2816          if (recps->num_room > 0)
2817           for (i=0; i<num_tokens(recps->recp_room, '|'); ++i) {
2818                 extract_token(recipient, recps->recp_room, i,
2819                                         '|', sizeof recipient);
2820                 CtdlLogPrintf(CTDL_DEBUG, "Delivering to room <%s>\n", recipient);
2821                 CtdlSaveMsgPointerInRoom(recipient, newmsgid, 0, msg);
2822         }
2823
2824         /* Bump this user's messages posted counter. */
2825         CtdlLogPrintf(CTDL_DEBUG, "Updating user\n");
2826         lgetuser(&CCC->user, CCC->curr_user);
2827         CCC->user.posted = CCC->user.posted + 1;
2828         lputuser(&CCC->user);
2829
2830         /* Decide where bounces need to be delivered */
2831         if (CCC->logged_in) {
2832                 snprintf(bounce_to, sizeof bounce_to, "%s@%s", CCC->user.fullname, config.c_nodename);
2833         }
2834         else {
2835                 snprintf(bounce_to, sizeof bounce_to, "%s@%s", msg->cm_fields['A'], msg->cm_fields['N']);
2836         }
2837
2838         /* If this is private, local mail, make a copy in the
2839          * recipient's mailbox and bump the reference count.
2840          */
2841         if (recps != NULL)
2842          if (recps->num_local > 0)
2843           for (i=0; i<num_tokens(recps->recp_local, '|'); ++i) {
2844                 extract_token(recipient, recps->recp_local, i,
2845                                         '|', sizeof recipient);
2846                 CtdlLogPrintf(CTDL_DEBUG, "Delivering private local mail to <%s>\n",
2847                         recipient);
2848                 if (getuser(&userbuf, recipient) == 0) {
2849                         // Add a flag so the Funambol module knows its mail
2850                         msg->cm_fields['W'] = strdup(recipient);
2851                         MailboxName(actual_rm, sizeof actual_rm, &userbuf, MAILROOM);
2852                         CtdlSaveMsgPointerInRoom(actual_rm, newmsgid, 0, msg);
2853                         BumpNewMailCounter(userbuf.usernum);
2854                         if (!IsEmptyStr(config.c_funambol_host) || !IsEmptyStr(config.c_pager_program)) {
2855                         /* Generate a instruction message for the Funambol notification
2856                          * server, in the same style as the SMTP queue
2857                          */
2858                            instr_alloc = 1024;
2859                            instr = malloc(instr_alloc);
2860                            snprintf(instr, instr_alloc,
2861                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2862                         "bounceto|%s\n",
2863                         SPOOLMIME, newmsgid, (long)time(NULL),
2864                         bounce_to
2865                         );
2866
2867                            imsg = malloc(sizeof(struct CtdlMessage));
2868                            memset(imsg, 0, sizeof(struct CtdlMessage));
2869                            imsg->cm_magic = CTDLMESSAGE_MAGIC;
2870                            imsg->cm_anon_type = MES_NORMAL;
2871                            imsg->cm_format_type = FMT_RFC822;
2872                            imsg->cm_fields['A'] = strdup("Citadel");
2873                            imsg->cm_fields['J'] = strdup("do not journal");
2874                            imsg->cm_fields['M'] = instr;        /* imsg owns this memory now */
2875                            imsg->cm_fields['W'] = strdup(recipient);
2876                            CtdlSubmitMsg(imsg, NULL, FNBL_QUEUE_ROOM, 0);
2877                            CtdlFreeMessage(imsg);
2878                         }
2879                 }
2880                 else {
2881                         CtdlLogPrintf(CTDL_DEBUG, "No user <%s>\n", recipient);
2882                         CtdlSaveMsgPointerInRoom(config.c_aideroom,
2883                                 newmsgid, 0, msg);
2884                 }
2885         }
2886
2887         /* Perform "after save" hooks */
2888         CtdlLogPrintf(CTDL_DEBUG, "Performing after-save hooks\n");
2889         PerformMessageHooks(msg, EVT_AFTERSAVE);
2890
2891         /* For IGnet mail, we have to save a new copy into the spooler for
2892          * each recipient, with the R and D fields set to the recipient and
2893          * destination-node.  This has two ugly side effects: all other
2894          * recipients end up being unlisted in this recipient's copy of the
2895          * message, and it has to deliver multiple messages to the same
2896          * node.  We'll revisit this again in a year or so when everyone has
2897          * a network spool receiver that can handle the new style messages.
2898          */
2899         if (recps != NULL)
2900          if (recps->num_ignet > 0)
2901           for (i=0; i<num_tokens(recps->recp_ignet, '|'); ++i) {
2902                 extract_token(recipient, recps->recp_ignet, i,
2903                                 '|', sizeof recipient);
2904
2905                 hold_R = msg->cm_fields['R'];
2906                 hold_D = msg->cm_fields['D'];
2907                 msg->cm_fields['R'] = malloc(SIZ);
2908                 msg->cm_fields['D'] = malloc(128);
2909                 extract_token(msg->cm_fields['R'], recipient, 0, '@', SIZ);
2910                 extract_token(msg->cm_fields['D'], recipient, 1, '@', 128);
2911                 
2912                 serialize_message(&smr, msg);
2913                 if (smr.len > 0) {
2914                         snprintf(submit_filename, sizeof submit_filename,
2915                                          "%s/netmail.%04lx.%04x.%04x",
2916                                          ctdl_netin_dir,
2917                                          (long) getpid(), CCC->cs_pid, ++seqnum);
2918                         network_fp = fopen(submit_filename, "wb+");
2919                         if (network_fp != NULL) {
2920                                 fwrite(smr.ser, smr.len, 1, network_fp);
2921                                 fclose(network_fp);
2922                         }
2923                         free(smr.ser);
2924                 }
2925
2926                 free(msg->cm_fields['R']);
2927                 free(msg->cm_fields['D']);
2928                 msg->cm_fields['R'] = hold_R;
2929                 msg->cm_fields['D'] = hold_D;
2930         }
2931
2932         /* Go back to the room we started from */
2933         CtdlLogPrintf(CTDL_DEBUG, "Returning to original room %s\n", hold_rm);
2934         if (strcasecmp(hold_rm, CCC->room.QRname))
2935                 usergoto(hold_rm, 0, 1, NULL, NULL);
2936
2937         /* For internet mail, generate delivery instructions.
2938          * Yes, this is recursive.  Deal with it.  Infinite recursion does
2939          * not happen because the delivery instructions message does not
2940          * contain a recipient.
2941          */
2942         if (recps != NULL)
2943          if (recps->num_internet > 0) {
2944                 CtdlLogPrintf(CTDL_DEBUG, "Generating delivery instructions\n");
2945                 instr_alloc = 1024;
2946                 instr = malloc(instr_alloc);
2947                 snprintf(instr, instr_alloc,
2948                         "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
2949                         "bounceto|%s\n",
2950                         SPOOLMIME, newmsgid, (long)time(NULL),
2951                         bounce_to
2952                 );
2953
2954                 for (i=0; i<num_tokens(recps->recp_internet, '|'); ++i) {
2955                         size_t tmp = strlen(instr);
2956                         extract_token(recipient, recps->recp_internet, i, '|', sizeof recipient);
2957                         if ((tmp + strlen(recipient) + 32) > instr_alloc) {
2958                                 instr_alloc = instr_alloc * 2;
2959                                 instr = realloc(instr, instr_alloc);
2960                         }
2961                         snprintf(&instr[tmp], instr_alloc - tmp, "remote|%s|0||\n", recipient);
2962                 }
2963
2964                 imsg = malloc(sizeof(struct CtdlMessage));
2965                 memset(imsg, 0, sizeof(struct CtdlMessage));
2966                 imsg->cm_magic = CTDLMESSAGE_MAGIC;
2967                 imsg->cm_anon_type = MES_NORMAL;
2968                 imsg->cm_format_type = FMT_RFC822;
2969                 imsg->cm_fields['A'] = strdup("Citadel");
2970                 imsg->cm_fields['J'] = strdup("do not journal");
2971                 imsg->cm_fields['M'] = instr;   /* imsg owns this memory now */
2972                 CtdlSubmitMsg(imsg, NULL, SMTP_SPOOLOUT_ROOM, QP_EADDR);
2973                 CtdlFreeMessage(imsg);
2974         }
2975
2976         /*
2977          * Any addresses to harvest for someone's address book?
2978          */
2979         if ( (CCC->logged_in) && (recps != NULL) ) {
2980                 collected_addresses = harvest_collected_addresses(msg);
2981         }
2982
2983         if (collected_addresses != NULL) {
2984                 aptr = (struct addresses_to_be_filed *)
2985                         malloc(sizeof(struct addresses_to_be_filed));
2986                 MailboxName(actual_rm, sizeof actual_rm,
2987                         &CCC->user, USERCONTACTSROOM);
2988                 aptr->roomname = strdup(actual_rm);
2989                 aptr->collected_addresses = collected_addresses;
2990                 begin_critical_section(S_ATBF);
2991                 aptr->next = atbf;
2992                 atbf = aptr;
2993                 end_critical_section(S_ATBF);
2994         }
2995
2996         /*
2997          * Determine whether this message qualifies for journaling.
2998          */
2999         if (msg->cm_fields['J'] != NULL) {
3000                 qualified_for_journaling = 0;
3001         }
3002         else {
3003                 if (recps == NULL) {
3004                         qualified_for_journaling = config.c_journal_pubmsgs;
3005                 }
3006                 else if (recps->num_local + recps->num_ignet + recps->num_internet > 0) {
3007                         qualified_for_journaling = config.c_journal_email;
3008                 }
3009                 else {
3010                         qualified_for_journaling = config.c_journal_pubmsgs;
3011                 }
3012         }
3013
3014         /*
3015          * Do we have to perform journaling?  If so, hand off the saved
3016          * RFC822 version will be handed off to the journaler for background
3017          * submit.  Otherwise, we have to free the memory ourselves.
3018          */
3019         if (saved_rfc822_version != NULL) {
3020                 if (qualified_for_journaling) {
3021                         JournalBackgroundSubmit(msg, saved_rfc822_version, recps);
3022                 }
3023                 else {
3024                         free(saved_rfc822_version);
3025                 }
3026         }
3027
3028         /* Done. */
3029         return(newmsgid);
3030 }
3031
3032
3033
3034
3035
3036 /*
3037  * Convenience function for generating small administrative messages.
3038  */
3039 void quickie_message(const char *from, const char *fromaddr, char *to, char *room, const char *text, 
3040                         int format_type, const char *subject)
3041 {
3042         struct CtdlMessage *msg;
3043         struct recptypes *recp = NULL;
3044
3045         msg = malloc(sizeof(struct CtdlMessage));
3046         memset(msg, 0, sizeof(struct CtdlMessage));
3047         msg->cm_magic = CTDLMESSAGE_MAGIC;
3048         msg->cm_anon_type = MES_NORMAL;
3049         msg->cm_format_type = format_type;
3050
3051         if (from != NULL) {
3052                 msg->cm_fields['A'] = strdup(from);
3053         }
3054         else if (fromaddr != NULL) {
3055                 msg->cm_fields['A'] = strdup(fromaddr);
3056                 if (strchr(msg->cm_fields['A'], '@')) {
3057                         *strchr(msg->cm_fields['A'], '@') = 0;
3058                 }
3059         }
3060         else {
3061                 msg->cm_fields['A'] = strdup("Citadel");
3062         }
3063
3064         if (fromaddr != NULL) msg->cm_fields['F'] = strdup(fromaddr);
3065         if (room != NULL) msg->cm_fields['O'] = strdup(room);
3066         msg->cm_fields['N'] = strdup(NODENAME);
3067         if (to != NULL) {
3068                 msg->cm_fields['R'] = strdup(to);
3069                 recp = validate_recipients(to, NULL, 0);
3070         }
3071         if (subject != NULL) {
3072                 msg->cm_fields['U'] = strdup(subject);
3073         }
3074         msg->cm_fields['M'] = strdup(text);
3075
3076         CtdlSubmitMsg(msg, recp, room, 0);
3077         CtdlFreeMessage(msg);
3078         if (recp != NULL) free_recipients(recp);
3079 }
3080
3081
3082
3083 /*
3084  * Back end function used by CtdlMakeMessage() and similar functions
3085  */
3086 char *CtdlReadMessageBody(char *terminator,     /* token signalling EOT */
3087                         size_t maxlen,          /* maximum message length */
3088                         char *exist,            /* if non-null, append to it;
3089                                                    exist is ALWAYS freed  */
3090                         int crlf,               /* CRLF newlines instead of LF */
3091                         int sock                /* socket handle or 0 for this session's client socket */
3092                         ) {
3093         char buf[1024];
3094         int linelen;
3095         size_t message_len = 0;
3096         size_t buffer_len = 0;
3097         char *ptr;
3098         char *m;
3099         int flushing = 0;
3100         int finished = 0;
3101         int dotdot = 0;
3102
3103         if (exist == NULL) {
3104                 m = malloc(4096);
3105                 m[0] = 0;
3106                 buffer_len = 4096;
3107                 message_len = 0;
3108         }
3109         else {
3110                 message_len = strlen(exist);
3111                 buffer_len = message_len + 4096;
3112                 m = realloc(exist, buffer_len);
3113                 if (m == NULL) {
3114                         free(exist);
3115                         return m;
3116                 }
3117         }
3118
3119         /* Do we need to change leading ".." to "." for SMTP escaping? */
3120         if (!strcmp(terminator, ".")) {
3121                 dotdot = 1;
3122         }
3123
3124         /* flush the input if we have nowhere to store it */
3125         if (m == NULL) {
3126                 flushing = 1;
3127         }
3128
3129         /* read in the lines of message text one by one */
3130         do {
3131                 if (sock > 0) {
3132                         if (sock_getln(sock, buf, (sizeof buf - 3)) < 0) finished = 1;
3133                 }
3134                 else {
3135                         if (client_getln(buf, (sizeof buf - 3)) < 1) finished = 1;
3136                 }
3137                 if (!strcmp(buf, terminator)) finished = 1;
3138                 if (crlf) {
3139                         strcat(buf, "\r\n");
3140                 }
3141                 else {
3142                         strcat(buf, "\n");
3143                 }
3144
3145                 /* Unescape SMTP-style input of two dots at the beginning of the line */
3146                 if (dotdot) {
3147                         if (!strncmp(buf, "..", 2)) {
3148                                 strcpy(buf, &buf[1]);
3149                         }
3150                 }
3151
3152                 if ( (!flushing) && (!finished) ) {
3153                         /* Measure the line */
3154                         linelen = strlen(buf);
3155         
3156                         /* augment the buffer if we have to */
3157                         if ((message_len + linelen) >= buffer_len) {
3158                                 ptr = realloc(m, (buffer_len * 2) );
3159                                 if (ptr == NULL) {      /* flush if can't allocate */
3160                                         flushing = 1;
3161                                 } else {
3162                                         buffer_len = (buffer_len * 2);
3163                                         m = ptr;
3164                                         CtdlLogPrintf(CTDL_DEBUG, "buffer_len is now %ld\n", (long)buffer_len);
3165                                 }
3166                         }
3167         
3168                         /* Add the new line to the buffer.  NOTE: this loop must avoid
3169                         * using functions like strcat() and strlen() because they
3170                         * traverse the entire buffer upon every call, and doing that
3171                         * for a multi-megabyte message slows it down beyond usability.
3172                         */
3173                         strcpy(&m[message_len], buf);
3174                         message_len += linelen;
3175                 }
3176
3177                 /* if we've hit the max msg length, flush the rest */
3178                 if (message_len >= maxlen) flushing = 1;
3179
3180         } while (!finished);
3181         return(m);
3182 }
3183
3184
3185
3186
3187 /*
3188  * Build a binary message to be saved on disk.
3189  * (NOTE: if you supply 'preformatted_text', the buffer you give it
3190  * will become part of the message.  This means you are no longer
3191  * responsible for managing that memory -- it will be freed along with
3192  * the rest of the fields when CtdlFreeMessage() is called.)
3193  */
3194
3195 struct CtdlMessage *CtdlMakeMessage(
3196         struct ctdluser *author,        /* author's user structure */
3197         char *recipient,                /* NULL if it's not mail */
3198         char *recp_cc,                  /* NULL if it's not mail */
3199         char *room,                     /* room where it's going */
3200         int type,                       /* see MES_ types in header file */
3201         int format_type,                /* variformat, plain text, MIME... */
3202         char *fake_name,                /* who we're masquerading as */
3203         char *my_email,                 /* which of my email addresses to use (empty is ok) */
3204         char *subject,                  /* Subject (optional) */
3205         char *supplied_euid,            /* ...or NULL if this is irrelevant */
3206         char *preformatted_text,        /* ...or NULL to read text from client */
3207         char *references                /* Thread references */
3208 ) {
3209         char dest_node[256];
3210         char buf[1024];
3211         struct CtdlMessage *msg;
3212
3213         msg = malloc(sizeof(struct CtdlMessage));
3214         memset(msg, 0, sizeof(struct CtdlMessage));
3215         msg->cm_magic = CTDLMESSAGE_MAGIC;
3216         msg->cm_anon_type = type;
3217         msg->cm_format_type = format_type;
3218
3219         /* Don't confuse the poor folks if it's not routed mail. */
3220         strcpy(dest_node, "");
3221
3222         striplt(recipient);
3223         striplt(recp_cc);
3224
3225         /* Path or Return-Path */
3226         if (my_email == NULL) my_email = "";
3227
3228         if (!IsEmptyStr(my_email)) {
3229                 msg->cm_fields['P'] = strdup(my_email);
3230         }
3231         else {
3232                 snprintf(buf, sizeof buf, "%s", author->fullname);
3233                 msg->cm_fields['P'] = strdup(buf);
3234         }
3235         convert_spaces_to_underscores(msg->cm_fields['P']);
3236
3237         snprintf(buf, sizeof buf, "%ld", (long)time(NULL));     /* timestamp */
3238         msg->cm_fields['T'] = strdup(buf);
3239
3240         if (fake_name[0])                                       /* author */
3241                 msg->cm_fields['A'] = strdup(fake_name);
3242         else
3243                 msg->cm_fields['A'] = strdup(author->fullname);
3244
3245         if (CC->room.QRflags & QR_MAILBOX) {            /* room */
3246                 msg->cm_fields['O'] = strdup(&CC->room.QRname[11]);
3247         }
3248         else {
3249                 msg->cm_fields['O'] = strdup(CC->room.QRname);
3250         }
3251
3252         msg->cm_fields['N'] = strdup(NODENAME);         /* nodename */
3253         msg->cm_fields['H'] = strdup(HUMANNODE);                /* hnodename */
3254
3255         if (recipient[0] != 0) {
3256                 msg->cm_fields['R'] = strdup(recipient);
3257         }
3258         if (recp_cc[0] != 0) {
3259                 msg->cm_fields['Y'] = strdup(recp_cc);
3260         }
3261         if (dest_node[0] != 0) {
3262                 msg->cm_fields['D'] = strdup(dest_node);
3263         }
3264
3265         if (!IsEmptyStr(my_email)) {
3266                 msg->cm_fields['F'] = strdup(my_email);
3267         }
3268         else if ( (author == &CC->user) && (!IsEmptyStr(CC->cs_inet_email)) ) {
3269                 msg->cm_fields['F'] = strdup(CC->cs_inet_email);
3270         }
3271
3272         if (subject != NULL) {
3273                 long length;
3274                 striplt(subject);
3275                 length = strlen(subject);
3276                 if (length > 0) {
3277                         long i;
3278                         long IsAscii;
3279                         IsAscii = -1;
3280                         i = 0;
3281                         while ((subject[i] != '\0') &&
3282                                (IsAscii = isascii(subject[i]) != 0 ))
3283                                 i++;
3284                         if (IsAscii != 0)
3285                                 msg->cm_fields['U'] = strdup(subject);
3286                         else /* ok, we've got utf8 in the string. */
3287                         {
3288                                 msg->cm_fields['U'] = rfc2047encode(subject, length);
3289                         }
3290
3291                 }
3292         }
3293
3294         if (supplied_euid != NULL) {
3295                 msg->cm_fields['E'] = strdup(supplied_euid);
3296         }
3297
3298         if (references != NULL) {
3299                 if (!IsEmptyStr(references)) {
3300                         msg->cm_fields['W'] = strdup(references);
3301                 }
3302         }
3303
3304         if (preformatted_text != NULL) {
3305                 msg->cm_fields['M'] = preformatted_text;
3306         }
3307         else {
3308                 msg->cm_fields['M'] = CtdlReadMessageBody("000", config.c_maxmsglen, NULL, 0, 0);
3309         }
3310
3311         return(msg);
3312 }
3313
3314
3315 /*
3316  * Check to see whether we have permission to post a message in the current
3317  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
3318  * returns 0 on success.
3319  */
3320 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, 
3321                                           size_t n, 
3322                                           const char* RemoteIdentifier,
3323                                           int PostPublic) {
3324         int ra;
3325
3326         if (!(CC->logged_in) && 
3327             (PostPublic == POST_LOGGED_IN)) {
3328                 snprintf(errmsgbuf, n, "Not logged in.");
3329                 return (ERROR + NOT_LOGGED_IN);
3330         }
3331         else if (PostPublic == CHECK_EXISTANCE) {
3332                 return (0); // We're Evaling whether a recipient exists
3333         }
3334         else if (!(CC->logged_in)) {
3335                 
3336                 if ((CC->room.QRflags & QR_READONLY)) {
3337                         snprintf(errmsgbuf, n, "Not logged in.");
3338                         return (ERROR + NOT_LOGGED_IN);
3339                 }
3340                 if (CC->room.QRflags2 & QR2_MODERATED) {
3341                         snprintf(errmsgbuf, n, "Not logged in Moderation feature not yet implemented!");
3342                         return (ERROR + NOT_LOGGED_IN);
3343                 }
3344                 if ((PostPublic!=POST_LMTP) &&(CC->room.QRflags2 & QR2_SMTP_PUBLIC) == 0) {
3345                         SpoolControl *sc;
3346                         char filename[SIZ];
3347                         int found;
3348
3349                         if (RemoteIdentifier == NULL)
3350                         {
3351                                 snprintf(errmsgbuf, n, "Need sender to permit access.");
3352                                 return (ERROR + USERNAME_REQUIRED);
3353                         }
3354
3355                         assoc_file_name(filename, sizeof filename, &CC->room, ctdl_netcfg_dir);
3356                         begin_critical_section(S_NETCONFIGS);
3357                         if (!read_spoolcontrol_file(&sc, filename))
3358                         {
3359                                 end_critical_section(S_NETCONFIGS);
3360                                 snprintf(errmsgbuf, n,
3361                                         "This mailing list only accepts posts from subscribers.");
3362                                 return (ERROR + NO_SUCH_USER);
3363                         }
3364                         end_critical_section(S_NETCONFIGS);
3365                         found = is_recipient (sc, RemoteIdentifier);
3366                         free_spoolcontrol_struct(&sc);
3367                         if (found) {
3368                                 return (0);
3369                         }
3370                         else {
3371                                 snprintf(errmsgbuf, n,
3372                                         "This mailing list only accepts posts from subscribers.");
3373                                 return (ERROR + NO_SUCH_USER);
3374                         }
3375                 }
3376                 return (0);
3377
3378         }
3379
3380         if ((CC->user.axlevel < 2)
3381             && ((CC->room.QRflags & QR_MAILBOX) == 0)) {
3382                 snprintf(errmsgbuf, n, "Need to be validated to enter "
3383                                 "(except in %s> to sysop)", MAILROOM);
3384                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3385         }
3386
3387         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
3388         if (!(ra & UA_POSTALLOWED)) {
3389                 snprintf(errmsgbuf, n, "Higher access is required to post in this room.");
3390                 return (ERROR + HIGHER_ACCESS_REQUIRED);
3391         }
3392
3393         strcpy(errmsgbuf, "Ok");
3394         return(0);
3395 }
3396
3397
3398 /*
3399  * Check to see if the specified user has Internet mail permission
3400  * (returns nonzero if permission is granted)
3401  */
3402 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
3403
3404         /* Do not allow twits to send Internet mail */
3405         if (who->axlevel <= 2) return(0);
3406
3407         /* Globally enabled? */
3408         if (config.c_restrict == 0) return(1);
3409
3410         /* User flagged ok? */
3411         if (who->flags & US_INTERNET) return(2);
3412
3413         /* Aide level access? */
3414         if (who->axlevel >= 6) return(3);
3415
3416         /* No mail for you! */
3417         return(0);
3418 }
3419
3420
3421 /*
3422  * Validate recipients, count delivery types and errors, and handle aliasing
3423  * FIXME check for dupes!!!!!
3424  *
3425  * Returns 0 if all addresses are ok, ret->num_error = -1 if no addresses 
3426  * were specified, or the number of addresses found invalid.
3427  *
3428  * Caller needs to free the result using free_recipients()
3429  */
3430 struct recptypes *validate_recipients(char *supplied_recipients, 
3431                                       const char *RemoteIdentifier, 
3432                                       int Flags) {
3433         struct recptypes *ret;
3434         char *recipients = NULL;
3435         char this_recp[256];
3436         char this_recp_cooked[256];
3437         char append[SIZ];
3438         int num_recps = 0;
3439         int i, j;
3440         int mailtype;
3441         int invalid;
3442         struct ctdluser tempUS;
3443         struct ctdlroom tempQR;
3444         struct ctdlroom tempQR2;
3445         int err = 0;
3446         char errmsg[SIZ];
3447         int in_quotes = 0;
3448
3449         /* Initialize */
3450         ret = (struct recptypes *) malloc(sizeof(struct recptypes));
3451         if (ret == NULL) return(NULL);
3452
3453         /* Set all strings to null and numeric values to zero */
3454         memset(ret, 0, sizeof(struct recptypes));
3455
3456         if (supplied_recipients == NULL) {
3457                 recipients = strdup("");
3458         }
3459         else {
3460                 recipients = strdup(supplied_recipients);
3461         }
3462
3463         /* Allocate some memory.  Yes, this allocates 500% more memory than we will
3464          * actually need, but it's healthier for the heap than doing lots of tiny
3465          * realloc() calls instead.
3466          */
3467
3468         ret->errormsg = malloc(strlen(recipients) + 1024);
3469         ret->recp_local = malloc(strlen(recipients) + 1024);
3470         ret->recp_internet = malloc(strlen(recipients) + 1024);
3471         ret->recp_ignet = malloc(strlen(recipients) + 1024);
3472         ret->recp_room = malloc(strlen(recipients) + 1024);
3473         ret->display_recp = malloc(strlen(recipients) + 1024);
3474
3475         ret->errormsg[0] = 0;
3476         ret->recp_local[0] = 0;
3477         ret->recp_internet[0] = 0;
3478         ret->recp_ignet[0] = 0;
3479         ret->recp_room[0] = 0;
3480         ret->display_recp[0] = 0;
3481
3482         ret->recptypes_magic = RECPTYPES_MAGIC;
3483
3484         /* Change all valid separator characters to commas */
3485         for (i=0; !IsEmptyStr(&recipients[i]); ++i) {
3486                 if ((recipients[i] == ';') || (recipients[i] == '|')) {
3487                         recipients[i] = ',';
3488                 }
3489         }
3490
3491         /* Now start extracting recipients... */
3492
3493         while (!IsEmptyStr(recipients)) {
3494
3495                 for (i=0; i<=strlen(recipients); ++i) {
3496                         if (recipients[i] == '\"') in_quotes = 1 - in_quotes;
3497                         if ( ( (recipients[i] == ',') && (!in_quotes) ) || (recipients[i] == 0) ) {
3498                                 safestrncpy(this_recp, recipients, i+1);
3499                                 this_recp[i] = 0;
3500                                 if (recipients[i] == ',') {
3501                                         strcpy(recipients, &recipients[i+1]);
3502                                 }
3503                                 else {
3504                                         strcpy(recipients, "");
3505                                 }
3506                                 break;
3507                         }
3508                 }
3509
3510                 striplt(this_recp);
3511                 if (IsEmptyStr(this_recp))
3512                         break;
3513                 CtdlLogPrintf(CTDL_DEBUG, "Evaluating recipient #%d: %s\n", num_recps, this_recp);
3514                 ++num_recps;
3515                 mailtype = alias(this_recp);
3516                 mailtype = alias(this_recp);
3517                 mailtype = alias(this_recp);
3518                 j = 0;
3519                 for (j=0; !IsEmptyStr(&this_recp[j]); ++j) {
3520                         if (this_recp[j]=='_') {
3521                                 this_recp_cooked[j] = ' ';
3522                         }
3523                         else {
3524                                 this_recp_cooked[j] = this_recp[j];
3525                         }
3526                 }
3527                 this_recp_cooked[j] = '\0';
3528                 invalid = 0;
3529                 errmsg[0] = 0;
3530                 switch(mailtype) {
3531                         case MES_LOCAL:
3532                                 if (!strcasecmp(this_recp, "sysop")) {
3533                                         ++ret->num_room;
3534                                         strcpy(this_recp, config.c_aideroom);
3535                                         if (!IsEmptyStr(ret->recp_room)) {
3536                                                 strcat(ret->recp_room, "|");
3537                                         }
3538                                         strcat(ret->recp_room, this_recp);
3539                                 }
3540                                 else if ( (!strncasecmp(this_recp, "room_", 5))
3541                                       && (!getroom(&tempQR, &this_recp_cooked[5])) ) {
3542
3543                                         /* Save room so we can restore it later */
3544                                         tempQR2 = CC->room;
3545                                         CC->room = tempQR;
3546                                         
3547                                         /* Check permissions to send mail to this room */
3548                                         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, 
3549                                                                                     sizeof errmsg, 
3550                                                                                     RemoteIdentifier,
3551                                                                                     Flags
3552                                         );
3553                                         if (err)
3554                                         {
3555                                                 ++ret->num_error;
3556                                                 invalid = 1;
3557                                         } 
3558                                         else {
3559                                                 ++ret->num_room;
3560                                                 if (!IsEmptyStr(ret->recp_room)) {
3561                                                         strcat(ret->recp_room, "|");
3562                                                 }
3563                                                 strcat(ret->recp_room, &this_recp_cooked[5]);
3564                                         }
3565                                         
3566                                         /* Restore room in case something needs it */
3567                                         CC->room = tempQR2;
3568
3569                                 }
3570                                 else if (getuser(&tempUS, this_recp) == 0) {
3571                                         ++ret->num_local;
3572                                         strcpy(this_recp, tempUS.fullname);
3573                                         if (!IsEmptyStr(ret->recp_local)) {
3574                                                 strcat(ret->recp_local, "|");
3575                                         }
3576                                         strcat(ret->recp_local, this_recp);
3577                                 }
3578                                 else if (getuser(&tempUS, this_recp_cooked) == 0) {
3579                                         ++ret->num_local;
3580                                         strcpy(this_recp, tempUS.fullname);
3581                                         if (!IsEmptyStr(ret->recp_local)) {
3582                                                 strcat(ret->recp_local, "|");
3583                                         }
3584                                         strcat(ret->recp_local, this_recp);
3585                                 }
3586                                 else {
3587                                         ++ret->num_error;
3588                                         invalid = 1;
3589                                 }
3590                                 break;
3591                         case MES_INTERNET:
3592                                 /* Yes, you're reading this correctly: if the target
3593                                  * domain points back to the local system or an attached
3594                                  * Citadel directory, the address is invalid.  That's
3595                                  * because if the address were valid, we would have
3596                                  * already translated it to a local address by now.
3597                                  */
3598                                 if (IsDirectory(this_recp, 0)) {
3599                                         ++ret->num_error;
3600                                         invalid = 1;
3601                                 }
3602                                 else {
3603                                         ++ret->num_internet;
3604                                         if (!IsEmptyStr(ret->recp_internet)) {
3605                                                 strcat(ret->recp_internet, "|");
3606                                         }
3607                                         strcat(ret->recp_internet, this_recp);
3608                                 }
3609                                 break;
3610                         case MES_IGNET:
3611                                 ++ret->num_ignet;
3612                                 if (!IsEmptyStr(ret->recp_ignet)) {
3613                                         strcat(ret->recp_ignet, "|");
3614                                 }
3615                                 strcat(ret->recp_ignet, this_recp);
3616                                 break;
3617                         case MES_ERROR:
3618                                 ++ret->num_error;
3619                                 invalid = 1;
3620                                 break;
3621                 }
3622                 if (invalid) {
3623                         if (IsEmptyStr(errmsg)) {
3624                                 snprintf(append, sizeof append, "Invalid recipient: %s", this_recp);
3625                         }
3626                         else {
3627                                 snprintf(append, sizeof append, "%s", errmsg);
3628                         }
3629                         if ( (strlen(ret->errormsg) + strlen(append) + 3) < SIZ) {
3630                                 if (!IsEmptyStr(ret->errormsg)) {
3631                                         strcat(ret->errormsg, "; ");
3632                                 }
3633                                 strcat(ret->errormsg, append);
3634                         }
3635                 }
3636                 else {
3637                         if (IsEmptyStr(ret->display_recp)) {
3638                                 strcpy(append, this_recp);
3639                         }
3640                         else {
3641                                 snprintf(append, sizeof append, ", %s", this_recp);
3642                         }
3643                         if ( (strlen(ret->display_recp)+strlen(append)) < SIZ) {
3644                                 strcat(ret->display_recp, append);
3645                         }
3646                 }
3647         }
3648
3649         if ((ret->num_local + ret->num_internet + ret->num_ignet +
3650            ret->num_room + ret->num_error) == 0) {
3651                 ret->num_error = (-1);
3652                 strcpy(ret->errormsg, "No recipients specified.");
3653         }
3654
3655         CtdlLogPrintf(CTDL_DEBUG, "validate_recipients()\n");
3656         CtdlLogPrintf(CTDL_DEBUG, " local: %d <%s>\n", ret->num_local, ret->recp_local);
3657         CtdlLogPrintf(CTDL_DEBUG, "  room: %d <%s>\n", ret->num_room, ret->recp_room);
3658         CtdlLogPrintf(CTDL_DEBUG, "  inet: %d <%s>\n", ret->num_internet, ret->recp_internet);
3659         CtdlLogPrintf(CTDL_DEBUG, " ignet: %d <%s>\n", ret->num_ignet, ret->recp_ignet);
3660         CtdlLogPrintf(CTDL_DEBUG, " error: %d <%s>\n", ret->num_error, ret->errormsg);
3661
3662         free(recipients);
3663         return(ret);
3664 }
3665
3666
3667 /*
3668  * Destructor for struct recptypes
3669  */
3670 void free_recipients(struct recptypes *valid) {
3671
3672         if (valid == NULL) {
3673                 return;
3674         }
3675
3676         if (valid->recptypes_magic != RECPTYPES_MAGIC) {
3677                 CtdlLogPrintf(CTDL_EMERG, "Attempt to call free_recipients() on some other data type!\n");
3678                 abort();
3679         }
3680
3681         if (valid->errormsg != NULL)            free(valid->errormsg);
3682         if (valid->recp_local != NULL)          free(valid->recp_local);
3683         if (valid->recp_internet != NULL)       free(valid->recp_internet);
3684         if (valid->recp_ignet != NULL)          free(valid->recp_ignet);
3685         if (valid->recp_room != NULL)           free(valid->recp_room);
3686         if (valid->display_recp != NULL)        free(valid->display_recp);
3687         free(valid);
3688 }
3689
3690
3691
3692 /*
3693  * message entry  -  mode 0 (normal)
3694  */
3695 void cmd_ent0(char *entargs)
3696 {
3697         int post = 0;
3698         char recp[SIZ];
3699         char cc[SIZ];
3700         char bcc[SIZ];
3701         char supplied_euid[128];
3702         int anon_flag = 0;
3703         int format_type = 0;
3704         char newusername[256];
3705         char newuseremail[256];
3706         struct CtdlMessage *msg;
3707         int anonymous = 0;
3708         char errmsg[SIZ];
3709         int err = 0;
3710         struct recptypes *valid = NULL;
3711         struct recptypes *valid_to = NULL;
3712         struct recptypes *valid_cc = NULL;
3713         struct recptypes *valid_bcc = NULL;
3714         char subject[SIZ];
3715         int subject_required = 0;
3716         int do_confirm = 0;
3717         long msgnum;
3718         int i, j;
3719         char buf[256];
3720         int newuseremail_ok = 0;
3721         char references[SIZ];
3722         char *ptr;
3723
3724         unbuffer_output();
3725
3726         post = extract_int(entargs, 0);
3727         extract_token(recp, entargs, 1, '|', sizeof recp);
3728         anon_flag = extract_int(entargs, 2);
3729         format_type = extract_int(entargs, 3);
3730         extract_token(subject, entargs, 4, '|', sizeof subject);
3731         extract_token(newusername, entargs, 5, '|', sizeof newusername);
3732         do_confirm = extract_int(entargs, 6);
3733         extract_token(cc, entargs, 7, '|', sizeof cc);
3734         extract_token(bcc, entargs, 8, '|', sizeof bcc);
3735         switch(CC->room.QRdefaultview) {
3736                 case VIEW_NOTES:
3737                 case VIEW_WIKI:
3738                         extract_token(supplied_euid, entargs, 9, '|', sizeof supplied_euid);
3739                         break;
3740                 default:
3741                         supplied_euid[0] = 0;
3742                         break;
3743         }
3744         extract_token(newuseremail, entargs, 10, '|', sizeof newuseremail);
3745         extract_token(references, entargs, 11, '|', sizeof references);
3746         for (ptr=references; *ptr != 0; ++ptr) {
3747                 if (*ptr == '!') *ptr = '|';
3748         }
3749
3750         /* first check to make sure the request is valid. */
3751
3752         err = CtdlDoIHavePermissionToPostInThisRoom(errmsg, sizeof errmsg, NULL, POST_LOGGED_IN);
3753         if (err)
3754         {
3755                 cprintf("%d %s\n", err, errmsg);
3756                 return;
3757         }
3758
3759         /* Check some other permission type things. */
3760
3761         if (IsEmptyStr(newusername)) {
3762                 strcpy(newusername, CC->user.fullname);
3763         }
3764         if (  (CC->user.axlevel < 6)
3765            && (strcasecmp(newusername, CC->user.fullname))
3766            && (strcasecmp(newusername, CC->cs_inet_fn))
3767         ) {     
3768                 cprintf("%d You don't have permission to author messages as '%s'.\n",
3769                         ERROR + HIGHER_ACCESS_REQUIRED,
3770                         newusername
3771                 );
3772                 return;
3773         }
3774
3775
3776         if (IsEmptyStr(newuseremail)) {
3777                 newuseremail_ok = 1;
3778         }
3779
3780         if (!IsEmptyStr(newuseremail)) {
3781                 if (!strcasecmp(newuseremail, CC->cs_inet_email)) {
3782                         newuseremail_ok = 1;
3783                 }
3784                 else if (!IsEmptyStr(CC->cs_inet_other_emails)) {
3785                         j = num_tokens(CC->cs_inet_other_emails, '|');
3786                         for (i=0; i<j; ++i) {
3787                                 extract_token(buf, CC->cs_inet_other_emails, i, '|', sizeof buf);
3788                                 if (!strcasecmp(newuseremail, buf)) {
3789                                         newuseremail_ok = 1;
3790                                 }
3791                         }
3792                 }
3793         }
3794
3795         if (!newuseremail_ok) {
3796                 cprintf("%d You don't have permission to author messages as '%s'.\n",
3797                         ERROR + HIGHER_ACCESS_REQUIRED,
3798                         newuseremail
3799                 );
3800                 return;
3801         }
3802
3803         CC->cs_flags |= CS_POSTING;
3804
3805         /* In mailbox rooms we have to behave a little differently --
3806          * make sure the user has specified at least one recipient.  Then
3807          * validate the recipient(s).  We do this for the Mail> room, as
3808          * well as any room which has the "Mailbox" view set.
3809          */
3810
3811         if (  ( (CC->room.QRflags & QR_MAILBOX) && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) )
3812            || ( (CC->room.QRflags & QR_MAILBOX) && (CC->curr_view == VIEW_MAILBOX) )
3813         ) {
3814                 if (CC->user.axlevel < 2) {
3815                         strcpy(recp, "sysop");
3816                         strcpy(cc, "");
3817                         strcpy(bcc, "");
3818                 }
3819
3820                 valid_to = validate_recipients(recp, NULL, 0);
3821                 if (valid_to->num_error > 0) {
3822                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_to->errormsg);
3823                         free_recipients(valid_to);
3824                         return;
3825                 }
3826
3827                 valid_cc = validate_recipients(cc, NULL, 0);
3828                 if (valid_cc->num_error > 0) {
3829                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_cc->errormsg);
3830                         free_recipients(valid_to);
3831                         free_recipients(valid_cc);
3832                         return;
3833                 }
3834
3835                 valid_bcc = validate_recipients(bcc, NULL, 0);
3836                 if (valid_bcc->num_error > 0) {
3837                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_bcc->errormsg);
3838                         free_recipients(valid_to);
3839                         free_recipients(valid_cc);
3840                         free_recipients(valid_bcc);
3841                         return;
3842                 }
3843
3844                 /* Recipient required, but none were specified */
3845                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
3846                         free_recipients(valid_to);
3847                         free_recipients(valid_cc);
3848                         free_recipients(valid_bcc);
3849                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
3850                         return;
3851                 }
3852
3853                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
3854                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
3855                                 cprintf("%d You do not have permission "
3856                                         "to send Internet mail.\n",
3857                                         ERROR + HIGHER_ACCESS_REQUIRED);
3858                                 free_recipients(valid_to);
3859                                 free_recipients(valid_cc);
3860                                 free_recipients(valid_bcc);
3861                                 return;
3862                         }
3863                 }
3864
3865                 if ( ( (valid_to->num_internet + valid_to->num_ignet + valid_cc->num_internet + valid_cc->num_ignet + valid_bcc->num_internet + valid_bcc->num_ignet) > 0)
3866                    && (CC->user.axlevel < 4) ) {
3867                         cprintf("%d Higher access required for network mail.\n",
3868                                 ERROR + HIGHER_ACCESS_REQUIRED);
3869                         free_recipients(valid_to);
3870                         free_recipients(valid_cc);
3871                         free_recipients(valid_bcc);
3872                         return;
3873                 }
3874         
3875                 if ((RESTRICT_INTERNET == 1)
3876                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
3877                     && ((CC->user.flags & US_INTERNET) == 0)
3878                     && (!CC->internal_pgm)) {
3879                         cprintf("%d You don't have access to Internet mail.\n",
3880                                 ERROR + HIGHER_ACCESS_REQUIRED);
3881                         free_recipients(valid_to);
3882                         free_recipients(valid_cc);
3883                         free_recipients(valid_bcc);
3884                         return;
3885                 }
3886
3887         }
3888
3889         /* Is this a room which has anonymous-only or anonymous-option? */
3890         anonymous = MES_NORMAL;
3891         if (CC->room.QRflags & QR_ANONONLY) {
3892                 anonymous = MES_ANONONLY;
3893         }
3894         if (CC->room.QRflags & QR_ANONOPT) {
3895                 if (anon_flag == 1) {   /* only if the user requested it */
3896                         anonymous = MES_ANONOPT;
3897                 }
3898         }
3899
3900         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
3901                 recp[0] = 0;
3902         }
3903
3904         /* Recommend to the client that the use of a message subject is
3905          * strongly recommended in this room, if either the SUBJECTREQ flag
3906          * is set, or if there is one or more Internet email recipients.
3907          */
3908         if (CC->room.QRflags2 & QR2_SUBJECTREQ) subject_required = 1;
3909         if ((valid_to)  && (valid_to->num_internet > 0))        subject_required = 1;
3910         if ((valid_cc)  && (valid_cc->num_internet > 0))        subject_required = 1;
3911         if ((valid_bcc) && (valid_bcc->num_internet > 0))       subject_required = 1;
3912
3913         /* If we're only checking the validity of the request, return
3914          * success without creating the message.
3915          */
3916         if (post == 0) {
3917                 cprintf("%d %s|%d\n", CIT_OK,
3918                         ((valid_to != NULL) ? valid_to->display_recp : ""), 
3919                         subject_required);
3920                 free_recipients(valid_to);
3921                 free_recipients(valid_cc);
3922                 free_recipients(valid_bcc);
3923                 return;
3924         }
3925
3926         /* We don't need these anymore because we'll do it differently below */
3927         free_recipients(valid_to);
3928         free_recipients(valid_cc);
3929         free_recipients(valid_bcc);
3930
3931         /* Read in the message from the client. */
3932         if (do_confirm) {
3933                 cprintf("%d send message\n", START_CHAT_MODE);
3934         } else {
3935                 cprintf("%d send message\n", SEND_LISTING);
3936         }
3937
3938         msg = CtdlMakeMessage(&CC->user, recp, cc,
3939                 CC->room.QRname, anonymous, format_type,
3940                 newusername, newuseremail, subject,
3941                 ((!IsEmptyStr(supplied_euid)) ? supplied_euid : NULL),
3942                 NULL, references);
3943
3944         /* Put together one big recipients struct containing to/cc/bcc all in
3945          * one.  This is for the envelope.
3946          */
3947         char *all_recps = malloc(SIZ * 3);
3948         strcpy(all_recps, recp);
3949         if (!IsEmptyStr(cc)) {
3950                 if (!IsEmptyStr(all_recps)) {
3951                         strcat(all_recps, ",");
3952                 }
3953                 strcat(all_recps, cc);
3954         }
3955         if (!IsEmptyStr(bcc)) {
3956                 if (!IsEmptyStr(all_recps)) {
3957                         strcat(all_recps, ",");
3958                 }
3959                 strcat(all_recps, bcc);
3960         }
3961         if (!IsEmptyStr(all_recps)) {
3962                 valid = validate_recipients(all_recps, NULL, 0);
3963         }
3964         else {
3965                 valid = NULL;
3966         }
3967         free(all_recps);
3968
3969         if (msg != NULL) {
3970                 msgnum = CtdlSubmitMsg(msg, valid, "", QP_EADDR);
3971
3972                 if (do_confirm) {
3973                         cprintf("%ld\n", msgnum);
3974                         if (msgnum >= 0L) {
3975                                 cprintf("Message accepted.\n");
3976                         }
3977                         else {
3978                                 cprintf("Internal error.\n");
3979                         }
3980                         if (msg->cm_fields['E'] != NULL) {
3981                                 cprintf("%s\n", msg->cm_fields['E']);
3982                         } else {
3983                                 cprintf("\n");
3984                         }
3985                         cprintf("000\n");
3986                 }
3987
3988                 CtdlFreeMessage(msg);
3989         }
3990         if (valid != NULL) {
3991                 free_recipients(valid);
3992         }
3993         return;
3994 }
3995
3996
3997
3998 /*
3999  * API function to delete messages which match a set of criteria
4000  * (returns the actual number of messages deleted)
4001  */
4002 int CtdlDeleteMessages(char *room_name,         /* which room */
4003                         long *dmsgnums,         /* array of msg numbers to be deleted */
4004                         int num_dmsgnums,       /* number of msgs to be deleted, or 0 for "any" */
4005                         char *content_type      /* or "" for any.  regular expressions expected. */
4006 )
4007 {
4008         struct ctdlroom qrbuf;
4009         struct cdbdata *cdbfr;
4010         long *msglist = NULL;
4011         long *dellist = NULL;
4012         int num_msgs = 0;
4013         int i, j;
4014         int num_deleted = 0;
4015         int delete_this;
4016         struct MetaData smi;
4017         regex_t re;
4018         regmatch_t pm;
4019         int need_to_free_re = 0;
4020
4021         if (content_type) if (!IsEmptyStr(content_type)) {
4022                 regcomp(&re, content_type, 0);
4023                 need_to_free_re = 1;
4024         }
4025         CtdlLogPrintf(CTDL_DEBUG, "CtdlDeleteMessages(%s, %d msgs, %s)\n",
4026                 room_name, num_dmsgnums, content_type);
4027
4028         /* get room record, obtaining a lock... */
4029         if (lgetroom(&qrbuf, room_name) != 0) {
4030                 CtdlLogPrintf(CTDL_ERR, "CtdlDeleteMessages(): Room <%s> not found\n",
4031                         room_name);
4032                 if (need_to_free_re) regfree(&re);
4033                 return (0);     /* room not found */
4034         }
4035         cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
4036
4037         if (cdbfr != NULL) {
4038                 dellist = malloc(cdbfr->len);
4039                 msglist = (long *) cdbfr->ptr;
4040                 cdbfr->ptr = NULL;      /* CtdlDeleteMessages() now owns this memory */
4041                 num_msgs = cdbfr->len / sizeof(long);
4042                 cdb_free(cdbfr);
4043         }
4044         if (num_msgs > 0) {
4045                 for (i = 0; i < num_msgs; ++i) {
4046                         delete_this = 0x00;
4047
4048                         /* Set/clear a bit for each criterion */
4049
4050                         /* 0 messages in the list or a null list means that we are
4051                          * interested in deleting any messages which meet the other criteria.
4052                          */
4053                         if ((num_dmsgnums == 0) || (dmsgnums == NULL)) {
4054                                 delete_this |= 0x01;
4055                         }
4056                         else {
4057                                 for (j=0; j<num_dmsgnums; ++j) {
4058                                         if (msglist[i] == dmsgnums[j]) {
4059                                                 delete_this |= 0x01;
4060                                         }
4061                                 }
4062                         }
4063
4064                         if (IsEmptyStr(content_type)) {
4065                                 delete_this |= 0x02;
4066                         } else {
4067                                 GetMetaData(&smi, msglist[i]);
4068                                 if (regexec(&re, smi.meta_content_type, 1, &pm, 0) == 0) {
4069                                         delete_this |= 0x02;
4070                                 }
4071                         }
4072
4073                         /* Delete message only if all bits are set */
4074                         if (delete_this == 0x03) {
4075                                 dellist[num_deleted++] = msglist[i];
4076                                 msglist[i] = 0L;
4077                         }
4078                 }
4079
4080                 num_msgs = sort_msglist(msglist, num_msgs);
4081                 cdb_store(CDB_MSGLISTS, &qrbuf.QRnumber, (int)sizeof(long),
4082                           msglist, (int)(num_msgs * sizeof(long)));
4083
4084                 qrbuf.QRhighest = msglist[num_msgs - 1];
4085         }
4086         lputroom(&qrbuf);
4087
4088         /* Go through the messages we pulled out of the index, and decrement
4089          * their reference counts by 1.  If this is the only room the message
4090          * was in, the reference count will reach zero and the message will
4091          * automatically be deleted from the database.  We do this in a
4092          * separate pass because there might be plug-in hooks getting called,
4093          * and we don't want that happening during an S_ROOMS critical
4094          * section.
4095          */
4096         if (num_deleted) for (i=0; i<num_deleted; ++i) {
4097                 PerformDeleteHooks(qrbuf.QRname, dellist[i]);
4098                 AdjRefCount(dellist[i], -1);
4099         }
4100
4101         /* Now free the memory we used, and go away. */
4102         if (msglist != NULL) free(msglist);
4103         if (dellist != NULL) free(dellist);
4104         CtdlLogPrintf(CTDL_DEBUG, "%d message(s) deleted.\n", num_deleted);
4105         if (need_to_free_re) regfree(&re);
4106         return (num_deleted);
4107 }
4108
4109
4110
4111 /*
4112  * Check whether the current user has permission to delete messages from
4113  * the current room (returns 1 for yes, 0 for no)
4114  */
4115 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
4116         int ra;
4117         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
4118         if (ra & UA_DELETEALLOWED) return(1);
4119         return(0);
4120 }
4121
4122
4123
4124
4125 /*
4126  * Delete message from current room
4127  */
4128 void cmd_dele(char *args)
4129 {
4130         int num_deleted;
4131         int i;
4132         char msgset[SIZ];
4133         char msgtok[32];
4134         long *msgs;
4135         int num_msgs = 0;
4136
4137         extract_token(msgset, args, 0, '|', sizeof msgset);
4138         num_msgs = num_tokens(msgset, ',');
4139         if (num_msgs < 1) {
4140                 cprintf("%d Nothing to do.\n", CIT_OK);
4141                 return;
4142         }
4143
4144         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
4145                 cprintf("%d Higher access required.\n",
4146                         ERROR + HIGHER_ACCESS_REQUIRED);
4147                 return;
4148         }
4149
4150         /*
4151          * Build our message set to be moved/copied
4152          */
4153         msgs = malloc(num_msgs * sizeof(long));
4154         for (i=0; i<num_msgs; ++i) {
4155                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
4156                 msgs[i] = atol(msgtok);
4157         }
4158
4159         num_deleted = CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
4160         free(msgs);
4161
4162         if (num_deleted) {
4163                 cprintf("%d %d message%s deleted.\n", CIT_OK,
4164                         num_deleted, ((num_deleted != 1) ? "s" : ""));
4165         } else {
4166                 cprintf("%d Message not found.\n", ERROR + MESSAGE_NOT_FOUND);
4167         }
4168 }
4169
4170
4171 /*
4172  * Back end API function for moves and deletes (multiple messages)
4173  */
4174 int CtdlCopyMsgsToRoom(long *msgnums, int num_msgs, char *dest) {
4175         int err;
4176
4177         err = CtdlSaveMsgPointersInRoom(dest, msgnums, num_msgs, 1, NULL);
4178         if (err != 0) return(err);
4179
4180         return(0);
4181 }
4182
4183
4184
4185
4186 /*
4187  * move or copy a message to another room
4188  */
4189 void cmd_move(char *args)
4190 {
4191         char msgset[SIZ];
4192         char msgtok[32];
4193         long *msgs;
4194         int num_msgs = 0;
4195
4196         char targ[ROOMNAMELEN];
4197         struct ctdlroom qtemp;
4198         int err;
4199         int is_copy = 0;
4200         int ra;
4201         int permit = 0;
4202         int i;
4203
4204         extract_token(msgset, args, 0, '|', sizeof msgset);
4205         num_msgs = num_tokens(msgset, ',');
4206         if (num_msgs < 1) {
4207                 cprintf("%d Nothing to do.\n", CIT_OK);
4208                 return;
4209         }
4210
4211         extract_token(targ, args, 1, '|', sizeof targ);
4212         convert_room_name_macros(targ, sizeof targ);
4213         targ[ROOMNAMELEN - 1] = 0;
4214         is_copy = extract_int(args, 2);
4215
4216         if (getroom(&qtemp, targ) != 0) {
4217                 cprintf("%d '%s' does not exist.\n",
4218                         ERROR + ROOM_NOT_FOUND, targ);
4219                 return;
4220         }
4221
4222         getuser(&CC->user, CC->curr_user);
4223         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
4224
4225         /* Check for permission to perform this operation.
4226          * Remember: "CC->room" is source, "qtemp" is target.
4227          */
4228         permit = 0;
4229
4230         /* Aides can move/copy */
4231         if (CC->user.axlevel >= 6) permit = 1;
4232
4233         /* Room aides can move/copy */
4234         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
4235
4236         /* Permit move/copy from personal rooms */
4237         if ((CC->room.QRflags & QR_MAILBOX)
4238            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
4239
4240         /* Permit only copy from public to personal room */
4241         if ( (is_copy)
4242            && (!(CC->room.QRflags & QR_MAILBOX))
4243            && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
4244
4245         /* Permit message removal from collaborative delete rooms */
4246         if (CC->room.QRflags2 & QR2_COLLABDEL) permit = 1;
4247
4248         /* Users allowed to post into the target room may move into it too. */
4249         if ((CC->room.QRflags & QR_MAILBOX) && 
4250             (qtemp.QRflags & UA_POSTALLOWED))  permit = 1;
4251
4252         /* User must have access to target room */
4253         if (!(ra & UA_KNOWN))  permit = 0;
4254
4255         if (!permit) {
4256                 cprintf("%d Higher access required.\n",
4257                         ERROR + HIGHER_ACCESS_REQUIRED);
4258                 return;
4259         }
4260
4261         /*
4262          * Build our message set to be moved/copied
4263          */
4264         msgs = malloc(num_msgs * sizeof(long));
4265         for (i=0; i<num_msgs; ++i) {
4266                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
4267                 msgs[i] = atol(msgtok);
4268         }
4269
4270         /*
4271          * Do the copy
4272          */
4273         err = CtdlCopyMsgsToRoom(msgs, num_msgs, targ);
4274         if (err != 0) {
4275                 cprintf("%d Cannot store message(s) in %s: error %d\n",
4276                         err, targ, err);
4277                 free(msgs);
4278                 return;
4279         }
4280
4281         /* Now delete the message from the source room,
4282          * if this is a 'move' rather than a 'copy' operation.
4283          */
4284         if (is_copy == 0) {
4285                 CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
4286         }
4287         free(msgs);
4288
4289         cprintf("%d Message(s) %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
4290 }
4291
4292
4293
4294 /*
4295  * GetMetaData()  -  Get the supplementary record for a message
4296  */
4297 void GetMetaData(struct MetaData *smibuf, long msgnum)
4298 {
4299
4300         struct cdbdata *cdbsmi;
4301         long TheIndex;
4302
4303         memset(smibuf, 0, sizeof(struct MetaData));
4304         smibuf->meta_msgnum = msgnum;
4305         smibuf->meta_refcount = 1;      /* Default reference count is 1 */
4306
4307         /* Use the negative of the message number for its supp record index */
4308         TheIndex = (0L - msgnum);
4309
4310         cdbsmi = cdb_fetch(CDB_MSGMAIN, &TheIndex, sizeof(long));
4311         if (cdbsmi == NULL) {
4312                 return;         /* record not found; go with defaults */
4313         }
4314         memcpy(smibuf, cdbsmi->ptr,
4315                ((cdbsmi->len > sizeof(struct MetaData)) ?
4316                 sizeof(struct MetaData) : cdbsmi->len));
4317         cdb_free(cdbsmi);
4318         return;
4319 }
4320
4321
4322 /*
4323  * PutMetaData()  -  (re)write supplementary record for a message
4324  */
4325 void PutMetaData(struct MetaData *smibuf)
4326 {
4327         long TheIndex;
4328
4329         /* Use the negative of the message number for the metadata db index */
4330         TheIndex = (0L - smibuf->meta_msgnum);
4331
4332         cdb_store(CDB_MSGMAIN,
4333                   &TheIndex, (int)sizeof(long),
4334                   smibuf, (int)sizeof(struct MetaData));
4335
4336 }
4337
4338 /*
4339  * AdjRefCount  -  submit an adjustment to the reference count for a message.
4340  *                 (These are just queued -- we actually process them later.)
4341  */
4342 void AdjRefCount(long msgnum, int incr)
4343 {
4344         struct arcq new_arcq;
4345
4346         begin_critical_section(S_SUPPMSGMAIN);
4347         if (arcfp == NULL) {
4348                 arcfp = fopen(file_arcq, "ab+");
4349         }
4350         end_critical_section(S_SUPPMSGMAIN);
4351
4352         /* msgnum < 0 means that we're trying to close the file */
4353         if (msgnum < 0) {
4354                 CtdlLogPrintf(CTDL_DEBUG, "Closing the AdjRefCount queue file\n");
4355                 begin_critical_section(S_SUPPMSGMAIN);
4356                 if (arcfp != NULL) {
4357                         fclose(arcfp);
4358                         arcfp = NULL;
4359                 }
4360                 end_critical_section(S_SUPPMSGMAIN);
4361                 return;
4362         }
4363
4364         /*
4365          * If we can't open the queue, perform the operation synchronously.
4366          */
4367         if (arcfp == NULL) {
4368                 TDAP_AdjRefCount(msgnum, incr);
4369                 return;
4370         }
4371
4372         new_arcq.arcq_msgnum = msgnum;
4373         new_arcq.arcq_delta = incr;
4374         fwrite(&new_arcq, sizeof(struct arcq), 1, arcfp);
4375         fflush(arcfp);
4376
4377         return;
4378 }
4379
4380
4381 /*
4382  * TDAP_ProcessAdjRefCountQueue()
4383  *
4384  * Process the queue of message count adjustments that was created by calls
4385  * to AdjRefCount() ... by reading the queue and calling TDAP_AdjRefCount()
4386  * for each one.  This should be an "off hours" operation.
4387  */
4388 int TDAP_ProcessAdjRefCountQueue(void)
4389 {
4390         char file_arcq_temp[PATH_MAX];
4391         int r;
4392         FILE *fp;
4393         struct arcq arcq_rec;
4394         int num_records_processed = 0;
4395
4396         snprintf(file_arcq_temp, sizeof file_arcq_temp, "%s.%04x", file_arcq, rand());
4397
4398         begin_critical_section(S_SUPPMSGMAIN);
4399         if (arcfp != NULL) {
4400                 fclose(arcfp);
4401                 arcfp = NULL;
4402         }
4403
4404         r = link(file_arcq, file_arcq_temp);
4405         if (r != 0) {
4406                 CtdlLogPrintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4407                 end_critical_section(S_SUPPMSGMAIN);
4408                 return(num_records_processed);
4409         }
4410
4411         unlink(file_arcq);
4412         end_critical_section(S_SUPPMSGMAIN);
4413
4414         fp = fopen(file_arcq_temp, "rb");
4415         if (fp == NULL) {
4416                 CtdlLogPrintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4417                 return(num_records_processed);
4418         }
4419
4420         while (fread(&arcq_rec, sizeof(struct arcq), 1, fp) == 1) {
4421                 TDAP_AdjRefCount(arcq_rec.arcq_msgnum, arcq_rec.arcq_delta);
4422                 ++num_records_processed;
4423         }
4424
4425         fclose(fp);
4426         r = unlink(file_arcq_temp);
4427         if (r != 0) {
4428                 CtdlLogPrintf(CTDL_CRIT, "%s: %s\n", file_arcq_temp, strerror(errno));
4429         }
4430
4431         return(num_records_processed);
4432 }
4433
4434
4435
4436 /*
4437  * TDAP_AdjRefCount  -  adjust the reference count for a message.
4438  *                      This one does it "for real" because it's called by
4439  *                      the autopurger function that processes the queue
4440  *                      created by AdjRefCount().   If a message's reference
4441  *                      count becomes zero, we also delete the message from
4442  *                      disk and de-index it.
4443  */
4444 void TDAP_AdjRefCount(long msgnum, int incr)
4445 {
4446
4447         struct MetaData smi;
4448         long delnum;
4449
4450         /* This is a *tight* critical section; please keep it that way, as
4451          * it may get called while nested in other critical sections.  
4452          * Complicating this any further will surely cause deadlock!
4453          */
4454         begin_critical_section(S_SUPPMSGMAIN);
4455         GetMetaData(&smi, msgnum);
4456         smi.meta_refcount += incr;
4457         PutMetaData(&smi);
4458         end_critical_section(S_SUPPMSGMAIN);
4459         CtdlLogPrintf(CTDL_DEBUG, "msg %ld ref count delta %+d, is now %d\n",
4460                 msgnum, incr, smi.meta_refcount);
4461
4462         /* If the reference count is now zero, delete the message
4463          * (and its supplementary record as well).
4464          */
4465         if (smi.meta_refcount == 0) {
4466                 CtdlLogPrintf(CTDL_DEBUG, "Deleting message <%ld>\n", msgnum);
4467                 
4468                 /* Call delete hooks with NULL room to show it has gone altogether */
4469                 PerformDeleteHooks(NULL, msgnum);
4470
4471                 /* Remove from message base */
4472                 delnum = msgnum;
4473                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
4474                 cdb_delete(CDB_BIGMSGS, &delnum, (int)sizeof(long));
4475
4476                 /* Remove metadata record */
4477                 delnum = (0L - msgnum);
4478                 cdb_delete(CDB_MSGMAIN, &delnum, (int)sizeof(long));
4479         }
4480
4481 }
4482
4483 /*
4484  * Write a generic object to this room
4485  *
4486  * Note: this could be much more efficient.  Right now we use two temporary
4487  * files, and still pull the message into memory as with all others.
4488  */
4489 void CtdlWriteObject(char *req_room,                    /* Room to stuff it in */
4490                         char *content_type,             /* MIME type of this object */
4491                         char *raw_message,              /* Data to be written */
4492                         off_t raw_length,               /* Size of raw_message */
4493                         struct ctdluser *is_mailbox,    /* Mailbox room? */
4494                         int is_binary,                  /* Is encoding necessary? */
4495                         int is_unique,                  /* Del others of this type? */
4496                         unsigned int flags              /* Internal save flags */
4497                         )
4498 {
4499
4500         struct ctdlroom qrbuf;
4501         char roomname[ROOMNAMELEN];
4502         struct CtdlMessage *msg;
4503         char *encoded_message = NULL;
4504
4505         if (is_mailbox != NULL) {
4506                 MailboxName(roomname, sizeof roomname, is_mailbox, req_room);
4507         }
4508         else {
4509                 safestrncpy(roomname, req_room, sizeof(roomname));
4510         }
4511
4512         CtdlLogPrintf(CTDL_DEBUG, "Raw length is %ld\n", (long)raw_length);
4513
4514         if (is_binary) {
4515                 encoded_message = malloc((size_t) (((raw_length * 134) / 100) + 4096 ) );
4516         }
4517         else {
4518                 encoded_message = malloc((size_t)(raw_length + 4096));
4519         }
4520
4521         sprintf(encoded_message, "Content-type: %s\n", content_type);
4522
4523         if (is_binary) {
4524                 sprintf(&encoded_message[strlen(encoded_message)],
4525                         "Content-transfer-encoding: base64\n\n"
4526                 );
4527         }
4528         else {
4529                 sprintf(&encoded_message[strlen(encoded_message)],
4530                         "Content-transfer-encoding: 7bit\n\n"
4531                 );
4532         }
4533
4534         if (is_binary) {
4535                 CtdlEncodeBase64(
4536                         &encoded_message[strlen(encoded_message)],
4537                         raw_message,
4538                         (int)raw_length,
4539                         0
4540                 );
4541         }
4542         else {
4543                 memcpy(
4544                         &encoded_message[strlen(encoded_message)],
4545                         raw_message,
4546                         (int)(raw_length+1)
4547                 );
4548         }
4549
4550         CtdlLogPrintf(CTDL_DEBUG, "Allocating\n");
4551         msg = malloc(sizeof(struct CtdlMessage));
4552         memset(msg, 0, sizeof(struct CtdlMessage));
4553         msg->cm_magic = CTDLMESSAGE_MAGIC;
4554         msg->cm_anon_type = MES_NORMAL;
4555         msg->cm_format_type = 4;
4556         msg->cm_fields['A'] = strdup(CC->user.fullname);
4557         msg->cm_fields['O'] = strdup(req_room);
4558         msg->cm_fields['N'] = strdup(config.c_nodename);
4559         msg->cm_fields['H'] = strdup(config.c_humannode);
4560         msg->cm_flags = flags;
4561         
4562         msg->cm_fields['M'] = encoded_message;
4563
4564         /* Create the requested room if we have to. */
4565         if (getroom(&qrbuf, roomname) != 0) {
4566                 create_room(roomname, 
4567                         ( (is_mailbox != NULL) ? 5 : 3 ),
4568                         "", 0, 1, 0, VIEW_BBS);
4569         }
4570         /* If the caller specified this object as unique, delete all
4571          * other objects of this type that are currently in the room.
4572          */
4573         if (is_unique) {
4574                 CtdlLogPrintf(CTDL_DEBUG, "Deleted %d other msgs of this type\n",
4575                         CtdlDeleteMessages(roomname, NULL, 0, content_type)
4576                 );
4577         }
4578         /* Now write the data */
4579         CtdlSubmitMsg(msg, NULL, roomname, 0);
4580         CtdlFreeMessage(msg);
4581 }
4582
4583
4584
4585
4586
4587
4588 void CtdlGetSysConfigBackend(long msgnum, void *userdata) {
4589         config_msgnum = msgnum;
4590 }
4591
4592
4593 char *CtdlGetSysConfig(char *sysconfname) {
4594         char hold_rm[ROOMNAMELEN];
4595         long msgnum;
4596         char *conf;
4597         struct CtdlMessage *msg;
4598         char buf[SIZ];
4599         
4600         strcpy(hold_rm, CC->room.QRname);
4601         if (getroom(&CC->room, SYSCONFIGROOM) != 0) {
4602                 getroom(&CC->room, hold_rm);
4603                 return NULL;
4604         }
4605
4606
4607         /* We want the last (and probably only) config in this room */
4608         begin_critical_section(S_CONFIG);
4609         config_msgnum = (-1L);
4610         CtdlForEachMessage(MSGS_LAST, 1, NULL, sysconfname, NULL,
4611                 CtdlGetSysConfigBackend, NULL);
4612         msgnum = config_msgnum;
4613         end_critical_section(S_CONFIG);
4614
4615         if (msgnum < 0L) {
4616                 conf = NULL;
4617         }
4618         else {
4619                 msg = CtdlFetchMessage(msgnum, 1);
4620                 if (msg != NULL) {
4621                         conf = strdup(msg->cm_fields['M']);
4622                         CtdlFreeMessage(msg);
4623                 }
4624                 else {
4625                         conf = NULL;
4626                 }
4627         }
4628
4629         getroom(&CC->room, hold_rm);
4630
4631         if (conf != NULL) do {
4632                 extract_token(buf, conf, 0, '\n', sizeof buf);
4633                 strcpy(conf, &conf[strlen(buf)+1]);
4634         } while ( (!IsEmptyStr(conf)) && (!IsEmptyStr(buf)) );
4635
4636         return(conf);
4637 }
4638
4639
4640 void CtdlPutSysConfig(char *sysconfname, char *sysconfdata) {
4641         CtdlWriteObject(SYSCONFIGROOM, sysconfname, sysconfdata, (strlen(sysconfdata)+1), NULL, 0, 1, 0);
4642 }
4643
4644
4645 /*
4646  * Determine whether a given Internet address belongs to the current user
4647  */
4648 int CtdlIsMe(char *addr, int addr_buf_len)
4649 {
4650         struct recptypes *recp;
4651         int i;
4652
4653         recp = validate_recipients(addr, NULL, 0);
4654         if (recp == NULL) return(0);
4655
4656         if (recp->num_local == 0) {
4657                 free_recipients(recp);
4658                 return(0);
4659         }
4660
4661         for (i=0; i<recp->num_local; ++i) {
4662                 extract_token(addr, recp->recp_local, i, '|', addr_buf_len);
4663                 if (!strcasecmp(addr, CC->user.fullname)) {
4664                         free_recipients(recp);
4665                         return(1);
4666                 }
4667         }
4668
4669         free_recipients(recp);
4670         return(0);
4671 }
4672
4673
4674 /*
4675  * Citadel protocol command to do the same
4676  */
4677 void cmd_isme(char *argbuf) {
4678         char addr[256];
4679
4680         if (CtdlAccessCheck(ac_logged_in)) return;
4681         extract_token(addr, argbuf, 0, '|', sizeof addr);
4682
4683         if (CtdlIsMe(addr, sizeof addr)) {
4684                 cprintf("%d %s\n", CIT_OK, addr);
4685         }
4686         else {
4687                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
4688         }
4689
4690 }