* More addressing hacks
[citadel.git] / citadel / messages.c
1 /*
2  * Citadel/UX message support routines
3  * see copyright.txt for copyright information
4  * $Id$
5  */
6
7 #include "sysdep.h"
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <sys/types.h>
11 #include <fcntl.h>
12 #include <stdio.h>
13 #include <ctype.h>
14 #include <string.h>
15 #include <time.h>
16 #include <signal.h>
17 #include <errno.h>
18 #include <limits.h>
19 #include <sys/wait.h>
20 #include <sys/stat.h>
21 #include <stdarg.h>
22 #include "citadel.h"
23 #include "messages.h"
24 #include "commands.h"
25 #include "rooms.h"
26 #include "tools.h"
27 #ifndef HAVE_SNPRINTF
28 #include "snprintf.h"
29 #endif
30
31 #define MAXWORDBUF 256
32 #define MAXMSGS 512
33
34 struct cittext {
35         struct cittext *next;
36         char text[MAXWORDBUF];
37         };
38
39 void sttybbs(int cmd);
40 int struncmp(char *lstr, char *rstr, int len);
41 int fmout(int width, FILE *fp, char pagin, int height, int starting_lp, char subst);
42 int haschar(char *st, int ch);
43 int checkpagin(int lp, int pagin, int height);
44 void getline(char *string, int lim);
45 void formout(char *name);
46 int yesno(void);
47 void newprompt(char *prompt, char *str, int len);
48 int file_checksum(char *filename);
49 void do_edit(char *desc, char *read_cmd, char *check_cmd, char *write_cmd);
50
51 char reply_to[512];
52 long msg_arr[MAXMSGS];
53 int num_msgs;
54 extern char room_name[];
55 extern unsigned room_flags;
56 extern long highest_msg_read;
57 extern struct CtdlServInfo serv_info;
58 extern char temp[];
59 extern char temp2[];
60 extern int screenwidth;
61 extern int screenheight;
62 extern long maxmsgnum;
63 extern char is_mail;
64 extern char is_aide;
65 extern char is_room_aide;
66 extern char fullname[];
67 extern char axlevel;
68 extern unsigned userflags;
69 extern char sigcaught;
70 extern char editor_path[];
71 extern char printcmd[];
72 extern int rc_allow_attachments;
73 extern int rc_display_message_numbers;
74 extern int rc_force_mail_prompts;
75
76 extern int editor_pid;
77
78 int lines_printed;
79
80 void ka_sigcatch(int signum) {
81         char buf[256];
82         alarm(S_KEEPALIVE);
83         signal(SIGALRM, ka_sigcatch);
84         serv_puts("NOOP");
85         serv_gets(buf);
86         }
87
88
89 /*
90  * server keep-alive version of wait() (needed for external editor)
91  */
92 pid_t ka_wait(int *kstatus)
93 {
94         pid_t p;
95
96         alarm(S_KEEPALIVE);
97         signal(SIGALRM, ka_sigcatch);
98         do {
99                 errno = 0;
100                 p = wait(kstatus);
101                 } while (errno==EINTR);
102         signal(SIGALRM,SIG_IGN);
103         alarm(0);
104         return(p);
105         }
106
107
108 /*
109  * version of system() that uses ka_wait()
110  */
111 int ka_system(char *shc)
112 {
113         pid_t childpid;
114         pid_t waitpid;
115         int retcode;
116
117         childpid = fork();
118         if (childpid < 0) {
119                 color(BRIGHT_RED);
120                 perror("Cannot fork");
121                 color(DIM_WHITE);
122                 return((pid_t)childpid);
123                 }
124
125         if (childpid == 0) {
126                 execlp("/bin/sh","sh","-c",shc,NULL);
127                 exit(127);
128                 }
129
130         if (childpid > 0) {
131                 do {
132                         waitpid = ka_wait(&retcode);
133                         } while (waitpid != childpid);
134                 return(retcode);
135                 }
136
137         return(-1);
138         }
139
140
141
142 /*
143  * add a newline to the buffer...
144  */
145 void add_newline(struct cittext *textlist)
146 {
147         struct cittext *ptr;
148
149         ptr=textlist;
150         while (ptr->next != NULL) ptr = ptr->next;
151
152         while (ptr->text[strlen(ptr->text)-1]==32)
153                 ptr->text[strlen(ptr->text)-1] = 0;
154         /* strcat(ptr->text,"\n"); */
155
156         ptr->next = (struct cittext *)
157                 malloc(sizeof(struct cittext));
158         ptr = ptr->next;
159         ptr->next = NULL;
160         strcpy(ptr->text,"");
161         }
162
163
164 /*
165  * add a word to the buffer...
166  */
167 void add_word(struct cittext *textlist, char *wordbuf)
168 {
169         struct cittext *ptr;
170
171
172         ptr=textlist;
173         while (ptr->next != NULL) ptr = ptr->next;
174         
175         if (3+strlen(ptr->text)+strlen(wordbuf) > screenwidth) {
176                 ptr->next = (struct cittext *)
177                         malloc(sizeof(struct cittext));
178                 ptr = ptr->next;
179                 ptr->next = NULL;
180                 strcpy(ptr->text,"");
181                 }
182         
183         strcat(ptr->text,wordbuf);
184         strcat(ptr->text," ");
185         }
186
187
188 /*
189  * begin editing of an opened file pointed to by fp, beginning at position pos.
190  */
191 void citedit(FILE *fp, long int base_pos)
192 {
193         int a,prev,finished,b,last_space;
194         int appending = 0;
195         struct cittext *textlist = NULL;
196         struct cittext *ptr;
197         char wordbuf[MAXWORDBUF];
198         char buf[256];
199         time_t last_server_msg,now;
200
201         /*
202          * we're going to keep track of the last time we talked to
203          * the server, so we can periodically send keep-alive messages
204          * out so it doesn't time out.
205          */
206         time(&last_server_msg);
207
208         /* first, load the text into the buffer */
209         fseek(fp,base_pos,0);
210         textlist = (struct cittext *)malloc(sizeof(struct cittext));
211         textlist->next = NULL;
212         strcpy(textlist->text,"");
213
214         strcpy(wordbuf,"");
215         prev = (-1);
216         while (a=getc(fp), a>=0) {
217                 appending = 1;
218                 if ((a==32)||(a==9)||(a==13)||(a==10)) {
219                         add_word(textlist,wordbuf);
220                         strcpy(wordbuf,"");
221                         if ((prev==13)||(prev==10)) {
222                                 add_word(textlist,"\n");
223                                 add_newline(textlist);
224                                 add_word(textlist,"");
225                                 }
226                         }
227                 else {
228                         wordbuf[strlen(wordbuf)+1] = 0;
229                         wordbuf[strlen(wordbuf)] = a;
230                         }
231                 if (strlen(wordbuf)+3 > screenwidth) {
232                         add_word(textlist,wordbuf);
233                         strcpy(wordbuf,"");
234                         }
235                 prev = a;
236                 }
237
238         /* get text */
239         finished = 0;
240         prev = (appending ? 13 : (-1));
241         strcpy(wordbuf,"");
242         do {
243                 a=inkey();
244                 if (a==10) a=13;
245                 if (a==9) a=32;
246                 if (a==127) a=8;
247                 if ((a==32)&&(prev==13)) {
248                         add_word(textlist,"\n");
249                         add_newline(textlist);
250                         }
251                 if (a==8) {
252                         if (strlen(wordbuf)>0) {
253                                 wordbuf[strlen(wordbuf)-1] = 0;
254                                 putc(8,stdout);
255                                 putc(32,stdout);
256                                 putc(8,stdout);
257                                 }
258                         }
259                 else if (a==13) {
260                         printf("\n");
261                         if (strlen(wordbuf)==0) finished = 1;
262                         else {
263                                 for (b=0; b<strlen(wordbuf); ++b)
264                                    if (wordbuf[b]==32) {
265                                         wordbuf[b]=0;
266                                         add_word(textlist,wordbuf);
267                                         strcpy(wordbuf,&wordbuf[b+1]);
268                                         b=0;
269                                         }
270                                 add_word(textlist,wordbuf);
271                                 strcpy(wordbuf,"");
272                                 }
273                         }
274                 else {
275                         putc(a,stdout);
276                         wordbuf[strlen(wordbuf)+1] = 0;
277                         wordbuf[strlen(wordbuf)] = a;
278                         }
279                 if ((strlen(wordbuf)+3) > screenwidth) {
280                         last_space = (-1);
281                         for (b=0; b<strlen(wordbuf); ++b)
282                                 if (wordbuf[b]==32) last_space = b;
283                         if (last_space>=0) {
284                                 for (b=0; b<strlen(wordbuf); ++b)
285                                    if (wordbuf[b]==32) {
286                                         wordbuf[b]=0;
287                                         add_word(textlist,wordbuf);
288                                         strcpy(wordbuf,&wordbuf[b+1]);
289                                         b=0;
290                                         }
291                                 for (b=0; b<strlen(wordbuf); ++b) {
292                                         putc(8,stdout);
293                                         putc(32,stdout);
294                                         putc(8,stdout);
295                                         }
296                                 printf("\n%s",wordbuf);
297                                 }
298                         else {
299                                 add_word(textlist,wordbuf);
300                                 strcpy(wordbuf,"");
301                                 printf("\n");
302                                 }
303                         }
304                 prev = a;
305
306                 /* this check implements the server keep-alive */
307                 time(&now);
308                 if ( (now - last_server_msg) > S_KEEPALIVE ) {
309                         serv_puts("NOOP");
310                         serv_gets(buf);
311                         last_server_msg = now;
312                         }
313
314                 } while (finished==0);
315
316         /* write the buffer back to disk */
317         fseek(fp,base_pos,0);
318         for (ptr=textlist; ptr!=NULL; ptr=ptr->next) {
319                 fprintf(fp,"%s",ptr->text);
320                 }
321         putc(10,fp);
322         putc(0,fp);
323
324         /* and deallocate the memory we used */
325         while (textlist!=NULL) {
326                 ptr=textlist->next;
327                 free(textlist);
328                 textlist=ptr;
329                 }
330         }
331
332
333 int read_message(long int num, char pagin) /* Read a message from the server */
334                                            /* message number */
335                 /* 0 = normal read, 1 = read with pagination, 2 = header */
336 {
337         char buf[256];
338         char m_subject[256];
339         char from[256];
340         time_t now;
341         struct tm *tm;
342         int format_type = 0;
343         int fr = 0;
344         int nhdr = 0;
345
346         sigcaught = 0;
347         sttybbs(1);
348
349         sprintf(buf,"MSG0 %ld|%d",num,(pagin==READ_HEADER ? 1 : 0));
350         serv_puts(buf);
351         serv_gets(buf);
352         if (buf[0]!='1') {
353                 printf("*** msg #%ld: %s\n",num,buf);
354                 ++lines_printed;
355                 lines_printed = checkpagin(lines_printed,pagin,screenheight);
356                 sttybbs(0);
357                 return(0);
358                 }
359
360         strcpy(m_subject,"");
361         printf("\n");
362         ++lines_printed;
363         lines_printed = checkpagin(lines_printed,pagin,screenheight);
364         printf(" ");
365         if (pagin == 1) color(BRIGHT_CYAN);
366
367         if (pagin==2) {
368                 while(serv_gets(buf), strcmp(buf,"000")) {
369                         if (buf[4]=='=') {
370                                 printf("%s\n",buf);
371                                 ++lines_printed;
372                                 lines_printed = 
373                                         checkpagin(lines_printed,
374                                                 pagin,screenheight);
375                                 }
376                         }
377                 sttybbs(0);
378                 return(0);
379                 }
380
381         strcpy(reply_to,"nobody...xxxxx");
382         while(serv_gets(buf), struncmp(buf,"text",4)) {
383                 if (!struncmp(buf,"nhdr=yes",8)) nhdr=1;
384                 if (!struncmp(buf,"from=",5)) {
385                         strcpy(from,&buf[5]);
386                         }
387                 if (nhdr==1) buf[0]='_';
388                 if (!struncmp(buf,"type=",5))
389                         format_type=atoi(&buf[5]);
390                 if ((!struncmp(buf,"msgn=",5))&&(rc_display_message_numbers)) {
391                         color(DIM_WHITE);
392                         printf("[");
393                         color(BRIGHT_WHITE);
394                         printf("#%s",&buf[5]);
395                         color(DIM_WHITE);
396                         printf("] ");
397                         }
398                 if (!struncmp(buf,"from=",5)) {
399                         color(DIM_WHITE);
400                         printf("from ");
401                         color(BRIGHT_CYAN);
402                         printf("%s ",&buf[5]);
403                         }
404                 if (!struncmp(buf,"subj=",5))
405                         strcpy(m_subject,&buf[5]);
406
407                 if (!struncmp(buf,"rfca=",5)) {
408                         color(DIM_WHITE);
409                         printf("<");
410                         color(BRIGHT_BLUE);
411                         printf("%s",&buf[5]);
412                         color(DIM_WHITE);
413                         printf("> ");
414                         }
415                 if ((!struncmp(buf,"hnod=",5)) 
416                    && (strucmp(&buf[5],serv_info.serv_humannode))) {
417                         color(DIM_WHITE);
418                         printf("(");
419                         color(BRIGHT_WHITE);
420                         printf("%s",&buf[5]);
421                         color(DIM_WHITE);
422                         printf(") ");
423                         }
424                 if ((!struncmp(buf,"room=",5))
425                    && (strucmp(&buf[5],room_name))) {
426                         color(DIM_WHITE);
427                         printf("in ");
428                         color(BRIGHT_MAGENTA);
429                         printf("%s> ",&buf[5]);
430                         }
431
432                 if (!struncmp(buf,"node=",5)) {
433                         if ( (room_flags&QR_NETWORK)
434                            || ((strucmp(&buf[5],serv_info.serv_nodename)
435                            &&(strucmp(&buf[5],serv_info.serv_fqdn)))))
436                                 {
437                                 color(DIM_WHITE);
438                                 printf("@");
439                                 color(BRIGHT_YELLOW);
440                                 printf("%s ",&buf[5]);
441                                 }
442                         if ((!strucmp(&buf[5],serv_info.serv_nodename))
443                            ||(!strucmp(&buf[5],serv_info.serv_fqdn)))
444                                 {
445                                 strcpy(reply_to,from);
446                                 }
447                         else {
448                                 sprintf(reply_to,"%s @ %s",from,&buf[5]);
449                                 }
450                         }
451
452                 if (!struncmp(buf,"rcpt=",5)) {
453                         color(DIM_WHITE);
454                         printf("to ");
455                         color(BRIGHT_CYAN);
456                         printf("%s ",&buf[5]);
457                         }
458                 if (!struncmp(buf,"time=",5)) {
459                         now=atol(&buf[5]);
460                         tm=(struct tm *)localtime(&now);
461                         strcpy(buf,asctime(tm)); buf[strlen(buf)-1]=0;
462                         strcpy(&buf[16],&buf[19]);
463                         color(BRIGHT_MAGENTA);
464                         printf("%s ",&buf[4]);
465                         }
466                 }
467
468         if (nhdr==1) {
469                 if (!is_room_aide) {
470                         printf(" ****");
471                         }
472                 else {
473                         printf(" %s",from);
474                         }
475                 }
476         printf("\n");
477         if (pagin == 1) color(BRIGHT_WHITE);
478         ++lines_printed;
479         lines_printed = checkpagin(lines_printed,pagin,screenheight);
480
481         if (strlen(m_subject)>0) {
482                 printf("Subject: %s\n",m_subject);
483                 ++lines_printed;
484                 lines_printed = checkpagin(lines_printed,pagin,screenheight);
485                 }
486
487         if (format_type == 0) {
488                 fr=fmout(screenwidth,NULL,
489                         ((pagin==1) ? 1 : 0),
490                         screenheight,(-1),1);
491                 }
492         else {
493                 while(serv_gets(buf), strcmp(buf,"000")) {
494                         if (sigcaught==0) {
495                                 printf("%s\n",buf);
496                                 lines_printed = lines_printed + 1 +
497                                         (strlen(buf)/screenwidth);
498                                 lines_printed =
499                                         checkpagin(lines_printed,pagin,screenheight);
500                                 }
501                         }
502                 fr = sigcaught;
503                 }
504         printf("\n");
505         ++lines_printed;
506         lines_printed = checkpagin(lines_printed,pagin,screenheight);
507
508         if (pagin == 1) color(DIM_WHITE);
509         sttybbs(0);
510         return(fr);
511         }
512
513 /*
514  * replace string function for the built-in editor
515  */
516 void replace_string(char *filename, long int startpos)
517 {
518         char buf[512];
519         char srch_str[128];
520         char rplc_str[128];
521         FILE *fp;
522         int a;
523         long rpos,wpos;
524         char *ptr;
525         int substitutions = 0;
526         long msglen = 0L;
527
528         printf("Enter text to be replaced:\n: ");
529         getline(srch_str,128);
530         if (strlen(srch_str)==0) return;
531         
532         printf("Enter text to replace it with:\n: ");
533         getline(rplc_str,128);
534
535         fp=fopen(filename,"r+");
536         if (fp==NULL) return;
537
538         wpos=startpos;
539         fseek(fp,startpos,0);
540         strcpy(buf,"");
541         while (a=getc(fp), a>0) {
542                 ++msglen;
543                 buf[strlen(buf)+1] = 0;
544                 buf[strlen(buf)] = a;
545                 if ( strlen(buf) >= strlen(srch_str) ) {
546                         ptr=&buf[strlen(buf)-strlen(srch_str)];
547                         if (!struncmp(ptr,srch_str,strlen(srch_str))) {
548                                 strcpy(ptr,rplc_str);
549                                 ++substitutions;
550                                 }
551                         }
552                 if (strlen(buf)>384) {
553                         rpos=ftell(fp);
554                         fseek(fp,wpos,0);
555                         fwrite((char *)buf,128,1,fp);
556                         strcpy(buf,&buf[128]);
557                         wpos = ftell(fp);
558                         fseek(fp,rpos,0);
559                         }
560                 }
561         fseek(fp,wpos,0);
562         if (strlen(buf)>0) fwrite((char *)buf,strlen(buf),1,fp);
563         putc(0,fp);
564         fclose(fp);
565         printf("<R>eplace made %d substitution(s).\n\n",substitutions);
566         }
567
568
569 int make_message(char *filename,        /* temporary file name */
570                 char *recipient,        /* NULL if it's not mail */
571                 int anon_type,          /* see MES_ types in header file */
572                 int format_type,
573                 int mode)
574
575         FILE *fp;
576         int a,b,e_ex_code;
577         time_t now;
578         long beg;
579         char datestr[64];
580         int cksum = 0;
581
582         if (mode==2) if (strlen(editor_path)==0) {
583                 printf("*** No editor available, using built-in editor\n");
584                 mode=0;
585                 }
586
587         time(&now);
588         strcpy(datestr,asctime(localtime(&now)));
589         datestr[strlen(datestr)-1] = 0;
590
591         if (room_flags & QR_ANONONLY) {
592                 printf(" ****");
593                 }
594         else {
595                 printf(" %s from %s",datestr,fullname);
596                 if (strlen(recipient)>0) printf(" to %s",recipient);
597                 }
598         printf("\n");
599
600         beg = 0L;
601
602         if (mode==1) printf("(Press ctrl-d when finished)\n");
603         if (mode==0) {
604                 fp=fopen(filename,"r");
605                 if (fp!=NULL) {
606                         fmout(screenwidth,fp,0,screenheight,0,0);
607                         beg = ftell(fp);
608                         fclose(fp);
609                         }
610                 else {
611                         fp=fopen(filename,"w");
612                         fclose(fp);
613                         }
614                 }
615
616 ME1:    switch(mode) {
617
618            case 0:
619                 fp=fopen(filename,"r+");
620                 citedit(fp, beg);
621                 fclose(fp);
622                 goto MECR;
623
624            case 1:
625                 fp=fopen(filename,"w");
626                 do {
627                         a=inkey(); if (a==255) a=32;
628                         if (a==13) a=10;
629                         if (a!=4) {
630                                 putc(a,fp);
631                                 putc(a,stdout);
632                                 }
633                         if (a==10) putc(13,stdout);
634                         } while(a!=4);
635                 fclose(fp);
636                 break;
637
638            case 2:
639                 e_ex_code = 1;  /* start with a failed exit code */
640                 editor_pid=fork();
641                 cksum = file_checksum(filename);
642                 if (editor_pid==0) {
643                         chmod(filename,0600);
644                         sttybbs(SB_RESTORE);
645                         execlp(editor_path,editor_path,filename,NULL);
646                         exit(1);
647                         }
648                 if (editor_pid>0) do {
649                         e_ex_code = 0;
650                         b=ka_wait(&e_ex_code);
651                         } while((b!=editor_pid)&&(b>=0));
652                 editor_pid = (-1);
653                 sttybbs(0);
654                 break;
655                 }
656
657 MECR:   if (mode==2) {
658                 if (file_checksum(filename) == cksum) {
659                         printf("*** Aborted message.\n");
660                         e_ex_code = 1;
661                         }
662                 if (e_ex_code==0) goto MEFIN;
663                 goto MEABT2;
664                 }
665 MECR1:  printf("Entry cmd (? for options) -> ");
666 MECR2:  b=inkey();
667         if (b==NEXT_KEY) b='n';
668         if (b==STOP_KEY) b='s';
669         b=(b&127); b=tolower(b);
670         if (b=='?') {
671                 printf("Help\n");
672                 formout("saveopt");
673                 goto MECR1;
674                 }
675         if (b=='a') { printf("Abort\n");        goto MEABT;     }
676         if (b=='c') { printf("Continue\n");     goto ME1;       }
677         if (b=='s') { printf("Save message\n"); goto MEFIN;     } 
678         if (b=='p') {
679                 printf("Print formatted\n");
680                 printf(" %s from %s",datestr,fullname);
681                 if (strlen(recipient)>0) printf(" to %s",recipient);
682                 printf("\n");
683                 fp=fopen(filename,"r");
684                 if (fp!=NULL) {
685                         fmout(screenwidth,fp,
686                                 ((userflags & US_PAGINATOR) ? 1 : 0),
687                                 screenheight,0,0);
688                         beg = ftell(fp);
689                         fclose(fp);
690                         }
691                 goto MECR;
692                 }
693         if (b=='r') {
694                 printf("Replace string\n");
695                 replace_string(filename,0L);
696                 goto MECR;
697                 }
698         if (b=='h') {
699                 printf("Hold message\n");
700                 return(2);
701                 }
702         goto MECR2;
703
704 MEFIN:  return(0);
705
706 MEABT:  printf("Are you sure? ");
707         if (yesno()==0) goto ME1;
708 MEABT2: unlink(filename);
709         return(2);
710         }
711
712 /*
713  * transmit message text to the server
714  */
715 void transmit_message(FILE *fp)
716 {
717         char buf[256];
718         int ch,a;
719         long msglen;
720         time_t lasttick;
721
722         fseek(fp, 0L, SEEK_END);
723         msglen = ftell(fp);
724         rewind(fp);
725         lasttick = time(NULL);
726         strcpy(buf,"");
727         while (ch=getc(fp), (ch>=0)) {
728                 if (ch==10) {
729                         if (!strcmp(buf,"000")) strcpy(buf,">000");
730                         serv_puts(buf);
731                         strcpy(buf,"");
732                         }
733                 else {
734                         a = strlen(buf);
735                         buf[a+1] = 0;
736                         buf[a] = ch;
737                         if ((ch==32)&&(strlen(buf)>200)) {
738                                 buf[a]=0;
739                                 if (!strcmp(buf,"000")) strcpy(buf,">000");
740                                 serv_puts(buf);
741                                 strcpy(buf,"");
742                                 }
743                         if (strlen(buf)>250) {
744                                 if (!strcmp(buf,"000")) strcpy(buf,">000");
745                                 serv_puts(buf);
746                                 strcpy(buf,"");
747                                 }
748                         }
749
750                 if ( (time(NULL) - lasttick) > 2L ) {
751                         printf(" %3ld%% completed\r",
752                                 ((ftell(fp) * 100L) / msglen) );
753                         fflush(stdout);
754                         lasttick = time(NULL);
755                         }
756
757                 }
758         serv_puts(buf);
759         printf("                \r");
760         fflush(stdout);
761         }
762
763
764
765 /*
766  * entmsg()  -  edit and create a message
767  *              returns 0 if message was saved
768  */
769 int entmsg(int is_reply, int c)
770                         /* nonzero if this was a <R>eply command */
771        {                /* */
772         char buf[300];
773         char cmd[256];
774         int a,b;
775         int need_recp = 0;
776         int mode;
777         long highmsg;
778         FILE *fp;
779
780         if (c>0) mode=1;
781         else mode=0;
782
783         sprintf(cmd,"ENT0 0||0|%d",mode);
784         serv_puts(cmd);
785         serv_gets(cmd);
786
787         if ((strncmp(cmd,"570",3)) && (strncmp(cmd,"200",3))) {
788                 printf("%s\n",&cmd[4]);
789                 return(1);
790                 }
791         need_recp = 0;
792         if (!strncmp(cmd,"570",3)) need_recp = 1;
793
794         if ((userflags & US_EXPERT) == 0) formout("entermsg");
795                 
796         strcpy(buf,"");
797         if (need_recp==1) {
798                 if (axlevel>=2) {
799                         if (is_reply) {
800                                 strcpy(buf,reply_to);
801                                 }
802                         else {
803                                 printf("Enter recipient: ");
804                                 getline(buf, 60);
805                                 if (strlen(buf)==0) return(1);
806                                 }
807                         }
808                 else strcpy(buf,"sysop");
809                 }
810
811         b=0;
812         if (room_flags&QR_ANONOPT) {
813                 printf("Anonymous (Y/N)? ");
814                 if (yesno()==1) b=1;
815                 }
816
817 /* if it's mail, we've got to check the validity of the recipient... */
818         if (strlen(buf)>0) {
819                 sprintf(cmd,"ENT0 0|%s|%d|%d",buf,b,mode);
820                 serv_puts(cmd);
821                 serv_gets(cmd);
822                 if (cmd[0]!='2') {
823                         printf("%s\n",&cmd[4]);
824                         return(1);
825                         }
826                 }
827
828 /* learn the number of the newest message in in the room, so we can tell
829  * upon saving whether someone else has posted too
830  */
831         num_msgs = 0;
832         serv_puts("MSGS LAST|1");
833         serv_gets(cmd);
834         if (cmd[0]!='1') {
835                 printf("%s\n",&cmd[5]);
836                 }
837         else {
838                 while (serv_gets(cmd), strcmp(cmd,"000")) {
839                         msg_arr[num_msgs++] = atol(cmd);
840                         }
841                 }
842
843 /* now put together the message */
844         if ( make_message(temp,buf,b,0,c) != 0 ) return(2);
845
846 /* and send it to the server */
847         sprintf(cmd,"ENT0 1|%s|%d|%d||",buf,b,mode);
848         serv_puts(cmd);
849         serv_gets(cmd);
850         if (cmd[0]!='4') {
851                 printf("%s\n",&cmd[4]);
852                 return(1);
853                 }
854         fp=fopen(temp,"r");
855         if (fp!=NULL) {
856                 transmit_message(fp);
857                 fclose(fp);
858                 }
859         serv_puts("000");
860         unlink(temp);
861         
862         highmsg = msg_arr[num_msgs - 1];
863         num_msgs = 0;
864         serv_puts("MSGS NEW");
865         serv_gets(cmd);
866         if (cmd[0]!='1') {
867                 printf("%s\n",&cmd[5]);
868                 }
869         else {
870                 while (serv_gets(cmd), strcmp(cmd,"000")) {
871                         msg_arr[num_msgs++] = atol(cmd);
872                         }
873                 }
874
875         /* get new highest message number in room to set lrp for goto... */
876         maxmsgnum = msg_arr[num_msgs - 1];
877
878         /* now see if anyone else has posted in here */
879         b=(-1);
880         for (a=0; a<num_msgs; ++a) if (msg_arr[a]>highmsg) ++b;
881
882         /* in the Mail> room, this algorithm always counts one message
883          * higher than in public rooms, so we decrement it by one */
884         if (need_recp) --b;
885
886         if (b==1) printf(
887 "*** 1 additional message has been entered in this room by another user.\n");
888         if (b>1) printf(
889 "*** %d additional messages have been entered in this room by other users.\n",b);
890
891         return(0);
892         }
893
894 void process_quote(void) {      /* do editing on quoted file */
895 FILE *qfile,*tfile;
896 char buf[128];
897 int line,qstart,qend;
898
899         /* Unlink the second temp file as soon as it's opened, so it'll get
900          * deleted even if the program dies
901          */
902         qfile = fopen(temp2,"r");
903         unlink(temp2);
904
905         /* Display the quotable text with line numbers added */
906         line = 0;
907         fgets(buf,128,qfile);
908         while (fgets(buf,128,qfile)!=NULL) {
909                 printf("%2d %s",++line,buf);
910                 }
911         printf("Begin quoting at [ 1] : ");
912         getline(buf,3);
913         qstart = (buf[0]==0) ? (1) : atoi(buf);
914         printf("  End quoting at [%d] : ",line);
915         getline(buf,3);
916         qend = (buf[0]==0) ? (line) : atoi(buf);
917         rewind(qfile);
918         line=0;
919         fgets(buf,128,qfile);
920         tfile=fopen(temp,"w");
921         while(fgets(buf,128,qfile)!=NULL) {
922                 if ((++line>=qstart)&&(line<=qend)) fprintf(tfile," >%s",buf);
923                 }
924         fprintf(tfile," \n");
925         fclose(qfile);
926         fclose(tfile);
927         chmod(temp,0666);
928         }
929
930
931
932 /*
933  * List the URL's which were embedded in the previous message
934  */
935 void list_urls() {
936         int i;
937         char cmd[256];
938
939         if (num_urls == 0) {
940                 printf("There were no URL's in the previous message.\n\n");
941                 return;
942         }
943
944         for (i=0; i<num_urls; ++i) {
945                 printf("%3d %s\n", i+1, urls[i]);
946         }
947
948         if((i = num_urls) != 1)
949                 i = intprompt("Display which one", 1, 1, num_urls);
950
951         sprintf(cmd, rc_url_cmd, urls[i-1]);
952         system(cmd);
953         printf("\n");
954 }
955
956
957 void readmsgs(int c, int rdir, int q)   /* read contents of a room */
958                 /* 0=Read all  1=Read new  2=Read old 3=Read last q */
959                 /* 1=Forward (-1)=Reverse */
960                 /* Number of msgs to read (if c==3) */
961         {
962         int a,b,e,f,g,start;
963         int hold_sw = 0;
964         char arcflag = 0;
965         char quotflag = 0;
966         int hold_color = 0;
967         char prtfile[PATH_MAX];
968         char pagin;
969         char cmd[256];
970         char targ[ROOMNAMELEN];
971         char filename[256];
972
973         signal(SIGINT,SIG_IGN);
974         signal(SIGQUIT,SIG_IGN);
975
976         if (c<0) b=(MAXMSGS-1);
977         else b=0;
978
979         sprintf(prtfile, tmpnam(NULL));
980
981         num_msgs = 0;
982         strcpy(cmd,"MSGS ");
983         switch(c) {
984                 case 0: strcat(cmd,"ALL");
985                         break;
986                 case 1: strcat(cmd,"NEW");
987                         break;
988                 case 2: strcat(cmd,"OLD");
989                         break;
990                 case 3: sprintf(&cmd[strlen(cmd)], "LAST|%d", q);
991                         break;
992                 }
993         serv_puts(cmd);
994         serv_gets(cmd);
995         if (cmd[0]!='1') {
996                 printf("%s\n",&cmd[5]);
997                 }
998         else {
999                 while (serv_gets(cmd), strcmp(cmd,"000")) {
1000                         if (num_msgs == MAXMSGS) {
1001                                 memcpy(&msg_arr[0], &msg_arr[1],
1002                                         (sizeof(long) * (MAXMSGS - 1)) );
1003                                 --num_msgs;
1004                                 }
1005                         msg_arr[num_msgs++] = atol(cmd);
1006                         }
1007                 }
1008
1009         lines_printed = 0;
1010
1011         /* this loop cycles through each message... */
1012         start = ( (rdir==1) ? 0 : (num_msgs-1) );
1013         for (a=start; ((a<num_msgs)&&(a>=0)); a=a+rdir) {
1014                 while (msg_arr[a]==0L) {
1015                         a=a+rdir; if ((a==MAXMSGS)||(a==(-1))) return;
1016                         }
1017
1018 RAGAIN:         pagin=((arcflag==0)&&(quotflag==0)&&
1019                         (userflags & US_PAGINATOR)) ? 1 : 0;
1020
1021         /* If we're doing a quote, set the screenwidth to 72 temporarily */
1022                 if (quotflag) {
1023                         hold_sw = screenwidth;
1024                         screenwidth = 72;
1025                         }
1026
1027         /* If printing or archiving, set the screenwidth to 80 temporarily */
1028                 if (arcflag) {
1029                         hold_sw = screenwidth;
1030                         screenwidth = 80;
1031                         }
1032
1033         /* now read the message... */
1034                 e=read_message(msg_arr[a],pagin);
1035
1036         /* ...and set the screenwidth back if we have to */
1037                 if ((quotflag)||(arcflag)) {
1038                         screenwidth = hold_sw;
1039                         }
1040 RMSGREAD:       fflush(stdout);
1041                 highest_msg_read = msg_arr[a];
1042                 if (quotflag) {
1043                         freopen("/dev/tty","r+",stdout);
1044                         quotflag=0;
1045                         enable_color = hold_color;
1046                         process_quote();
1047                         }
1048                 if (arcflag) {
1049                         freopen("/dev/tty","r+",stdout);
1050                         arcflag=0;
1051                         enable_color = hold_color;
1052                         f=fork();
1053                         if (f==0) {
1054                                 freopen(prtfile, "r", stdin);
1055                                 sttybbs(SB_RESTORE);
1056                                 ka_system(printcmd);
1057                                 sttybbs(SB_NO_INTR);
1058                                 unlink(prtfile);
1059                                 exit(0);
1060                                 }
1061                         if (f>0) do {
1062                                 g=wait(NULL);
1063                                 } while((g!=f)&&(g>=0));
1064                         printf("Message printed.\n");
1065                         }
1066                 if (e==3) return;
1067                 if ( ((userflags&US_NOPROMPT)||(e==2)) 
1068                    && (((room_flags&QR_MAILBOX)==0)
1069                      ||(rc_force_mail_prompts==0))  ) {
1070                         e='n';
1071                         }
1072                 else {
1073                         color(DIM_WHITE);
1074                         printf("(");
1075                         color(BRIGHT_WHITE);
1076                         printf("%d",num_msgs-a-1);
1077                         color(DIM_WHITE);
1078                         printf(") ");
1079
1080                         if (is_mail==1) keyopt("<R>eply ");
1081                         keyopt("<B>ack <A>gain <Q>uote <N>ext <S>top ");
1082                         if (rc_url_cmd[0] && num_urls) keyopt("<U>RL View ");
1083                         keyopt("<?>Help/others -> ");
1084                         
1085                         do {
1086                                 lines_printed = 2;
1087                                 e=(inkey()&127); e=tolower(e);
1088 /* return key same as <N> */    if (e==13) e='n';
1089 /* space key same as <N> */     if (e==32) e='n';
1090 /* del/move for aides only */   if ((!is_room_aide)
1091                                     &&((room_flags&QR_MAILBOX)==0)) {
1092                                         if ((e=='d')||(e=='m')||(e=='c')) e=0;
1093                                         }
1094 /* print only if available */   if ((e=='p')&&(strlen(printcmd)==0)) e=0;
1095 /* can't reply in public rms */ if ((e=='r')&&(is_mail!=1)) e=0;
1096 /* can't file if not allowed */ if ((e=='f')&&(rc_allow_attachments==0)) e=0;
1097 /* link only if browser avail*/ if ((e=='u')&&(strlen(rc_url_cmd)==0)) e=0;
1098                                 } while((e!='a')&&(e!='n')&&(e!='s')
1099                                         &&(e!='d')&&(e!='m')&&(e!='p')
1100                                         &&(e!='q')&&(e!='b')&&(e!='h')
1101                                         &&(e!='r')&&(e!='f')&&(e!='?')
1102                                         &&(e!='u')&&(e!='c'));
1103                         switch(e) {
1104                                 case 's':       printf("Stop\r");       break;
1105                                 case 'a':       printf("Again\r");      break;
1106                                 case 'd':       printf("Delete\r");     break;
1107                                 case 'm':       printf("Move\r");       break;
1108                                 case 'c':       printf("Copy\r");       break;
1109                                 case 'n':       printf("Next\r");       break;
1110                                 case 'p':       printf("Print\r");      break;
1111                                 case 'q':       printf("Quote\r");      break;
1112                                 case 'b':       printf("Back\r");       break;
1113                                 case 'h':       printf("Header\r");     break;
1114                                 case 'r':       printf("Reply\r");      break;
1115                                 case 'f':       printf("File\r");       break;
1116                                 case 'u':       printf("URL's\r");      break;
1117                                 case '?':       printf("? <help>\r");   break;
1118                                 }
1119                         if (userflags & US_DISAPPEAR)
1120                                 printf("\r%79s\r","");
1121                         else
1122                                 printf("\n");
1123                         fflush(stdout);
1124                         }
1125                 switch(e) {
1126                    case '?':    printf("Options available here:\n");
1127                                 printf(" ?  Help (prints this message)\n");
1128                                 printf(" S  Stop reading immediately\n");
1129                                 printf(" A  Again (repeats last message)\n");
1130                                 printf(" N  Next (continue with next message)\n");
1131                                 printf(" B  Back (go back to previous message)\n");
1132                                 if ((is_room_aide)
1133                                     ||(room_flags&QR_MAILBOX)) {
1134                                         printf(" D  Delete this message\n");
1135                                         printf(" M  Move message to another room\n");
1136                                         printf(" C  Copy message to another room\n");
1137                                         }
1138                                 if (strlen(printcmd)>0)
1139                                         printf(" P  Print this message\n");
1140                                 printf(" Q  Quote portions of this message for your next post\n");
1141                                 printf(" H  Headers (display message headers only)\n");
1142                                 if (is_mail)
1143                                         printf(" R  Reply to this message\n");
1144                                 if (rc_allow_attachments)
1145                                         printf(" F  (save attachments to a file)\n");
1146                                 if (strlen(rc_url_cmd)>0)
1147                                         printf(" U  (list URL's for display)\n");
1148                                 printf("\n");
1149                                 goto RMSGREAD;
1150                    case 'p':    fflush(stdout);
1151                                 freopen(prtfile,"w",stdout);
1152                                 arcflag = 1;
1153                                 hold_color = enable_color;
1154                                 enable_color = 0;
1155                                 goto RAGAIN;
1156                    case 'q':    fflush(stdout);
1157                                 freopen(temp2,"w",stdout);
1158                                 quotflag = 1;
1159                                 hold_color = enable_color;
1160                                 enable_color = 0;
1161                                 goto RAGAIN;
1162                    case 's':    return;
1163                    case 'a':    goto RAGAIN;
1164                    case 'b':    a=a-(rdir*2);
1165                                 break;
1166                    case 'm':
1167                    case 'c':
1168                                 newprompt("Enter target room: ",
1169                                         targ,ROOMNAMELEN-1);
1170                                 if (strlen(targ)>0) {
1171                                         sprintf(cmd,"MOVE %ld|%s|%d",
1172                                                 msg_arr[a],targ,
1173                                                 (e=='c' ? 1 : 0) );
1174                                         serv_puts(cmd);
1175                                         serv_gets(cmd);
1176                                         printf("%s\n",&cmd[4]);
1177                                         if (cmd[0]=='2') msg_arr[a]=0L;
1178                                         }
1179                                 else {
1180                                         goto RMSGREAD;
1181                                         }
1182                                 if (cmd[0]!='2') goto RMSGREAD;
1183                                 break;
1184                    case 'f':    newprompt("Which section? ", filename,
1185                                         ((sizeof filename) -1));
1186                                 snprintf(cmd, sizeof cmd,
1187                                         "OPNA %ld|%s", msg_arr[a], filename);
1188                                 serv_puts(cmd);
1189                                 serv_gets(cmd);
1190                                 if (cmd[0]=='2') {
1191                                         extract(filename, &cmd[4], 2);
1192                                         download_to_local_disk(filename,
1193                                                 extract_int(&cmd[4], 0));
1194                                         }
1195                                 else {
1196                                         printf("%s\n",&cmd[4]);
1197                                         }
1198                                 goto RMSGREAD;
1199                    case 'd':    printf("*** Delete this message? ");
1200                                 if (yesno()==1) {
1201                                         sprintf(cmd,"DELE %ld",msg_arr[a]);
1202                                         serv_puts(cmd);
1203                                         serv_gets(cmd);
1204                                         printf("%s\n",&cmd[4]);
1205                                         if (cmd[0]=='2') msg_arr[a]=0L;
1206                                         }
1207                                 else {
1208                                         goto RMSGREAD;
1209                                         }
1210                                 break;
1211                    case 'h':    read_message(msg_arr[a],READ_HEADER);
1212                                 goto RMSGREAD;
1213                    case 'r':    entmsg(1,(DEFAULT_ENTRY==46 ? 2 : 0));
1214                                 goto RMSGREAD;
1215                    case 'u':    list_urls();
1216                                 goto RMSGREAD;
1217                         }
1218                 } /* end for loop */
1219         } /* end read routine */
1220
1221
1222
1223
1224 /*
1225  * View and edit a system message
1226  */
1227 void edit_system_message(char *which_message)
1228 {
1229         char desc[64];
1230         char read_cmd[64];
1231         char write_cmd[64];
1232
1233         sprintf(desc, "system message '%s'", which_message);
1234         sprintf(read_cmd, "MESG %s", which_message);
1235         sprintf(write_cmd, "EMSG %s", which_message);
1236         do_edit(desc, read_cmd, "NOOP", write_cmd);
1237         }