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