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