]> code.citadel.org Git - citadel.git/blob - citadel/messages.c
Applied matt's patches to clean up memory leaks in the client
[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
1128         if (c > 0)
1129                 mode = 1;
1130         else
1131                 mode = 0;
1132
1133         strcpy(subject, "");
1134
1135         /*
1136          * First, check to see if we have permission to enter a message in
1137          * this room.  The server will return an error code if we can't.
1138          */
1139         strcpy(message.recipient, "");
1140         strcpy(message.author, "");
1141         strcpy(message.subject, "");
1142         message.text = "";              /* point to "", changes later */
1143         message.anonymous = 0;
1144         message.type = mode;
1145
1146         if (masquerade) {
1147                 newprompt("Display name for this message: ", message.author, 40);
1148         }
1149
1150         r = CtdlIPCPostMessage(ipc, 0, &message, buf);
1151
1152         if (r / 100 != 2 && r / 10 != 57) {
1153                 scr_printf("%s\n", buf);
1154                 return (1);
1155         }
1156
1157         /* Error code 570 is special.  It means that we CAN enter a message
1158          * in this room, but a recipient needs to be specified.
1159          */
1160         need_recp = 0;
1161         if (r / 10 == 57) {
1162                 need_recp = 1;
1163         }
1164
1165         /* If the user is a dumbass, tell them how to type. */
1166         if ((userflags & US_EXPERT) == 0) {
1167                 formout(ipc, "entermsg");
1168         }
1169
1170         /* Handle the selection of a recipient, if necessary. */
1171         strcpy(buf, "");
1172         if (need_recp == 1) {
1173                 if (axlevel >= 2) {
1174                         if (is_reply) {
1175                                 strcpy(buf, reply_to);
1176                         } else {
1177                                 scr_printf("Enter recipient: ");
1178                                 ctdl_getline(buf, (SIZ-100) );
1179                                 if (strlen(buf) == 0)
1180                                         return (1);
1181                         }
1182                 } else
1183                         strcpy(buf, "sysop");
1184         }
1185         strcpy(message.recipient, buf);
1186
1187         if (is_reply) {
1188                 if (strlen(reply_subject) > 0) {
1189                         if (!strncasecmp(reply_subject,
1190                            "Re: ", 3)) {
1191                                 strcpy(message.subject, reply_subject);
1192                         }
1193                         else {
1194                                 snprintf(message.subject,
1195                                         sizeof message.subject,
1196                                         "Re: %s",
1197                                         reply_subject);
1198                         }
1199                 }
1200         }
1201
1202         if (room_flags & QR_ANONOPT) {
1203                 scr_printf("Anonymous (Y/N)? ");
1204                 if (yesno() == 1)
1205                         message.anonymous = 1;
1206         }
1207
1208         /* If it's mail, we've got to check the validity of the recipient... */
1209         if (strlen(message.recipient) > 0) {
1210                 r = CtdlIPCPostMessage(ipc, 0, &message, buf);
1211                 if (r / 100 != 2) {
1212                         scr_printf("%s\n", buf);
1213                         return (1);
1214                 }
1215         }
1216
1217         /* Learn the number of the newest message in in the room, so we can
1218          * tell upon saving whether someone else has posted too.
1219          */
1220         num_msgs = 0;
1221         r = CtdlIPCGetMessages(ipc, LastMessages, 1, NULL, &msgarr, buf);
1222         if (r / 100 != 1) {
1223                 scr_printf("%s\n", buf);
1224         } else {
1225                 for (num_msgs = 0; msgarr[num_msgs]; num_msgs++)
1226                         ;
1227         }
1228
1229         /* Now compose the message... */
1230         if (client_make_message(ipc, temp, message.recipient,
1231            message.anonymous, 0, c, message.subject) != 0) {
1232             if (msgarr) free(msgarr);   
1233                 return (2);
1234         }
1235
1236         /* Reopen the temp file that was created, so we can send it */
1237         fp = fopen(temp, "r");
1238
1239         if (!fp || !(message.text = load_message_from_file(fp))) {
1240                 err_printf("*** Internal error while trying to save message!\n"
1241                         "%s: %s\n",
1242                         temp, strerror(errno));
1243                 unlink(temp);
1244                 return(errno);
1245         }
1246
1247         if (fp) fclose(fp);
1248
1249         /* Break lines that are >1024 characters, otherwise the server
1250          * will truncate them.
1251          */
1252         break_big_lines(message.text);
1253
1254         /* Transmit message to the server */
1255         r = CtdlIPCPostMessage(ipc, 1, &message, buf);
1256         if (r / 100 != 4) {
1257                 scr_printf("%s\n", buf);
1258                 return (1);
1259         }
1260
1261         /* Yes, unlink it now, so it doesn't stick around if we crash */
1262         unlink(temp);
1263
1264         if (num_msgs >= 1) highmsg = msgarr[num_msgs - 1];
1265
1266         if (msgarr) free(msgarr);
1267         msgarr = NULL;
1268         r = CtdlIPCGetMessages(ipc, NewMessages, 0, NULL, &msgarr, buf);
1269         if (r / 100 != 1) {
1270                 scr_printf("%s\n", buf);
1271         } else {
1272                 for (num_msgs = 0; msgarr[num_msgs]; num_msgs++)
1273                         ;
1274         }
1275
1276         /* get new highest message number in room to set lrp for goto... */
1277         maxmsgnum = msgarr[num_msgs - 1];
1278
1279         /* now see if anyone else has posted in here */
1280         b = (-1);
1281         for (a = 0; a < num_msgs; ++a) {
1282                 if (msgarr[a] > highmsg) {
1283                         ++b;
1284                 }
1285         }
1286         if (msgarr) free(msgarr);
1287         msgarr = NULL;
1288
1289         /* In the Mail> room, this algorithm always counts one message
1290          * higher than in public rooms, so we decrement it by one.
1291          */
1292         if (need_recp) {
1293                 --b;
1294         }
1295
1296         if (b == 1) {
1297                 scr_printf("*** 1 additional message has been entered "
1298                         "in this room by another user.\n");
1299         }
1300         else if (b > 1) {
1301                 scr_printf("*** %d additional messages have been entered "
1302                         "in this room by other users.\n", b);
1303         }
1304     free(message.text);
1305
1306         return(0);
1307 }
1308
1309 /*
1310  * Do editing on a quoted file
1311  */
1312 void process_quote(void)
1313 {
1314         FILE *qfile, *tfile;
1315         char buf[128];
1316         int line, qstart, qend;
1317
1318         /* Unlink the second temp file as soon as it's opened, so it'll get
1319          * deleted even if the program dies
1320          */
1321         qfile = fopen(temp2, "r");
1322         unlink(temp2);
1323
1324         /* Display the quotable text with line numbers added */
1325         line = 0;
1326         fgets(buf, 128, qfile);
1327         while (fgets(buf, 128, qfile) != NULL) {
1328                 scr_printf("%2d %s", ++line, buf);
1329         }
1330         scr_printf("Begin quoting at [ 1] : ");
1331         ctdl_getline(buf, 3);
1332         qstart = (buf[0] == 0) ? (1) : atoi(buf);
1333         scr_printf("  End quoting at [%d] : ", line);
1334         ctdl_getline(buf, 3);
1335         qend = (buf[0] == 0) ? (line) : atoi(buf);
1336         rewind(qfile);
1337         line = 0;
1338         fgets(buf, 128, qfile);
1339         tfile = fopen(temp, "w");
1340         while (fgets(buf, 128, qfile) != NULL) {
1341                 if ((++line >= qstart) && (line <= qend))
1342                         fprintf(tfile, " >%s", buf);
1343         }
1344         fprintf(tfile, " \n");
1345         fclose(qfile);
1346         fclose(tfile);
1347         chmod(temp, 0666);
1348 }
1349
1350
1351
1352 /*
1353  * List the URL's which were embedded in the previous message
1354  */
1355 void list_urls(CtdlIPC *ipc)
1356 {
1357         int i;
1358         char cmd[SIZ];
1359
1360         if (num_urls == 0) {
1361                 scr_printf("There were no URL's in the previous message.\n\n");
1362                 return;
1363         }
1364
1365         for (i = 0; i < num_urls; ++i) {
1366                 scr_printf("%3d %s\n", i + 1, urls[i]);
1367         }
1368
1369         if ((i = num_urls) != 1)
1370                 i = intprompt("Display which one", 1, 1, num_urls);
1371
1372         snprintf(cmd, sizeof cmd, rc_url_cmd, urls[i - 1]);
1373         system(cmd);
1374         scr_printf("\n");
1375 }
1376
1377
1378 /*
1379  * Run image viewer in background
1380  */
1381 int do_image_view(const char *filename)
1382 {
1383         char cmd[SIZ];
1384         pid_t childpid;
1385
1386         snprintf(cmd, sizeof cmd, imagecmd, filename);
1387         childpid = fork();
1388         if (childpid < 0) {
1389                 unlink(filename);
1390                 return childpid;
1391         }
1392
1393         if (childpid == 0) {
1394                 int retcode;
1395                 pid_t grandchildpid;
1396
1397                 grandchildpid = fork();
1398                 if (grandchildpid < 0) {
1399                         return grandchildpid;
1400                 }
1401
1402                 if (grandchildpid == 0) {
1403                         int nullfd;
1404                         int outfd = -1;
1405                         int errfd = -1;
1406
1407                         nullfd = open("/dev/null", O_WRONLY);
1408                         if (nullfd > -1) {
1409                                 dup2(1, outfd);
1410                                 dup2(2, errfd);
1411                                 dup2(nullfd, 1);
1412                                 dup2(nullfd, 2);
1413                         }
1414                         retcode = system(cmd);
1415                         if (nullfd > -1) {
1416                                 dup2(outfd, 1);
1417                                 dup2(errfd, 2);
1418                                 close(nullfd);
1419                         }
1420                         unlink(filename);
1421                         exit(retcode);
1422                 }
1423
1424                 if (grandchildpid > 0) {
1425                         exit(0);
1426                 }
1427         }
1428
1429         if (childpid > 0) {
1430                 int retcode;
1431
1432                 waitpid(childpid, &retcode, 0);
1433                 return retcode;
1434         }
1435         
1436         return -1;
1437 }
1438
1439
1440 /*
1441  * View an image attached to a message
1442  */
1443 void image_view(CtdlIPC *ipc, unsigned long msg)
1444 {
1445         struct parts *ptr = last_message_parts;
1446         char part[SIZ];
1447         int found = 0;
1448
1449         /* Run through available parts */
1450         for (ptr = last_message_parts; ptr; ptr = ptr->next) {
1451                 if ((!strcasecmp(ptr->disposition, "attachment")
1452                    || !strcasecmp(ptr->disposition, "inline"))
1453                    && !strncmp(ptr->mimetype, "image/", 6)) {
1454                         found++;
1455                         if (found == 1) {
1456                                 strcpy(part, ptr->number);
1457                         }
1458                 }
1459         }
1460
1461         while (found > 0) {
1462                 if (found > 1)
1463                         strprompt("View which part (0 when done)", part, SIZ-1);
1464                 found = -found;
1465                 for (ptr = last_message_parts; ptr; ptr = ptr->next) {
1466                         if ((!strcasecmp(ptr->disposition, "attachment")
1467                            || !strcasecmp(ptr->disposition, "inline"))
1468                            && !strncmp(ptr->mimetype, "image/", 6)
1469                            && !strcasecmp(ptr->number, part)) {
1470                                 char tmp[PATH_MAX];
1471                                 char buf[SIZ];
1472                                 void *file = NULL; /* The downloaded file */
1473                                 int r;
1474         
1475                                 /* view image */
1476                                 found = -found;
1477                                 r = CtdlIPCAttachmentDownload(ipc, msg, ptr->number, &file, progress, buf);
1478                                 if (r / 100 != 2) {
1479                                         scr_printf("%s\n", buf);
1480                                 } else {
1481                                         size_t len;
1482         
1483                                         len = (size_t)extract_long(buf, 0);
1484                                         progress(ipc, len, len);
1485                                         scr_flush();
1486                                         CtdlMakeTempFileName(tmp, sizeof tmp);
1487                                         strcat(tmp, ptr->filename);
1488                                         save_buffer(file, len, tmp);
1489                                         free(file);
1490                                         do_image_view(tmp);
1491                                 }
1492                                 break;
1493                         }
1494                 }
1495                 if (found == 1)
1496                         break;
1497         }
1498 }
1499  
1500
1501 /*
1502  * Read the messages in the current room
1503  */
1504 void readmsgs(CtdlIPC *ipc,
1505         enum MessageList c,             /* see listing in citadel_ipc.h */
1506         enum MessageDirection rdir,     /* 1=Forward (-1)=Reverse */
1507         int q           /* Number of msgs to read (if c==3) */
1508 ) {
1509         int a, b, e, f, g, start;
1510         int savedpos;
1511         int hold_sw = 0;
1512         char arcflag = 0;
1513         char quotflag = 0;
1514         int hold_color = 0;
1515         char prtfile[PATH_MAX];
1516         char pagin;
1517         char cmd[SIZ];
1518         char targ[ROOMNAMELEN];
1519         char filename[PATH_MAX];
1520         char save_to[PATH_MAX];
1521         void *attachment = NULL;        /* Downloaded attachment */
1522         FILE *dest = NULL;      /* Alternate destination other than screen */
1523         int r;                          /* IPC response code */
1524
1525         if (c < 0)
1526                 b = (num_msgs - 1);
1527         else
1528                 b = 0;
1529
1530         CtdlMakeTempFileName(prtfile, sizeof prtfile);
1531
1532         if (msg_arr) {
1533                 free(msg_arr);
1534                 msg_arr = NULL;
1535         }
1536         r = CtdlIPCGetMessages(ipc, c, q, NULL, &msg_arr, cmd);
1537         if (r / 100 != 1) {
1538                 scr_printf("%s\n", cmd);
1539         } else {
1540                 for (num_msgs = 0; msg_arr[num_msgs]; num_msgs++)
1541                         ;
1542         }
1543
1544         if (num_msgs == 0) {    /* TODO look at this later */
1545                 if (c == LastMessages) return;
1546                 scr_printf("*** There are no ");
1547                 if (c == NewMessages) scr_printf("new ");
1548                 if (c == OldMessages) scr_printf("old ");
1549                 scr_printf("messages in this room.\n");
1550                 return;
1551         }
1552
1553         lines_printed = 0;
1554
1555         /* this loop cycles through each message... */
1556         start = ((rdir == 1) ? 0 : (num_msgs - 1));
1557         for (a = start; ((a < num_msgs) && (a >= 0)); a = a + rdir) {
1558                 while (msg_arr[a] == 0L) {
1559                         a = a + rdir;
1560                         if ((a == num_msgs) || (a == (-1)))
1561                                 return;
1562                 }
1563
1564 RAGAIN:         pagin = ((arcflag == 0)
1565                          && (quotflag == 0)
1566                          && (userflags & US_PAGINATOR)) ? 1 : 0;
1567
1568                 /* If we're doing a quote, set the screenwidth to 72 */
1569                 if (quotflag) {
1570                         hold_sw = screenwidth;
1571                         screenwidth = 72;
1572                 }
1573
1574                 /* If printing or archiving, set the screenwidth to 80 */
1575                 if (arcflag) {
1576                         hold_sw = screenwidth;
1577                         screenwidth = 80;
1578                 }
1579
1580                 /* clear parts list */
1581                 free_parts(last_message_parts);
1582                 last_message_parts = NULL;
1583
1584                 /* now read the message... */
1585                 e = read_message(ipc, msg_arr[a], pagin, dest);
1586
1587                 /* ...and set the screenwidth back if we have to */
1588                 if ((quotflag) || (arcflag)) {
1589                         screenwidth = hold_sw;
1590                 }
1591 RMSGREAD:       scr_flush();
1592                 highest_msg_read = msg_arr[a];
1593                 if (quotflag) {
1594                         fclose(dest);
1595                         dest = NULL;
1596                         quotflag = 0;
1597                         enable_color = hold_color;
1598                         process_quote();
1599                 }
1600                 if (arcflag) {
1601                         fclose(dest);
1602                         dest = NULL;
1603                         arcflag = 0;
1604                         enable_color = hold_color;
1605                         f = fork();
1606                         if (f == 0) {
1607                                 freopen(prtfile, "r", stdin);
1608                                 screen_reset();
1609                                 stty_ctdl(SB_RESTORE);
1610                                 ka_system(printcmd);
1611                                 stty_ctdl(SB_NO_INTR);
1612                                 screen_set();
1613                                 unlink(prtfile);
1614                                 exit(0);
1615                         }
1616                         if (f > 0)
1617                                 do {
1618                                         g = wait(NULL);
1619                                 } while ((g != f) && (g >= 0));
1620                         scr_printf("Message printed.\n");
1621                 }
1622                 if (rc_alt_semantics && c == 1) {
1623                         char buf[SIZ];
1624
1625                         r = CtdlIPCSetMessageSeen(ipc, msg_arr[a], 1, buf);
1626                 }
1627                 if (e == 3)
1628                         return;
1629                 if (((userflags & US_NOPROMPT) || (e == 2))
1630                     && (((room_flags & QR_MAILBOX) == 0)
1631                         || (rc_force_mail_prompts == 0))) {
1632                         e = 'n';
1633                 } else {
1634                         color(DIM_WHITE);
1635                         scr_printf("(");
1636                         color(BRIGHT_WHITE);
1637                         scr_printf("%d", num_msgs - a - 1);
1638                         color(DIM_WHITE);
1639                         scr_printf(") ");
1640
1641                         keyopt("<B>ack <A>gain <Q>uote <R>eply <N>ext <S>top ");
1642                         if (rc_url_cmd[0] && num_urls)
1643                                 keyopt("<U>RLview ");
1644                         if (has_images > 0 && strlen(imagecmd) > 0)
1645                                 keyopt("<I>mages ");
1646                         keyopt("<?>help -> ");
1647
1648                         do {
1649                                 lines_printed = 2;
1650                                 e = (inkey() & 127);
1651                                 e = tolower(e);
1652 /* return key same as <N> */ if (e == 10)
1653                                         e = 'n';
1654 /* space key same as <N> */ if (e == 32)
1655                                         e = 'n';
1656 /* del/move for aides only */
1657                                     if (  (!is_room_aide)
1658                                        && ((room_flags & QR_MAILBOX) == 0)
1659                                        && ((room_flags2 & QR2_COLLABDEL) == 0)
1660                                        ) {
1661                                         if ((e == 'd') || (e == 'm'))
1662                                                 e = 0;
1663                                 }
1664 /* print only if available */
1665                                 if ((e == 'p') && (strlen(printcmd) == 0))
1666                                         e = 0;
1667 /* can't file if not allowed */
1668                                     if ((e == 'f')
1669                                         && (rc_allow_attachments == 0))
1670                                         e = 0;
1671 /* link only if browser avail*/
1672                                     if ((e == 'u')
1673                                         && (strlen(rc_url_cmd) == 0))
1674                                         e = 0;
1675                                 if ((e == 'i')
1676                                         && (!strlen(imagecmd) || !has_images))
1677                                         e = 0;
1678                         } while ((e != 'a') && (e != 'n') && (e != 's')
1679                                  && (e != 'd') && (e != 'm') && (e != 'p')
1680                                  && (e != 'q') && (e != 'b') && (e != 'h')
1681                                  && (e != 'r') && (e != 'f') && (e != '?')
1682                                  && (e != 'u') && (e != 'c') && (e != 'y')
1683                                  && (e != 'i'));
1684                         switch (e) {
1685                         case 's':
1686                                 scr_printf("Stop");
1687                                 break;
1688                         case 'a':
1689                                 scr_printf("Again");
1690                                 break;
1691                         case 'd':
1692                                 scr_printf("Delete");
1693                                 break;
1694                         case 'm':
1695                                 scr_printf("Move");
1696                                 break;
1697                         case 'c':
1698                                 scr_printf("Copy");
1699                                 break;
1700                         case 'n':
1701                                 scr_printf("Next");
1702                                 break;
1703                         case 'p':
1704                                 scr_printf("Print");
1705                                 break;
1706                         case 'q':
1707                                 scr_printf("Quote");
1708                                 break;
1709                         case 'b':
1710                                 scr_printf("Back");
1711                                 break;
1712                         case 'h':
1713                                 scr_printf("Header");
1714                                 break;
1715                         case 'r':
1716                                 scr_printf("Reply");
1717                                 break;
1718                         case 'f':
1719                                 scr_printf("File");
1720                                 break;
1721                         case 'u':
1722                                 scr_printf("URL's");
1723                                 break;
1724                         case 'y':
1725                                 scr_printf("mY next");
1726                                 break;
1727                         case 'i':
1728                                 break;
1729                         case '?':
1730                                 scr_printf("? <help>");
1731                                 break;
1732                         }
1733                         if (userflags & US_DISAPPEAR || e == 'i')
1734                                 scr_printf("\r%79s\r", "");
1735                         else
1736                                 scr_printf("\n");
1737                         scr_flush();
1738                 }
1739                 switch (e) {
1740                 case '?':
1741                         scr_printf("Options available here:\n"
1742                                 " ?  Help (prints this message)\n"
1743                                 " S  Stop reading immediately\n"
1744                                 " A  Again (repeats last message)\n"
1745                                 " N  Next (continue with next message)\n"
1746                                 " Y  My Next (continue with next message you authored)\n"
1747                                 " B  Back (go back to previous message)\n");
1748                         if (  (is_room_aide)
1749                            || (room_flags & QR_MAILBOX)
1750                            || (room_flags2 & QR2_COLLABDEL)
1751                         ) {
1752                                 scr_printf(" D  Delete this message\n"
1753                                         " M  Move message to another room\n");
1754                         }
1755                         scr_printf(" C  Copy message to another room\n");
1756                         if (strlen(printcmd) > 0)
1757                                 scr_printf(" P  Print this message\n");
1758                         scr_printf(
1759                                 " Q  Quote portions of this message for your next post\n"
1760                                 " H  Headers (display message headers only)\n");
1761                         if (is_mail)
1762                                 scr_printf(" R  Reply to this message\n");
1763                         if (rc_allow_attachments)
1764                                 scr_printf
1765                                     (" F  (save attachments to a file)\n");
1766                         if (strlen(rc_url_cmd) > 0)
1767                                 scr_printf(" U  (list URL's for display)\n");
1768                         if (strlen(imagecmd) > 0 && has_images > 0)
1769                                 scr_printf(" I  Image viewer\n");
1770                         scr_printf("\n");
1771                         goto RMSGREAD;
1772                 case 'p':
1773                         scr_flush();
1774                         dest = fopen(prtfile, "w");
1775                         arcflag = 1;
1776                         hold_color = enable_color;
1777                         enable_color = 0;
1778                         goto RAGAIN;
1779                 case 'q':
1780                         scr_flush();
1781                         dest = fopen(temp2, "w");
1782                         quotflag = 1;
1783                         hold_color = enable_color;
1784                         enable_color = 0;
1785                         goto RAGAIN;
1786                 case 's':
1787                         return;
1788                 case 'a':
1789                         goto RAGAIN;
1790                 case 'b':
1791                         a = a - (rdir * 2);
1792                         break;
1793                 case 'm':
1794                 case 'c':
1795                         newprompt("Enter target room: ",
1796                                   targ, ROOMNAMELEN - 1);
1797                         if (strlen(targ) > 0) {
1798                                 r = CtdlIPCMoveMessage(ipc, (e == 'c' ? 1 : 0),
1799                                                        msg_arr[a], targ, cmd);
1800                                 scr_printf("%s\n", cmd);
1801                                 if (r / 100 == 2)
1802                                         msg_arr[a] = 0L;
1803                         } else {
1804                                 goto RMSGREAD;
1805                         }
1806                         if (r / 100 != 2)       /* r will be init'ed, FIXME */
1807                                 goto RMSGREAD;  /* the logic here sucks */
1808                         break;
1809                 case 'f':
1810                         newprompt("Which section? ", filename,
1811                                   ((sizeof filename) - 1));
1812                         r = CtdlIPCAttachmentDownload(ipc, msg_arr[a],
1813                                         filename, &attachment, progress, cmd);
1814                         if (r / 100 != 2) {
1815                                 scr_printf("%s\n", cmd);
1816                         } else {
1817                                 extract_token(filename, cmd, 2, '|', sizeof filename);
1818                                 /*
1819                                  * Part 1 won't have a filename; use the
1820                                  * subject of the message instead. IO
1821                                  */
1822                                 if (!strlen(filename))
1823                                         strcpy(filename, reply_subject);
1824                                 destination_directory(save_to, filename);
1825                                 save_buffer(attachment,
1826                                                 extract_unsigned_long(cmd, 0),
1827                                                 save_to);
1828                         }
1829                         if (attachment) {
1830                                 free(attachment);
1831                                 attachment = NULL;
1832                         }
1833                         goto RMSGREAD;
1834                 case 'd':
1835                         scr_printf("*** Delete this message? ");
1836                         if (yesno() == 1) {
1837                                 r = CtdlIPCDeleteMessage(ipc, msg_arr[a], cmd);
1838                                 scr_printf("%s\n", cmd);
1839                                 if (r / 100 == 2)
1840                                         msg_arr[a] = 0L;
1841                         } else {
1842                                 goto RMSGREAD;
1843                         }
1844                         break;
1845                 case 'h':
1846                         read_message(ipc, msg_arr[a], READ_HEADER, NULL);
1847                         goto RMSGREAD;
1848                 case 'r':
1849                         savedpos = num_msgs;
1850                         entmsg(ipc, 1, ((userflags & US_EXTEDIT) ? 2 : 0), 0);
1851                         num_msgs = savedpos;
1852                         goto RMSGREAD;
1853                 case 'u':
1854                         list_urls(ipc);
1855                         goto RMSGREAD;
1856                 case 'i':
1857                         image_view(ipc, msg_arr[a]);
1858                         goto RMSGREAD;
1859             case 'y':
1860           { /* hack hack hack */
1861             /* find the next message by me, stay here if we find nothing */
1862             int finda;
1863             int lasta = a;
1864             for (finda = (a + rdir); ((finda < num_msgs) && (finda >= 0)); finda += rdir)
1865               {
1866                 /* This is repetitively dumb, but that's what computers are for.
1867                    We have to load up messages until we find one by us */
1868                 char buf[SIZ];
1869                 int founda = 0;
1870                 struct ctdlipcmessage *msg = NULL;
1871                 
1872                 /* read the header so we can get 'from=' */
1873                 r = CtdlIPCGetSingleMessage(ipc, msg_arr[finda], 1, 0, &msg, buf);
1874                 if (!strncasecmp(msg->author, fullname, sizeof(fullname))) {
1875                         a = lasta; /* meesa current */
1876                         founda = 1;
1877                 }
1878
1879                 free(msg);
1880
1881                 if (founda)
1882                         break; /* for */
1883                 lasta = finda; /* keep one behind or we skip on the reentrance to the for */
1884               } /* for */
1885           } /* case 'y' */
1886       } /* switch */
1887         }                       /* end for loop */
1888 }                               /* end read routine */
1889
1890
1891
1892
1893 /*
1894  * View and edit a system message
1895  */
1896 void edit_system_message(CtdlIPC *ipc, char *which_message)
1897 {
1898         char desc[SIZ];
1899         char read_cmd[SIZ];
1900         char write_cmd[SIZ];
1901
1902         snprintf(desc, sizeof desc, "system message '%s'", which_message);
1903         snprintf(read_cmd, sizeof read_cmd, "MESG %s", which_message);
1904         snprintf(write_cmd, sizeof write_cmd, "EMSG %s", which_message);
1905         do_edit(ipc, desc, read_cmd, "NOOP", write_cmd);
1906 }
1907
1908
1909
1910
1911 /*
1912  * Verify the message base
1913  */
1914 void check_message_base(CtdlIPC *ipc)
1915 {
1916         char buf[SIZ];
1917         char *transcript = NULL;
1918         int r;          /* IPC response code */
1919
1920         scr_printf
1921             ("Please read the documentation before running this command.\n"
1922             "Having done so, do you still want to check the message base? ");
1923         if (yesno() == 0)
1924                 return;
1925
1926         r = CtdlIPCMessageBaseCheck(ipc, &transcript, buf);
1927         if (r / 100 != 1) {
1928                 scr_printf("%s\n", buf);
1929                 return;
1930         }
1931
1932         while (transcript && strlen(transcript)) {
1933                 lines_printed = 1;
1934                 extract_token(buf, transcript, 0, '\n', sizeof buf);
1935                 remove_token(transcript, 0, '\n');
1936                 pprintf("%s\n", buf);
1937         }
1938         if (transcript) free(transcript);
1939         return;
1940 }
1941
1942
1943 /*
1944  * Loads the contents of a file into memory.  Caller must free the allocated
1945  * memory.
1946  */
1947 char *load_message_from_file(FILE *src)
1948 {
1949         size_t i;
1950         size_t got = 0;
1951         char *dest = NULL;
1952
1953         fseek(src, 0, SEEK_END);
1954         i = ftell(src);
1955         rewind(src);
1956
1957         dest = (char *)calloc(1, i + 1);
1958         if (!dest)
1959                 return NULL;
1960
1961         while (got < i) {
1962                 size_t g;
1963
1964                 g = fread(dest + got, 1, i - got, src);
1965                 got += g;
1966                 if (g < i - got) {
1967                         /* Interrupted system call, keep going */
1968                         if (errno == EINTR)
1969                                 continue;
1970                         /* At this point we have either EOF or error */
1971                         i = got;
1972                         break;
1973                 }
1974                 dest[i] = 0;
1975         }
1976
1977         return dest;
1978 }