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