]> code.citadel.org Git - citadel.git/blob - citadel/messages.c
3dd851db2cb43ebf15056c7036638677d754f1df
[citadel.git] / citadel / messages.c
1 /*
2  * $Id$
3  *
4  * Citadel message support routines
5  * see copyright.txt for copyright information
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <sys/types.h>
12 #include <fcntl.h>
13 #include <stdio.h>
14 #include <ctype.h>
15 #include <string.h>
16 #include <signal.h>
17 #include <errno.h>
18 #include <limits.h>
19 #include <sys/wait.h>
20 #include <sys/stat.h>
21
22 #if TIME_WITH_SYS_TIME
23 # include <sys/time.h>
24 # include <time.h>
25 #else
26 # if HAVE_SYS_TIME_H
27 #  include <sys/time.h>
28 # else
29 #  include <time.h>
30 # endif
31 #endif
32
33 #ifdef HAVE_PTHREAD_H
34 #include <pthread.h>
35 #endif
36
37 #include <stdarg.h>
38 #include "citadel.h"
39 #include "citadel_ipc.h"
40 #include "citadel_decls.h"
41 #include "messages.h"
42 #include "commands.h"
43 #include "rooms.h"
44 #include "tools.h"
45 #include "html.h"
46 #ifndef HAVE_SNPRINTF
47 #include "snprintf.h"
48 #endif
49 #include "screen.h"
50
51 #define MAXWORDBUF SIZ
52 #define NO_REPLY_TO     "nobody ... xxxxxx"
53
54 char reply_to[SIZ];
55 char reply_subject[SIZ];
56
57 struct cittext {
58         struct cittext *next;
59         char text[MAXWORDBUF];
60 };
61
62 void stty_ctdl(int cmd);
63 int haschar(const char *st, int ch);
64 void ctdl_getline(char *string, int lim);
65 int file_checksum(char *filename);
66 void progress(CtdlIPC* ipc, unsigned long curr, unsigned long cmax);
67
68 unsigned long *msg_arr = NULL;
69 int msg_arr_size = 0;
70 int num_msgs;
71 char rc_alt_semantics;
72 extern char room_name[];
73 extern unsigned room_flags;
74 extern unsigned room_flags2;
75 extern long highest_msg_read;
76 extern char temp[];
77 extern char temp2[];
78 extern int screenwidth;
79 extern int screenheight;
80 extern long maxmsgnum;
81 extern char is_mail;
82 extern char is_aide;
83 extern char is_room_aide;
84 extern char fullname[];
85 extern char axlevel;
86 extern unsigned userflags;
87 extern char sigcaught;
88 extern char printcmd[];
89 extern int rc_allow_attachments;
90 extern int rc_display_message_numbers;
91 extern int rc_force_mail_prompts;
92 extern int editor_pid;
93 extern CtdlIPC *ipc_for_signal_handlers;        /* KLUDGE cover your eyes */
94 int num_urls = 0;
95 char urls[MAXURLS][SIZ];
96 char imagecmd[SIZ];
97 int has_images = 0;                             /* Current msg has images */
98 struct parts *last_message_parts = NULL;        /* Parts from last msg */
99
100
101
102 void ka_sigcatch(int signum)
103 {
104         alarm(S_KEEPALIVE);
105         signal(SIGALRM, ka_sigcatch);
106         CtdlIPCNoop(ipc_for_signal_handlers);
107 }
108
109
110 /*
111  * server keep-alive version of wait() (needed for external editor)
112  */
113 pid_t ka_wait(int *kstatus)
114 {
115         pid_t p;
116
117         alarm(S_KEEPALIVE);
118         signal(SIGALRM, ka_sigcatch);
119         do {
120                 errno = 0;
121                 p = wait(kstatus);
122         } while (errno == EINTR);
123         signal(SIGALRM, SIG_IGN);
124         alarm(0);
125         return (p);
126 }
127
128
129 /*
130  * version of system() that uses ka_wait()
131  */
132 int ka_system(char *shc)
133 {
134         pid_t childpid;
135         pid_t waitpid;
136         int retcode;
137
138         childpid = fork();
139         if (childpid < 0) {
140                 color(BRIGHT_RED);
141                 perror("Cannot fork");
142                 color(DIM_WHITE);
143                 return ((pid_t) childpid);
144         }
145
146         if (childpid == 0) {
147                 execlp("/bin/sh", "sh", "-c", shc, NULL);
148                 exit(127);
149         }
150
151         if (childpid > 0) {
152                 do {
153                         waitpid = ka_wait(&retcode);
154                 } while (waitpid != childpid);
155                 return (retcode);
156         }
157
158         return (-1);
159 }
160
161
162
163 /*
164  * add a newline to the buffer...
165  */
166 void add_newline(struct cittext *textlist)
167 {
168         struct cittext *ptr;
169
170         ptr = textlist;
171         while (ptr->next != NULL)
172                 ptr = ptr->next;
173
174         while (ptr->text[strlen(ptr->text) - 1] == 32)
175                 ptr->text[strlen(ptr->text) - 1] = 0;
176         /* strcat(ptr->text,"\n"); */
177
178         ptr->next = (struct cittext *)
179             malloc(sizeof(struct cittext));
180         ptr = ptr->next;
181         ptr->next = NULL;
182         strcpy(ptr->text, "");
183 }
184
185
186 /*
187  * add a word to the buffer...
188  */
189 void add_word(struct cittext *textlist, char *wordbuf)
190 {
191         struct cittext *ptr;
192
193         ptr = textlist;
194         while (ptr->next != NULL)
195                 ptr = ptr->next;
196
197         if (3 + strlen(ptr->text) + strlen(wordbuf) > screenwidth) {
198                 ptr->next = (struct cittext *)
199                     malloc(sizeof(struct cittext));
200                 ptr = ptr->next;
201                 ptr->next = NULL;
202                 strcpy(ptr->text, "");
203         }
204
205         strcat(ptr->text, wordbuf);
206         strcat(ptr->text, " ");
207 }
208
209
210 /*
211  * begin editing of an opened file pointed to by fp
212  */
213 void citedit(CtdlIPC *ipc, FILE * fp)
214 {
215         int a, prev, finished, b, last_space;
216         int appending = 0;
217         struct cittext *textlist = NULL;
218         struct cittext *ptr;
219         char wordbuf[MAXWORDBUF];
220
221         /* first, load the text into the buffer */
222         fseek(fp, 0L, 0);
223         textlist = (struct cittext *) malloc(sizeof(struct cittext));
224         textlist->next = NULL;
225         strcpy(textlist->text, "");
226
227         strcpy(wordbuf, "");
228         prev = (-1);
229         while (a = getc(fp), a >= 0) {
230                 appending = 1;
231                 if ((a == 32) || (a == 9) || (a == 13) || (a == 10)) {
232                         add_word(textlist, wordbuf);
233                         strcpy(wordbuf, "");
234                         if ((prev == 13) || (prev == 10)) {
235                                 add_word(textlist, "\n");
236                                 add_newline(textlist);
237                                 add_word(textlist, "");
238                         }
239                 } else {
240                         wordbuf[strlen(wordbuf) + 1] = 0;
241                         wordbuf[strlen(wordbuf)] = a;
242                 }
243                 if (strlen(wordbuf) + 3 > screenwidth) {
244                         add_word(textlist, wordbuf);
245                         strcpy(wordbuf, "");
246                 }
247                 prev = a;
248         }
249
250         /* get text */
251         finished = 0;
252         prev = (appending ? 13 : (-1));
253         strcpy(wordbuf, "");
254         async_ka_start();
255         do {
256                 a = inkey();
257                 if (a == 10)
258                         a = 13;
259                 if (a == 9)
260                         a = 32;
261                 if (a == 127)
262                         a = 8;
263
264                 if ((a != 32) && (prev == 13)) {
265                         add_word(textlist, "\n");
266                         scr_printf(" ");
267                 }
268
269                 if ((a == 32) && (prev == 13)) {
270                         add_word(textlist, "\n");
271                         add_newline(textlist);
272                 }
273
274                 if (a == 8) {
275                         if (strlen(wordbuf) > 0) {
276                                 wordbuf[strlen(wordbuf) - 1] = 0;
277                                 scr_putc(8);
278                                 scr_putc(32);
279                                 scr_putc(8);
280                         }
281                 } else if (a == 23) {
282                         do {
283                                 wordbuf[strlen(wordbuf) - 1] = 0;
284                                 scr_putc(8);
285                                 scr_putc(32);
286                                 scr_putc(8);
287                         } while (strlen(wordbuf) && wordbuf[strlen(wordbuf) - 1] != ' ');
288                 } else if (a == 13) {
289                         scr_printf("\n");
290                         if (strlen(wordbuf) == 0)
291                                 finished = 1;
292                         else {
293                                 for (b = 0; b < strlen(wordbuf); ++b)
294                                         if (wordbuf[b] == 32) {
295                                                 wordbuf[b] = 0;
296                                                 add_word(textlist,
297                                                          wordbuf);
298                                                 strcpy(wordbuf,
299                                                        &wordbuf[b + 1]);
300                                                 b = 0;
301                                         }
302                                 add_word(textlist, wordbuf);
303                                 strcpy(wordbuf, "");
304                         }
305                 } else {
306                         scr_putc(a);
307                         wordbuf[strlen(wordbuf) + 1] = 0;
308                         wordbuf[strlen(wordbuf)] = a;
309                 }
310                 if ((strlen(wordbuf) + 3) > screenwidth) {
311                         last_space = (-1);
312                         for (b = 0; b < strlen(wordbuf); ++b)
313                                 if (wordbuf[b] == 32)
314                                         last_space = b;
315                         if (last_space >= 0) {
316                                 for (b = 0; b < strlen(wordbuf); ++b)
317                                         if (wordbuf[b] == 32) {
318                                                 wordbuf[b] = 0;
319                                                 add_word(textlist,
320                                                          wordbuf);
321                                                 strcpy(wordbuf,
322                                                        &wordbuf[b + 1]);
323                                                 b = 0;
324                                         }
325                                 for (b = 0; b < strlen(wordbuf); ++b) {
326                                         scr_putc(8);
327                                         scr_putc(32);
328                                         scr_putc(8);
329                                 }
330                                 scr_printf("\n%s", wordbuf);
331                         } else {
332                                 add_word(textlist, wordbuf);
333                                 strcpy(wordbuf, "");
334                                 scr_printf("\n");
335                         }
336                 }
337                 prev = a;
338         } while (finished == 0);
339         async_ka_end();
340
341         /* write the buffer back to disk */
342         fseek(fp, 0L, 0);
343         for (ptr = textlist; ptr != NULL; ptr = ptr->next) {
344                 fprintf(fp, "%s", ptr->text);
345         }
346         putc(10, fp);
347         fflush(fp);
348         ftruncate(fileno(fp), ftell(fp));
349
350         /* and deallocate the memory we used */
351         while (textlist != NULL) {
352                 ptr = textlist->next;
353                 free(textlist);
354                 textlist = ptr;
355         }
356 }
357
358
359 /*
360  * Free the struct parts
361  */
362 void free_parts(struct parts *p)
363 {
364         struct parts *a_part = p;
365
366         while (a_part) {
367                 struct parts *q;
368
369                 q = a_part;
370                 a_part = a_part->next;
371                 free(q);
372         }
373 }
374
375
376 /*
377  * Read a message from the server
378  */
379 int read_message(CtdlIPC *ipc,
380         long num,   /* message number */
381         int pagin, /* 0 = normal read, 1 = read with pagination, 2 = header */
382         FILE *dest) /* Destination file, NULL for screen */
383 {
384         char buf[SIZ];
385         char now[SIZ];
386         int format_type = 0;
387         int fr = 0;
388         int nhdr = 0;
389         struct ctdlipcmessage *message = NULL;
390         int r;                          /* IPC response code */
391         char *converted_text = NULL;
392         char *lineptr;
393         char *nextline;
394         char *searchptr;
395         int i;
396         char ch;
397         int linelen;
398         int final_line_is_blank = 0;
399
400         has_images = 0;
401
402         sigcaught = 0;
403         stty_ctdl(1);
404
405         strcpy(reply_to, NO_REPLY_TO);
406         strcpy(reply_subject, "");
407
408         r = CtdlIPCGetSingleMessage(ipc, num, (pagin == READ_HEADER ? 1 : 0),
409                                 (can_do_msg4 ? 4 : 0),
410                                 &message, buf);
411         if (r / 100 != 1) {
412                 err_printf("*** msg #%ld: %d %s\n", num, r, buf);
413                 ++lines_printed;
414                 lines_printed =
415                     checkpagin(lines_printed, pagin, screenheight);
416                 stty_ctdl(0);
417                 return (0);
418         }
419
420         if (dest) {
421                 fprintf(dest, "\n ");
422         } else {
423                 scr_printf("\n");
424                 ++lines_printed;
425                 lines_printed = checkpagin(lines_printed, pagin, screenheight);
426                 if (pagin != 2)
427                         scr_printf(" ");
428         }
429         if (pagin == 1 && !dest) {
430                 color(BRIGHT_CYAN);
431         }
432
433         /* View headers only */
434         if (pagin == 2) {
435                 pprintf("nhdr=%s\nfrom=%s\ntype=%d\nmsgn=%s\n",
436                                 message->nhdr ? "yes" : "no",
437                                 message->author, message->type,
438                                 message->msgid);
439                 if (strlen(message->subject)) {
440                         pprintf("subj=%s\n", message->subject);
441                 }
442                 if (strlen(message->email)) {
443                         pprintf("rfca=%s\n", message->email);
444                 }
445                 pprintf("hnod=%s\nroom=%s\nnode=%s\ntime=%s",
446                                 message->hnod, message->room,
447                                 message->node, 
448                                 asctime(localtime(&message->time)));
449                 if (strlen(message->recipient)) {
450                         pprintf("rcpt=%s\n", message->recipient);
451                 }
452                 if (message->attachments) {
453                         struct parts *ptr;
454
455                         for (ptr = message->attachments; ptr; ptr = ptr->next) {
456                                 pprintf("part=%s|%s|%s|%s|%s|%ld\n",
457                                         ptr->name, ptr->filename, ptr->number,
458                                         ptr->disposition, ptr->mimetype,
459                                         ptr->length);
460                         }
461                 }
462                 pprintf("\n");
463                 stty_ctdl(0);
464                 return (0);
465         }
466
467         if (rc_display_message_numbers) {
468                 if (dest) {
469                         fprintf(dest, "[#%s] ", message->msgid);
470                 } else {
471                         color(DIM_WHITE);
472                         scr_printf("[");
473                         color(BRIGHT_WHITE);
474                         scr_printf("#%s", message->msgid);
475                         color(DIM_WHITE);
476                         scr_printf("] ");
477                 }
478         }
479         if (nhdr == 1 && !is_room_aide) {
480                 if (dest) {
481                         fprintf(dest, " ****");
482                 } else {
483                         scr_printf(" ****");
484                 }
485         } else {
486                 fmt_date(now, sizeof now, message->time, 0);
487                 if (dest) {
488                         fprintf(dest, "%s from %s ", now, message->author);
489                         if (strlen(message->email)) {
490                                 fprintf(dest, "<%s> ", message->email);
491                         }
492                 } else {
493                         color(BRIGHT_CYAN);
494                         scr_printf("%s ", now);
495                         color(DIM_WHITE);
496                         scr_printf("from ");
497                         color(BRIGHT_CYAN);
498                         scr_printf("%s ", message->author);
499                         if (strlen(message->email)) {
500                                 color(DIM_WHITE);
501                                 scr_printf("<");
502                                 color(BRIGHT_BLUE);
503                                 scr_printf("%s", message->email);
504                                         color(DIM_WHITE);
505                                 scr_printf("> ");
506                         }
507                 }
508                 if (strlen(message->node)) {
509                         if ((room_flags & QR_NETWORK)
510                             || ((strcasecmp(message->node, ipc->ServInfo.nodename)
511                              && (strcasecmp(message->node, ipc->ServInfo.fqdn))))) {
512                                 if (strlen(message->email) == 0) {
513                                         if (dest) {
514                                                 fprintf(dest, "@%s ", message->node);
515                                         } else {
516                                                 color(DIM_WHITE);
517                                                 scr_printf("@");
518                                                 color(BRIGHT_YELLOW);
519                                                 scr_printf("%s ", message->node);
520                                         }
521                                 }
522                         }
523                 }
524                 if (strcasecmp(message->hnod, ipc->ServInfo.humannode)
525                     && (strlen(message->hnod)) && (!strlen(message->email))) {
526                         if (dest) {
527                                 fprintf(dest, "(%s) ", message->hnod);
528                         } else {
529                                 color(DIM_WHITE);
530                                 scr_printf("(");
531                                 color(BRIGHT_WHITE);
532                                 scr_printf("%s", message->hnod);
533                                 color(DIM_WHITE);
534                                 scr_printf(") ");
535                         }
536                 }
537                 if (strcasecmp(message->room, room_name) && (strlen(message->email) == 0)) {
538                         if (dest) {
539                                 fprintf(dest, "in %s> ", message->room);
540                         } else {
541                                 color(DIM_WHITE);
542                                 scr_printf("in ");
543                                 color(BRIGHT_MAGENTA);
544                                 scr_printf("%s> ", message->room);
545                         }
546                 }
547                 if (strlen(message->recipient)) {
548                         if (dest) {
549                                 fprintf(dest, "to %s ", message->recipient);
550                         } else {
551                                 color(DIM_WHITE);
552                                 scr_printf("to ");
553                                 color(BRIGHT_CYAN);
554                                 scr_printf("%s ", message->recipient);
555                         }
556                 }
557         }
558         
559         if (dest) {
560                 fprintf(dest, "\n");
561         } else {
562                 scr_printf("\n");
563         }
564
565         /* Set the reply-to address to an Internet e-mail address if possible
566          */
567         if (message->email != NULL) if (strlen(message->email) > 0) {
568                 if (strlen(message->author) > 0) {
569                         snprintf(reply_to, sizeof reply_to, "%s <%s>", message->author, message->email);
570                 }
571                 else {
572                         safestrncpy(reply_to, message->email, sizeof reply_to);
573                 }
574         }
575
576         /* But if we can't do that, set it to a Citadel address.
577          */
578         if (!strcmp(reply_to, NO_REPLY_TO)) {
579                 snprintf(reply_to, sizeof(reply_to), "%s @ %s",
580                          message->author, message->node);
581         }
582
583         if (!dest) {
584                 ++lines_printed;
585                 lines_printed = checkpagin(lines_printed, pagin, screenheight);
586         }
587
588         if (message->subject != NULL) {
589                 safestrncpy(reply_subject, message->subject,
590                                                 sizeof reply_subject);
591                 if (strlen(message->subject) > 0) {
592                         if (dest) {
593                                 fprintf(dest, "Subject: %s\n",
594                                                         message->subject);
595                         } else {
596                                 color(DIM_WHITE);
597                                 scr_printf("Subject: ");
598                                 color(BRIGHT_CYAN);
599                                 scr_printf("%s\n", message->subject);
600                                 ++lines_printed;
601                                 lines_printed = checkpagin(lines_printed,
602                                                 pagin, screenheight);
603                         }
604                 }
605         }
606
607         if (pagin == 1 && !dest) {
608                 color(BRIGHT_WHITE);
609         }
610
611         /******* end of header output, start of message text output *******/
612
613         /*
614          * Convert HTML to plain text, formatting for the actual width
615          * of the client screen.
616          */
617         if (!strcasecmp(message->content_type, "text/html")) {
618                 converted_text = html_to_ascii(message->text, 0, screenwidth, 0);
619                 if (converted_text != NULL) {
620                         free(message->text);
621                         message->text = converted_text;
622                         format_type = 1;
623                 }
624         }
625
626         /* Text/plain is a different type */
627         if (!strcasecmp(message->content_type, "text/plain")) {
628                 format_type = 1;
629         }
630
631         /* Extract URL's */
632         num_urls = 0;   /* Start with a clean slate */
633         searchptr = message->text;
634         while ( (searchptr != NULL) && (num_urls < MAXURLS) ) {
635                 searchptr = strstr(searchptr, "http://");
636                 if (searchptr != NULL) {
637                         safestrncpy(urls[num_urls], searchptr, sizeof(urls[num_urls]));
638                         for (i = 0; i < strlen(urls[num_urls]); i++) {
639                                 ch = urls[num_urls][i];
640                                 if (ch == '>' || ch == '\"' || ch == ')' ||
641                                     ch == ' ' || ch == '\n') {
642                                         urls[num_urls][i] = 0;
643                                         break;
644                                 }
645                         }
646                         num_urls++;
647                         ++searchptr;
648                 }
649         }
650
651         /*
652          * Here we go
653          */
654         if (format_type == 0) {
655                 fr = fmout(screenwidth, NULL, message->text, dest,
656                            ((pagin == 1) ? 1 : 0), screenheight, (-1), 1);
657         } else {
658                 /* renderer for text/plain */
659
660                 lineptr = message->text;
661
662                 do {
663                         nextline = strchr(lineptr, '\n');
664                         if (nextline != NULL) {
665                                 *nextline = 0;
666                                 ++nextline;
667                                 if (*nextline == 0) nextline = NULL;
668                         }
669
670                         if (sigcaught == 0) {
671                                 linelen = strlen(lineptr);
672                                 if (lineptr[linelen-1] == '\r') {
673                                         lineptr[--linelen] = 0;
674                                 }
675                                 if (dest) {
676                                         fprintf(dest, "%s\n", lineptr);
677                                 } else {
678                                         scr_printf("%s\n", lineptr);
679                                         lines_printed = lines_printed + 1 +
680                                             (linelen / screenwidth);
681                                         lines_printed =
682                                             checkpagin(lines_printed, pagin,
683                                                        screenheight);
684                                 }
685                         }
686                         if (lineptr[0] == 0) final_line_is_blank = 1;
687                         else final_line_is_blank = 0;
688                         lineptr = nextline;
689                 } while (nextline);
690                 fr = sigcaught;
691         }
692         if (!final_line_is_blank) {
693                 if (dest) {
694                         fprintf(dest, "\n");
695                 }
696                 else {
697                         scr_printf("\n");
698                         ++lines_printed;
699                         lines_printed = checkpagin(lines_printed, pagin, screenheight);
700                 }
701         }
702
703         /* Enumerate any attachments */
704         if ( (pagin == 1) && (can_do_msg4) && (message->attachments) ) {
705                 struct parts *ptr;
706
707                 for (ptr = message->attachments; ptr; ptr = ptr->next) {
708                         if ( (!strcasecmp(ptr->disposition, "attachment"))
709                            || (!strcasecmp(ptr->disposition, "inline"))
710                            || (!strcasecmp(ptr->disposition, ""))
711                         ) {
712                                 if ( (strcasecmp(ptr->number, message->mime_chosen))
713                                    && (strlen(ptr->mimetype) > 0)
714                                 ) {
715                                         color(DIM_WHITE);
716                                         pprintf("Part ");
717                                         color(BRIGHT_MAGENTA);
718                                         pprintf("%s", ptr->number);
719                                         color(DIM_WHITE);
720                                         pprintf(": ");
721                                         color(BRIGHT_CYAN);
722                                         pprintf("%s", ptr->filename);
723                                         color(DIM_WHITE);
724                                         pprintf(" (%s, %ld bytes)\n", ptr->mimetype, ptr->length);
725                                         if (!strncmp(ptr->mimetype, "image/", 6)) {
726                                                 has_images++;
727                                         }
728                                 }
729                         }
730                 }
731         }
732
733         /* Save the attachments info for later */
734         last_message_parts = message->attachments;
735
736         /* Now we're done */
737         free(message->text);
738         free(message);
739
740         if (pagin == 1 && !dest)
741                 color(DIM_WHITE);
742         stty_ctdl(0);
743         return (fr);
744 }
745
746 /*
747  * replace string function for the built-in editor
748  */
749 void replace_string(char *filename, long int startpos)
750 {
751         char buf[512];
752         char srch_str[128];
753         char rplc_str[128];
754         FILE *fp;
755         int a;
756         long rpos, wpos;
757         char *ptr;
758         int substitutions = 0;
759         long msglen = 0L;
760
761         scr_printf("Enter text to be replaced:\n: ");
762         ctdl_getline(srch_str, (sizeof(srch_str)-1) );
763         if (strlen(srch_str) == 0)
764                 return;
765
766         scr_printf("Enter text to replace it with:\n: ");
767         ctdl_getline(rplc_str, (sizeof(rplc_str)-1) );
768
769         fp = fopen(filename, "r+");
770         if (fp == NULL)
771                 return;
772
773         wpos = startpos;
774         fseek(fp, startpos, 0);
775         strcpy(buf, "");
776         while (a = getc(fp), a > 0) {
777                 ++msglen;
778                 buf[strlen(buf) + 1] = 0;
779                 buf[strlen(buf)] = a;
780                 if (strlen(buf) >= strlen(srch_str)) {
781                         ptr = (&buf[strlen(buf) - strlen(srch_str)]);
782                         if (!strncmp(ptr, srch_str, strlen(srch_str))) {
783                                 strcpy(ptr, rplc_str);
784                                 ++substitutions;
785                         }
786                 }
787                 if (strlen(buf) > 384) {
788                         rpos = ftell(fp);
789                         fseek(fp, wpos, 0);
790                         fwrite((char *) buf, 128, 1, fp);
791                         strcpy(buf, &buf[128]);
792                         wpos = ftell(fp);
793                         fseek(fp, rpos, 0);
794                 }
795         }
796         fseek(fp, wpos, 0);
797         if (strlen(buf) > 0)
798                 fwrite((char *) buf, strlen(buf), 1, fp);
799         wpos = ftell(fp);
800         fclose(fp);
801         truncate(filename, wpos);
802         scr_printf("<R>eplace made %d substitution(s).\n\n", substitutions);
803 }
804
805 /*
806  * Function to begin composing a new message
807  */
808 int client_make_message(CtdlIPC *ipc,
809                 char *filename,         /* temporary file name */
810                 char *recipient,        /* NULL if it's not mail */
811                 int is_anonymous,
812                 int format_type,
813                 int mode,
814                 char *subject)          /* buffer to store subject line */
815 {
816         FILE *fp;
817         int a, b, e_ex_code;
818         long beg;
819         char datestr[SIZ];
820         char header[SIZ];
821         char *editor_path = NULL;
822         int cksum = 0;
823
824         if (mode >= 2)
825         {
826                 if((mode-2) < MAX_EDITORS && strlen(editor_paths[mode-2]) > 0) {
827                         editor_path = editor_paths[mode-2];
828                 } else if (strlen(editor_paths[0]) > 0) {
829                         editor_path = editor_paths[0];
830                 } else {
831                         err_printf("*** No editor available, "
832                                 "using built-in editor\n");
833                         mode = 0;
834                 }
835         }
836
837         fmt_date(datestr, sizeof datestr, time(NULL), 0);
838         header[0] = 0;
839
840         if (room_flags & QR_ANONONLY && !recipient) {
841                 snprintf(header, sizeof header, " ****");
842         }
843         else {
844                 snprintf(header, sizeof header,
845                         " %s from %s",
846                         datestr,
847                         (is_anonymous ? "[anonymous]" : fullname)
848                         );
849                 if (strlen(recipient) > 0) {
850                         size_t tmp = strlen(header);
851                         snprintf(&header[tmp], sizeof header - tmp,
852                                 " to %s", recipient);
853                 }
854         }
855         scr_printf("%s\n", header);
856         if (subject != NULL) if (strlen(subject) > 0) {
857                 scr_printf("Subject: %s\n", subject);
858         }
859
860         beg = 0L;
861
862         if (mode == 1) {
863                 scr_printf("(Press ctrl-d when finished)\n");
864         }
865
866         if (mode == 0) {
867                 fp = fopen(filename, "r");
868                 if (fp != NULL) {
869                         fmout(screenwidth, fp, NULL, NULL, 0,
870                                 screenheight, 0, 0);
871                         beg = ftell(fp);
872                         fclose(fp);
873                 } else {
874                         fp = fopen(filename, "w");
875                         if (fp == NULL) {
876                                 err_printf("*** Error opening temp file!\n"
877                                         "    %s: %s\n",
878                                         filename, strerror(errno));
879                         return(1);
880                         }
881                         fclose(fp);
882                 }
883         }
884
885 ME1:    switch (mode) {
886
887         case 0:
888                 fp = fopen(filename, "r+");
889                 if (fp == NULL) {
890                         err_printf("*** Error opening temp file!\n"
891                                 "    %s: %s\n",
892                                 filename, strerror(errno));
893                         return(1);
894                 }
895                 citedit(ipc, fp);
896                 fclose(fp);
897                 goto MECR;
898
899         case 1:
900                 fp = fopen(filename, "a");
901                 if (fp == NULL) {
902                         err_printf("*** Error opening temp file!\n"
903                                 "    %s: %s\n",
904                                 filename, strerror(errno));
905                         return(1);
906                 }
907                 do {
908                         a = inkey();
909                         if (a == 255)
910                                 a = 32;
911                         if (a == 13)
912                                 a = 10;
913                         if (a != 4) {
914                                 putc(a, fp);
915                                 scr_putc(a);
916                         }
917                         if (a == 10)
918                                 scr_putc(10);
919                 } while (a != 4);
920                 fclose(fp);
921                 break;
922
923         case 2:
924         default:        /* allow 2+ modes */
925                 e_ex_code = 1;  /* start with a failed exit code */
926                 screen_reset();
927                 stty_ctdl(SB_RESTORE);
928                 editor_pid = fork();
929                 cksum = file_checksum(filename);
930                 if (editor_pid == 0) {
931                         char tmp[SIZ];
932
933                         chmod(filename, 0600);
934                         snprintf(tmp, sizeof tmp, "WINDOW_TITLE=%s", header);
935                         putenv(tmp);
936                         execlp(editor_path, editor_path, filename, NULL);
937                         exit(1);
938                 }
939                 if (editor_pid > 0)
940                         do {
941                                 e_ex_code = 0;
942                                 b = ka_wait(&e_ex_code);
943                         } while ((b != editor_pid) && (b >= 0));
944                 editor_pid = (-1);
945                 stty_ctdl(0);
946                 screen_set();
947                 break;
948         }
949
950 MECR:   if (mode >= 2) {
951                 if (file_checksum(filename) == cksum) {
952                         err_printf("*** Aborted message.\n");
953                         e_ex_code = 1;
954                 }
955                 if (e_ex_code == 0) {
956                         goto MEFIN;
957                 }
958                 goto MEABT2;
959         }
960
961         b = keymenu("Entry command (? for options)",
962                     "<A>bort|<C>ontinue|<S>ave message|<P>rint formatted|"
963                     "add s<U>bject|"
964                     "<R>eplace string|<H>old message");
965
966         if (b == 'a') goto MEABT;
967         if (b == 'c') goto ME1;
968         if (b == 's') goto MEFIN;
969         if (b == 'p') {
970                 scr_printf(" %s from %s", datestr, fullname);
971                 if (strlen(recipient) > 0) {
972                         scr_printf(" to %s", recipient);
973                 }
974                 scr_printf("\n");
975                 if (subject != NULL) if (strlen(subject) > 0) {
976                         scr_printf("Subject: %s\n", subject);
977                 }
978                 fp = fopen(filename, "r");
979                 if (fp != NULL) {
980                         fmout(screenwidth, fp, NULL, NULL,
981                               ((userflags & US_PAGINATOR) ? 1 : 0),
982                               screenheight, 0, 0);
983                         beg = ftell(fp);
984                         fclose(fp);
985                 }
986                 goto MECR;
987         }
988         if (b == 'r') {
989                 replace_string(filename, 0L);
990                 goto MECR;
991         }
992         if (b == 'h') {
993                 return (2);
994         }
995         if (b == 'u') {
996                 if (subject != NULL) {
997                         newprompt("Subject: ", subject, 70);
998                 }
999                 goto MECR;
1000         }
1001
1002 MEFIN:  return (0);
1003
1004 MEABT:  scr_printf("Are you sure? ");
1005         if (yesno() == 0) {
1006                 goto ME1;
1007         }
1008 MEABT2: unlink(filename);
1009         return (2);
1010 }
1011
1012
1013 #if 0
1014 /*
1015  * Transmit message text to the server.
1016  * 
1017  * This loop also implements a "tick" counter that displays the progress, if
1018  * we're sending something that will take a long time to transmit.
1019  */
1020 void transmit_message(CtdlIPC *ipc, FILE *fp)
1021 {
1022         char buf[SIZ];
1023         int ch, a;
1024         long msglen;
1025         time_t lasttick;
1026
1027         fseek(fp, 0L, SEEK_END);
1028         msglen = ftell(fp);
1029         rewind(fp);
1030         lasttick = time(NULL);
1031         strcpy(buf, "");
1032         while (ch = getc(fp), (ch >= 0)) {
1033                 if (ch == 10) {
1034                         if (!strcmp(buf, "000"))
1035                                 strcpy(buf, ">000");
1036                         CtdlIPC_putline(ipc, buf);
1037                         strcpy(buf, "");
1038                 } else {
1039                         a = strlen(buf);
1040                         buf[a + 1] = 0;
1041                         buf[a] = ch;
1042                         if ((ch == 32) && (strlen(buf) > 200)) {
1043                                 buf[a] = 0;
1044                                 if (!strcmp(buf, "000"))
1045                                         strcpy(buf, ">000");
1046                                 CtdlIPC_putline(ipc, buf);
1047                                 strcpy(buf, "");
1048                         }
1049                         if (strlen(buf) > 250) {
1050                                 if (!strcmp(buf, "000"))
1051                                         strcpy(buf, ">000");
1052                                 CtdlIPC_putline(ipc, buf);
1053                                 strcpy(buf, "");
1054                         }
1055                 }
1056
1057                 if ((time(NULL) - lasttick) > 2L) {
1058                         scr_printf(" %3ld%% completed\r",
1059                                ((ftell(fp) * 100L) / msglen));
1060                         scr_flush();
1061                         lasttick = time(NULL);
1062                 }
1063
1064         }
1065         CtdlIPC_putline(ipc, buf);
1066         scr_printf("                \r");
1067         scr_flush();
1068 }
1069 #endif
1070
1071
1072 /*
1073  * Make sure there's room in msg_arr[] for at least one more.
1074  */
1075 void check_msg_arr_size(void) {
1076         if ((num_msgs + 1) > msg_arr_size) {
1077                 msg_arr_size += 512;
1078                 msg_arr = realloc(msg_arr,
1079                         ((sizeof(long)) * msg_arr_size) );
1080         }
1081 }
1082
1083
1084 /*
1085  * break_big_lines()  -  break up lines that are >1024 characters
1086  *                       otherwise the server will truncate
1087  */
1088 void break_big_lines(char *msg) {
1089         char *ptr;
1090         char *break_here;
1091
1092         if (msg == NULL) {
1093                 return;
1094         }
1095
1096         ptr = msg;
1097         while (strlen(ptr) > 1000) {
1098                 break_here = strchr(&ptr[900], ' ');
1099                 if ((break_here == NULL) || (break_here > &ptr[999])) {
1100                         break_here = &ptr[999];
1101                 }
1102                 *break_here = '\n';
1103                 ptr = break_here++;
1104         }
1105 }
1106
1107
1108 /*
1109  * entmsg()  -  edit and create a message
1110  *              returns 0 if message was saved
1111  */
1112 int entmsg(CtdlIPC *ipc,
1113                 int is_reply,   /* nonzero if this was a <R>eply command */
1114                 int c,          /* mode */
1115                 int masquerade  /* prompt for a non-default display name? */
1116 ) {
1117         char buf[SIZ];
1118         int a, b;
1119         int need_recp = 0;
1120         int mode;
1121         long highmsg = 0L;
1122         FILE *fp;
1123         char subject[SIZ];
1124         struct ctdlipcmessage message;
1125         unsigned long *msgarr = NULL;
1126         int r;                  /* IPC response code */
1127         int subject_required = 0;
1128
1129         if (c > 0)
1130                 mode = 1;
1131         else
1132                 mode = 0;
1133
1134         strcpy(subject, "");
1135
1136         /*
1137          * First, check to see if we have permission to enter a message in
1138          * this room.  The server will return an error code if we can't.
1139          */
1140         strcpy(message.recipient, "");
1141         strcpy(message.author, "");
1142         strcpy(message.subject, "");
1143         message.text = "";              /* point to "", changes later */
1144         message.anonymous = 0;
1145         message.type = mode;
1146
1147         if (masquerade) {
1148                 newprompt("Display name for this message: ", message.author, 40);
1149         }
1150
1151         r = CtdlIPCPostMessage(ipc, 0, &subject_required, &message, buf);
1152
1153         if (r / 100 != 2 && r / 10 != 57) {
1154                 scr_printf("%s\n", buf);
1155                 return (1);
1156         }
1157
1158         /* Error code 570 is special.  It means that we CAN enter a message
1159          * in this room, but a recipient needs to be specified.
1160          */
1161         need_recp = 0;
1162         if (r / 10 == 57) {
1163                 need_recp = 1;
1164         }
1165
1166         /* If the user is a dumbass, tell them how to type. */
1167         if ((userflags & US_EXPERT) == 0) {
1168                 formout(ipc, "entermsg");
1169         }
1170
1171         /* Handle the selection of a recipient, if necessary. */
1172         strcpy(buf, "");
1173         if (need_recp == 1) {
1174                 if (axlevel >= 2) {
1175                         if (is_reply) {
1176                                 strcpy(buf, reply_to);
1177                         } else {
1178                                 scr_printf("Enter recipient: ");
1179                                 ctdl_getline(buf, (SIZ-100) );
1180                                 if (strlen(buf) == 0)
1181                                         return (1);
1182                         }
1183                 } else
1184                         strcpy(buf, "sysop");
1185         }
1186         strcpy(message.recipient, buf);
1187
1188         if (is_reply) {
1189                 if (strlen(reply_subject) > 0) {
1190                         if (!strncasecmp(reply_subject,
1191                            "Re: ", 3)) {
1192                                 strcpy(message.subject, reply_subject);
1193                         }
1194                         else {
1195                                 snprintf(message.subject,
1196                                         sizeof message.subject,
1197                                         "Re: %s",
1198                                         reply_subject);
1199                         }
1200                 }
1201         }
1202
1203         if (room_flags & QR_ANONOPT) {
1204                 scr_printf("Anonymous (Y/N)? ");
1205                 if (yesno() == 1)
1206                         message.anonymous = 1;
1207         }
1208
1209         /* If it's mail, we've got to check the validity of the recipient... */
1210         if (strlen(message.recipient) > 0) {
1211                 r = CtdlIPCPostMessage(ipc, 0, &subject_required,  &message, buf);
1212                 if (r / 100 != 2) {
1213                         scr_printf("%s\n", buf);
1214                         return (1);
1215                 }
1216         }
1217
1218         /* Learn the number of the newest message in in the room, so we can
1219          * tell upon saving whether someone else has posted too.
1220          */
1221         num_msgs = 0;
1222         r = CtdlIPCGetMessages(ipc, LastMessages, 1, NULL, &msgarr, buf);
1223         if (r / 100 != 1) {
1224                 scr_printf("%s\n", buf);
1225         } else {
1226                 for (num_msgs = 0; msgarr[num_msgs]; num_msgs++)
1227                         ;
1228         }
1229
1230         /* Now compose the message... */
1231         if (client_make_message(ipc, temp, message.recipient,
1232            message.anonymous, 0, c, message.subject) != 0) {
1233             if (msgarr) free(msgarr);   
1234                 return (2);
1235         }
1236
1237         /* Reopen the temp file that was created, so we can send it */
1238         fp = fopen(temp, "r");
1239
1240         if (!fp || !(message.text = load_message_from_file(fp))) {
1241                 err_printf("*** Internal error while trying to save message!\n"
1242                         "%s: %s\n",
1243                         temp, strerror(errno));
1244                 unlink(temp);
1245                 return(errno);
1246         }
1247
1248         if (fp) fclose(fp);
1249
1250         /* Break lines that are >1024 characters, otherwise the server
1251          * will truncate them.
1252          */
1253         break_big_lines(message.text);
1254
1255         /* Transmit message to the server */
1256         r = CtdlIPCPostMessage(ipc, 1, NULL, &message, buf);
1257         if (r / 100 != 4) {
1258                 scr_printf("%s\n", buf);
1259                 return (1);
1260         }
1261
1262         /* Yes, unlink it now, so it doesn't stick around if we crash */
1263         unlink(temp);
1264
1265         if (num_msgs >= 1) highmsg = msgarr[num_msgs - 1];
1266
1267         if (msgarr) free(msgarr);
1268         msgarr = NULL;
1269         r = CtdlIPCGetMessages(ipc, NewMessages, 0, NULL, &msgarr, buf);
1270         if (r / 100 != 1) {
1271                 scr_printf("%s\n", buf);
1272         } else {
1273                 for (num_msgs = 0; msgarr[num_msgs]; num_msgs++)
1274                         ;
1275         }
1276
1277         /* get new highest message number in room to set lrp for goto... */
1278         maxmsgnum = msgarr[num_msgs - 1];
1279
1280         /* now see if anyone else has posted in here */
1281         b = (-1);
1282         for (a = 0; a < num_msgs; ++a) {
1283                 if (msgarr[a] > highmsg) {
1284                         ++b;
1285                 }
1286         }
1287         if (msgarr) free(msgarr);
1288         msgarr = NULL;
1289
1290         /* In the Mail> room, this algorithm always counts one message
1291          * higher than in public rooms, so we decrement it by one.
1292          */
1293         if (need_recp) {
1294                 --b;
1295         }
1296
1297         if (b == 1) {
1298                 scr_printf("*** 1 additional message has been entered "
1299                         "in this room by another user.\n");
1300         }
1301         else if (b > 1) {
1302                 scr_printf("*** %d additional messages have been entered "
1303                         "in this room by other users.\n", b);
1304         }
1305     free(message.text);
1306
1307         return(0);
1308 }
1309
1310 /*
1311  * Do editing on a quoted file
1312  */
1313 void process_quote(void)
1314 {
1315         FILE *qfile, *tfile;
1316         char buf[128];
1317         int line, qstart, qend;
1318
1319         /* Unlink the second temp file as soon as it's opened, so it'll get
1320          * deleted even if the program dies
1321          */
1322         qfile = fopen(temp2, "r");
1323         unlink(temp2);
1324
1325         /* Display the quotable text with line numbers added */
1326         line = 0;
1327         fgets(buf, 128, qfile);
1328         while (fgets(buf, 128, qfile) != NULL) {
1329                 scr_printf("%2d %s", ++line, buf);
1330         }
1331         scr_printf("Begin quoting at [ 1] : ");
1332         ctdl_getline(buf, 3);
1333         qstart = (buf[0] == 0) ? (1) : atoi(buf);
1334         scr_printf("  End quoting at [%d] : ", line);
1335         ctdl_getline(buf, 3);
1336         qend = (buf[0] == 0) ? (line) : atoi(buf);
1337         rewind(qfile);
1338         line = 0;
1339         fgets(buf, 128, qfile);
1340         tfile = fopen(temp, "w");
1341         while (fgets(buf, 128, qfile) != NULL) {
1342                 if ((++line >= qstart) && (line <= qend))
1343                         fprintf(tfile, " >%s", buf);
1344         }
1345         fprintf(tfile, " \n");
1346         fclose(qfile);
1347         fclose(tfile);
1348         chmod(temp, 0666);
1349 }
1350
1351
1352
1353 /*
1354  * List the URL's which were embedded in the previous message
1355  */
1356 void list_urls(CtdlIPC *ipc)
1357 {
1358         int i;
1359         char cmd[SIZ];
1360
1361         if (num_urls == 0) {
1362                 scr_printf("There were no URL's in the previous message.\n\n");
1363                 return;
1364         }
1365
1366         for (i = 0; i < num_urls; ++i) {
1367                 scr_printf("%3d %s\n", i + 1, urls[i]);
1368         }
1369
1370         if ((i = num_urls) != 1)
1371                 i = intprompt("Display which one", 1, 1, num_urls);
1372
1373         snprintf(cmd, sizeof cmd, rc_url_cmd, urls[i - 1]);
1374         system(cmd);
1375         scr_printf("\n");
1376 }
1377
1378
1379 /*
1380  * Run image viewer in background
1381  */
1382 int do_image_view(const char *filename)
1383 {
1384         char cmd[SIZ];
1385         pid_t childpid;
1386
1387         snprintf(cmd, sizeof cmd, imagecmd, filename);
1388         childpid = fork();
1389         if (childpid < 0) {
1390                 unlink(filename);
1391                 return childpid;
1392         }
1393
1394         if (childpid == 0) {
1395                 int retcode;
1396                 pid_t grandchildpid;
1397
1398                 grandchildpid = fork();
1399                 if (grandchildpid < 0) {
1400                         return grandchildpid;
1401                 }
1402
1403                 if (grandchildpid == 0) {
1404                         int nullfd;
1405                         int outfd = -1;
1406                         int errfd = -1;
1407
1408                         nullfd = open("/dev/null", O_WRONLY);
1409                         if (nullfd > -1) {
1410                                 dup2(1, outfd);
1411                                 dup2(2, errfd);
1412                                 dup2(nullfd, 1);
1413                                 dup2(nullfd, 2);
1414                         }
1415                         retcode = system(cmd);
1416                         if (nullfd > -1) {
1417                                 dup2(outfd, 1);
1418                                 dup2(errfd, 2);
1419                                 close(nullfd);
1420                         }
1421                         unlink(filename);
1422                         exit(retcode);
1423                 }
1424
1425                 if (grandchildpid > 0) {
1426                         exit(0);
1427                 }
1428         }
1429
1430         if (childpid > 0) {
1431                 int retcode;
1432
1433                 waitpid(childpid, &retcode, 0);
1434                 return retcode;
1435         }
1436         
1437         return -1;
1438 }
1439
1440
1441 /*
1442  * View an image attached to a message
1443  */
1444 void image_view(CtdlIPC *ipc, unsigned long msg)
1445 {
1446         struct parts *ptr = last_message_parts;
1447         char part[SIZ];
1448         int found = 0;
1449
1450         /* Run through available parts */
1451         for (ptr = last_message_parts; ptr; ptr = ptr->next) {
1452                 if ((!strcasecmp(ptr->disposition, "attachment")
1453                    || !strcasecmp(ptr->disposition, "inline"))
1454                    && !strncmp(ptr->mimetype, "image/", 6)) {
1455                         found++;
1456                         if (found == 1) {
1457                                 strcpy(part, ptr->number);
1458                         }
1459                 }
1460         }
1461
1462         while (found > 0) {
1463                 if (found > 1)
1464                         strprompt("View which part (0 when done)", part, SIZ-1);
1465                 found = -found;
1466                 for (ptr = last_message_parts; ptr; ptr = ptr->next) {
1467                         if ((!strcasecmp(ptr->disposition, "attachment")
1468                            || !strcasecmp(ptr->disposition, "inline"))
1469                            && !strncmp(ptr->mimetype, "image/", 6)
1470                            && !strcasecmp(ptr->number, part)) {
1471                                 char tmp[PATH_MAX];
1472                                 char buf[SIZ];
1473                                 void *file = NULL; /* The downloaded file */
1474                                 int r;
1475         
1476                                 /* view image */
1477                                 found = -found;
1478                                 r = CtdlIPCAttachmentDownload(ipc, msg, ptr->number, &file, progress, buf);
1479                                 if (r / 100 != 2) {
1480                                         scr_printf("%s\n", buf);
1481                                 } else {
1482                                         size_t len;
1483         
1484                                         len = (size_t)extract_long(buf, 0);
1485                                         progress(ipc, len, len);
1486                                         scr_flush();
1487                                         CtdlMakeTempFileName(tmp, sizeof tmp);
1488                                         strcat(tmp, ptr->filename);
1489                                         save_buffer(file, len, tmp);
1490                                         free(file);
1491                                         do_image_view(tmp);
1492                                 }
1493                                 break;
1494                         }
1495                 }
1496                 if (found == 1)
1497                         break;
1498         }
1499 }
1500  
1501
1502 /*
1503  * Read the messages in the current room
1504  */
1505 void readmsgs(CtdlIPC *ipc,
1506         enum MessageList c,             /* see listing in citadel_ipc.h */
1507         enum MessageDirection rdir,     /* 1=Forward (-1)=Reverse */
1508         int q           /* Number of msgs to read (if c==3) */
1509 ) {
1510         int a, b, e, f, g, start;
1511         int savedpos;
1512         int hold_sw = 0;
1513         char arcflag = 0;
1514         char quotflag = 0;
1515         int hold_color = 0;
1516         char prtfile[PATH_MAX];
1517         char pagin;
1518         char cmd[SIZ];
1519         char targ[ROOMNAMELEN];
1520         char filename[PATH_MAX];
1521         char save_to[PATH_MAX];
1522         void *attachment = NULL;        /* Downloaded attachment */
1523         FILE *dest = NULL;      /* Alternate destination other than screen */
1524         int r;                          /* IPC response code */
1525
1526         if (c < 0)
1527                 b = (num_msgs - 1);
1528         else
1529                 b = 0;
1530
1531         CtdlMakeTempFileName(prtfile, sizeof prtfile);
1532
1533         if (msg_arr) {
1534                 free(msg_arr);
1535                 msg_arr = NULL;
1536         }
1537         r = CtdlIPCGetMessages(ipc, c, q, NULL, &msg_arr, cmd);
1538         if (r / 100 != 1) {
1539                 scr_printf("%s\n", cmd);
1540         } else {
1541                 for (num_msgs = 0; msg_arr[num_msgs]; num_msgs++)
1542                         ;
1543         }
1544
1545         if (num_msgs == 0) {    /* TODO look at this later */
1546                 if (c == LastMessages) return;
1547                 scr_printf("*** There are no ");
1548                 if (c == NewMessages) scr_printf("new ");
1549                 if (c == OldMessages) scr_printf("old ");
1550                 scr_printf("messages in this room.\n");
1551                 return;
1552         }
1553
1554         lines_printed = 0;
1555
1556         /* this loop cycles through each message... */
1557         start = ((rdir == 1) ? 0 : (num_msgs - 1));
1558         for (a = start; ((a < num_msgs) && (a >= 0)); a = a + rdir) {
1559                 while (msg_arr[a] == 0L) {
1560                         a = a + rdir;
1561                         if ((a == num_msgs) || (a == (-1)))
1562                                 return;
1563                 }
1564
1565 RAGAIN:         pagin = ((arcflag == 0)
1566                          && (quotflag == 0)
1567                          && (userflags & US_PAGINATOR)) ? 1 : 0;
1568
1569                 /* If we're doing a quote, set the screenwidth to 72 */
1570                 if (quotflag) {
1571                         hold_sw = screenwidth;
1572                         screenwidth = 72;
1573                 }
1574
1575                 /* If printing or archiving, set the screenwidth to 80 */
1576                 if (arcflag) {
1577                         hold_sw = screenwidth;
1578                         screenwidth = 80;
1579                 }
1580
1581                 /* clear parts list */
1582                 free_parts(last_message_parts);
1583                 last_message_parts = NULL;
1584
1585                 /* now read the message... */
1586                 e = read_message(ipc, msg_arr[a], pagin, dest);
1587
1588                 /* ...and set the screenwidth back if we have to */
1589                 if ((quotflag) || (arcflag)) {
1590                         screenwidth = hold_sw;
1591                 }
1592 RMSGREAD:       scr_flush();
1593                 highest_msg_read = msg_arr[a];
1594                 if (quotflag) {
1595                         fclose(dest);
1596                         dest = NULL;
1597                         quotflag = 0;
1598                         enable_color = hold_color;
1599                         process_quote();
1600                 }
1601                 if (arcflag) {
1602                         fclose(dest);
1603                         dest = NULL;
1604                         arcflag = 0;
1605                         enable_color = hold_color;
1606                         f = fork();
1607                         if (f == 0) {
1608                                 freopen(prtfile, "r", stdin);
1609                                 screen_reset();
1610                                 stty_ctdl(SB_RESTORE);
1611                                 ka_system(printcmd);
1612                                 stty_ctdl(SB_NO_INTR);
1613                                 screen_set();
1614                                 unlink(prtfile);
1615                                 exit(0);
1616                         }
1617                         if (f > 0)
1618                                 do {
1619                                         g = wait(NULL);
1620                                 } while ((g != f) && (g >= 0));
1621                         scr_printf("Message printed.\n");
1622                 }
1623                 if (rc_alt_semantics && c == 1) {
1624                         char buf[SIZ];
1625
1626                         r = CtdlIPCSetMessageSeen(ipc, msg_arr[a], 1, buf);
1627                 }
1628                 if (e == 3)
1629                         return;
1630                 if (((userflags & US_NOPROMPT) || (e == 2))
1631                     && (((room_flags & QR_MAILBOX) == 0)
1632                         || (rc_force_mail_prompts == 0))) {
1633                         e = 'n';
1634                 } else {
1635                         color(DIM_WHITE);
1636                         scr_printf("(");
1637                         color(BRIGHT_WHITE);
1638                         scr_printf("%d", num_msgs - a - 1);
1639                         color(DIM_WHITE);
1640                         scr_printf(") ");
1641
1642                         keyopt("<B>ack <A>gain <Q>uote <R>eply <N>ext <S>top ");
1643                         if (rc_url_cmd[0] && num_urls)
1644                                 keyopt("<U>RLview ");
1645                         if (has_images > 0 && strlen(imagecmd) > 0)
1646                                 keyopt("<I>mages ");
1647                         keyopt("<?>help -> ");
1648
1649                         do {
1650                                 lines_printed = 2;
1651                                 e = (inkey() & 127);
1652                                 e = tolower(e);
1653 /* return key same as <N> */ if (e == 10)
1654                                         e = 'n';
1655 /* space key same as <N> */ if (e == 32)
1656                                         e = 'n';
1657 /* del/move for aides only */
1658                                     if (  (!is_room_aide)
1659                                        && ((room_flags & QR_MAILBOX) == 0)
1660                                        && ((room_flags2 & QR2_COLLABDEL) == 0)
1661                                        ) {
1662                                         if ((e == 'd') || (e == 'm'))
1663                                                 e = 0;
1664                                 }
1665 /* print only if available */
1666                                 if ((e == 'p') && (strlen(printcmd) == 0))
1667                                         e = 0;
1668 /* can't file if not allowed */
1669                                     if ((e == 'f')
1670                                         && (rc_allow_attachments == 0))
1671                                         e = 0;
1672 /* link only if browser avail*/
1673                                     if ((e == 'u')
1674                                         && (strlen(rc_url_cmd) == 0))
1675                                         e = 0;
1676                                 if ((e == 'i')
1677                                         && (!strlen(imagecmd) || !has_images))
1678                                         e = 0;
1679                         } while ((e != 'a') && (e != 'n') && (e != 's')
1680                                  && (e != 'd') && (e != 'm') && (e != 'p')
1681                                  && (e != 'q') && (e != 'b') && (e != 'h')
1682                                  && (e != 'r') && (e != 'f') && (e != '?')
1683                                  && (e != 'u') && (e != 'c') && (e != 'y')
1684                                  && (e != 'i'));
1685                         switch (e) {
1686                         case 's':
1687                                 scr_printf("Stop");
1688                                 break;
1689                         case 'a':
1690                                 scr_printf("Again");
1691                                 break;
1692                         case 'd':
1693                                 scr_printf("Delete");
1694                                 break;
1695                         case 'm':
1696                                 scr_printf("Move");
1697                                 break;
1698                         case 'c':
1699                                 scr_printf("Copy");
1700                                 break;
1701                         case 'n':
1702                                 scr_printf("Next");
1703                                 break;
1704                         case 'p':
1705                                 scr_printf("Print");
1706                                 break;
1707                         case 'q':
1708                                 scr_printf("Quote");
1709                                 break;
1710                         case 'b':
1711                                 scr_printf("Back");
1712                                 break;
1713                         case 'h':
1714                                 scr_printf("Header");
1715                                 break;
1716                         case 'r':
1717                                 scr_printf("Reply");
1718                                 break;
1719                         case 'f':
1720                                 scr_printf("File");
1721                                 break;
1722                         case 'u':
1723                                 scr_printf("URL's");
1724                                 break;
1725                         case 'y':
1726                                 scr_printf("mY next");
1727                                 break;
1728                         case 'i':
1729                                 break;
1730                         case '?':
1731                                 scr_printf("? <help>");
1732                                 break;
1733                         }
1734                         if (userflags & US_DISAPPEAR || e == 'i')
1735                                 scr_printf("\r%79s\r", "");
1736                         else
1737                                 scr_printf("\n");
1738                         scr_flush();
1739                 }
1740                 switch (e) {
1741                 case '?':
1742                         scr_printf("Options available here:\n"
1743                                 " ?  Help (prints this message)\n"
1744                                 " S  Stop reading immediately\n"
1745                                 " A  Again (repeats last message)\n"
1746                                 " N  Next (continue with next message)\n"
1747                                 " Y  My Next (continue with next message you authored)\n"
1748                                 " B  Back (go back to previous message)\n");
1749                         if (  (is_room_aide)
1750                            || (room_flags & QR_MAILBOX)
1751                            || (room_flags2 & QR2_COLLABDEL)
1752                         ) {
1753                                 scr_printf(" D  Delete this message\n"
1754                                         " M  Move message to another room\n");
1755                         }
1756                         scr_printf(" C  Copy message to another room\n");
1757                         if (strlen(printcmd) > 0)
1758                                 scr_printf(" P  Print this message\n");
1759                         scr_printf(
1760                                 " Q  Quote portions of this message for your next post\n"
1761                                 " H  Headers (display message headers only)\n");
1762                         if (is_mail)
1763                                 scr_printf(" R  Reply to this message\n");
1764                         if (rc_allow_attachments)
1765                                 scr_printf
1766                                     (" F  (save attachments to a file)\n");
1767                         if (strlen(rc_url_cmd) > 0)
1768                                 scr_printf(" U  (list URL's for display)\n");
1769                         if (strlen(imagecmd) > 0 && has_images > 0)
1770                                 scr_printf(" I  Image viewer\n");
1771                         scr_printf("\n");
1772                         goto RMSGREAD;
1773                 case 'p':
1774                         scr_flush();
1775                         dest = fopen(prtfile, "w");
1776                         arcflag = 1;
1777                         hold_color = enable_color;
1778                         enable_color = 0;
1779                         goto RAGAIN;
1780                 case 'q':
1781                         scr_flush();
1782                         dest = fopen(temp2, "w");
1783                         quotflag = 1;
1784                         hold_color = enable_color;
1785                         enable_color = 0;
1786                         goto RAGAIN;
1787                 case 's':
1788                         return;
1789                 case 'a':
1790                         goto RAGAIN;
1791                 case 'b':
1792                         a = a - (rdir * 2);
1793                         break;
1794                 case 'm':
1795                 case 'c':
1796                         newprompt("Enter target room: ",
1797                                   targ, ROOMNAMELEN - 1);
1798                         if (strlen(targ) > 0) {
1799                                 r = CtdlIPCMoveMessage(ipc, (e == 'c' ? 1 : 0),
1800                                                        msg_arr[a], targ, cmd);
1801                                 scr_printf("%s\n", cmd);
1802                                 if (r / 100 == 2)
1803                                         msg_arr[a] = 0L;
1804                         } else {
1805                                 goto RMSGREAD;
1806                         }
1807                         if (r / 100 != 2)       /* r will be init'ed, FIXME */
1808                                 goto RMSGREAD;  /* the logic here sucks */
1809                         break;
1810                 case 'f':
1811                         newprompt("Which section? ", filename,
1812                                   ((sizeof filename) - 1));
1813                         r = CtdlIPCAttachmentDownload(ipc, msg_arr[a],
1814                                         filename, &attachment, progress, cmd);
1815                         if (r / 100 != 2) {
1816                                 scr_printf("%s\n", cmd);
1817                         } else {
1818                                 extract_token(filename, cmd, 2, '|', sizeof filename);
1819                                 /*
1820                                  * Part 1 won't have a filename; use the
1821                                  * subject of the message instead. IO
1822                                  */
1823                                 if (!strlen(filename))
1824                                         strcpy(filename, reply_subject);
1825                                 destination_directory(save_to, filename);
1826                                 save_buffer(attachment,
1827                                                 extract_unsigned_long(cmd, 0),
1828                                                 save_to);
1829                         }
1830                         if (attachment) {
1831                                 free(attachment);
1832                                 attachment = NULL;
1833                         }
1834                         goto RMSGREAD;
1835                 case 'd':
1836                         scr_printf("*** Delete this message? ");
1837                         if (yesno() == 1) {
1838                                 r = CtdlIPCDeleteMessage(ipc, msg_arr[a], cmd);
1839                                 scr_printf("%s\n", cmd);
1840                                 if (r / 100 == 2)
1841                                         msg_arr[a] = 0L;
1842                         } else {
1843                                 goto RMSGREAD;
1844                         }
1845                         break;
1846                 case 'h':
1847                         read_message(ipc, msg_arr[a], READ_HEADER, NULL);
1848                         goto RMSGREAD;
1849                 case 'r':
1850                         savedpos = num_msgs;
1851                         entmsg(ipc, 1, ((userflags & US_EXTEDIT) ? 2 : 0), 0);
1852                         num_msgs = savedpos;
1853                         goto RMSGREAD;
1854                 case 'u':
1855                         list_urls(ipc);
1856                         goto RMSGREAD;
1857                 case 'i':
1858                         image_view(ipc, msg_arr[a]);
1859                         goto RMSGREAD;
1860             case 'y':
1861           { /* hack hack hack */
1862             /* find the next message by me, stay here if we find nothing */
1863             int finda;
1864             int lasta = a;
1865             for (finda = (a + rdir); ((finda < num_msgs) && (finda >= 0)); finda += rdir)
1866               {
1867                 /* This is repetitively dumb, but that's what computers are for.
1868                    We have to load up messages until we find one by us */
1869                 char buf[SIZ];
1870                 int founda = 0;
1871                 struct ctdlipcmessage *msg = NULL;
1872                 
1873                 /* read the header so we can get 'from=' */
1874                 r = CtdlIPCGetSingleMessage(ipc, msg_arr[finda], 1, 0, &msg, buf);
1875                 if (!strncasecmp(msg->author, fullname, sizeof(fullname))) {
1876                         a = lasta; /* meesa current */
1877                         founda = 1;
1878                 }
1879
1880                 free(msg);
1881
1882                 if (founda)
1883                         break; /* for */
1884                 lasta = finda; /* keep one behind or we skip on the reentrance to the for */
1885               } /* for */
1886           } /* case 'y' */
1887       } /* switch */
1888         }                       /* end for loop */
1889 }                               /* end read routine */
1890
1891
1892
1893
1894 /*
1895  * View and edit a system message
1896  */
1897 void edit_system_message(CtdlIPC *ipc, char *which_message)
1898 {
1899         char desc[SIZ];
1900         char read_cmd[SIZ];
1901         char write_cmd[SIZ];
1902
1903         snprintf(desc, sizeof desc, "system message '%s'", which_message);
1904         snprintf(read_cmd, sizeof read_cmd, "MESG %s", which_message);
1905         snprintf(write_cmd, sizeof write_cmd, "EMSG %s", which_message);
1906         do_edit(ipc, desc, read_cmd, "NOOP", write_cmd);
1907 }
1908
1909
1910
1911
1912 /*
1913  * Verify the message base
1914  */
1915 void check_message_base(CtdlIPC *ipc)
1916 {
1917         char buf[SIZ];
1918         char *transcript = NULL;
1919         int r;          /* IPC response code */
1920
1921         scr_printf
1922             ("Please read the documentation before running this command.\n"
1923             "Having done so, do you still want to check the message base? ");
1924         if (yesno() == 0)
1925                 return;
1926
1927         r = CtdlIPCMessageBaseCheck(ipc, &transcript, buf);
1928         if (r / 100 != 1) {
1929                 scr_printf("%s\n", buf);
1930                 return;
1931         }
1932
1933         while (transcript && strlen(transcript)) {
1934                 lines_printed = 1;
1935                 extract_token(buf, transcript, 0, '\n', sizeof buf);
1936                 remove_token(transcript, 0, '\n');
1937                 pprintf("%s\n", buf);
1938         }
1939         if (transcript) free(transcript);
1940         return;
1941 }
1942
1943
1944 /*
1945  * Loads the contents of a file into memory.  Caller must free the allocated
1946  * memory.
1947  */
1948 char *load_message_from_file(FILE *src)
1949 {
1950         size_t i;
1951         size_t got = 0;
1952         char *dest = NULL;
1953
1954         fseek(src, 0, SEEK_END);
1955         i = ftell(src);
1956         rewind(src);
1957
1958         dest = (char *)calloc(1, i + 1);
1959         if (!dest)
1960                 return NULL;
1961
1962         while (got < i) {
1963                 size_t g;
1964
1965                 g = fread(dest + got, 1, i - got, src);
1966                 got += g;
1967                 if (g < i - got) {
1968                         /* Interrupted system call, keep going */
1969                         if (errno == EINTR)
1970                                 continue;
1971                         /* At this point we have either EOF or error */
1972                         i = got;
1973                         break;
1974                 }
1975                 dest[i] = 0;
1976         }
1977
1978         return dest;
1979 }