]> code.citadel.org Git - citadel.git/blob - citadel/messages.c
* Completed 'fsck'-like reference count verifier (server and client)
[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         int have_rfca = 0;
346
347         sigcaught = 0;
348         sttybbs(1);
349
350         sprintf(buf,"MSG0 %ld|%d",num,(pagin==READ_HEADER ? 1 : 0));
351         serv_puts(buf);
352         serv_gets(buf);
353         if (buf[0]!='1') {
354                 printf("*** msg #%ld: %s\n",num,buf);
355                 ++lines_printed;
356                 lines_printed = checkpagin(lines_printed,pagin,screenheight);
357                 sttybbs(0);
358                 return(0);
359                 }
360
361         strcpy(m_subject,"");
362         strcpy(reply_to, "nobody ... xxxxx");
363         printf("\n");
364         ++lines_printed;
365         lines_printed = checkpagin(lines_printed,pagin,screenheight);
366         printf(" ");
367         if (pagin == 1) color(BRIGHT_CYAN);
368
369         if (pagin==2) {
370                 while(serv_gets(buf), strcmp(buf,"000")) {
371                         if (buf[4]=='=') {
372                                 printf("%s\n",buf);
373                                 ++lines_printed;
374                                 lines_printed = 
375                                         checkpagin(lines_printed,
376                                                 pagin,screenheight);
377                                 }
378                         }
379                 sttybbs(0);
380                 return(0);
381                 }
382
383         while(serv_gets(buf), struncmp(buf,"text",4)) {
384                 if (!struncmp(buf,"nhdr=yes",8)) nhdr=1;
385                 if (!struncmp(buf,"from=",5)) {
386                         strcpy(from,&buf[5]);
387                         }
388                 if (nhdr==1) buf[0]='_';
389                 if (!struncmp(buf,"type=",5))
390                         format_type=atoi(&buf[5]);
391                 if ((!struncmp(buf,"msgn=",5))&&(rc_display_message_numbers)) {
392                         color(DIM_WHITE);
393                         printf("[");
394                         color(BRIGHT_WHITE);
395                         printf("#%s",&buf[5]);
396                         color(DIM_WHITE);
397                         printf("] ");
398                         }
399                 if (!struncmp(buf,"from=",5)) {
400                         color(DIM_WHITE);
401                         printf("from ");
402                         color(BRIGHT_CYAN);
403                         printf("%s ",&buf[5]);
404                         }
405                 if (!struncmp(buf,"subj=",5))
406                         strcpy(m_subject,&buf[5]);
407
408                 if (!struncmp(buf,"rfca=",5)) {
409                         strcpy(reply_to, &buf[5]);
410                         have_rfca = 1;
411                         color(DIM_WHITE);
412                         printf("<");
413                         color(BRIGHT_BLUE);
414                         printf("%s",&buf[5]);
415                         color(DIM_WHITE);
416                         printf("> ");
417                         }
418                 if ((!struncmp(buf,"hnod=",5)) 
419                    && (strucmp(&buf[5],serv_info.serv_humannode))
420                    && (have_rfca == 0) ) {
421                         color(DIM_WHITE);
422                         printf("(");
423                         color(BRIGHT_WHITE);
424                         printf("%s",&buf[5]);
425                         color(DIM_WHITE);
426                         printf(") ");
427                         }
428                 if ((!struncmp(buf,"room=",5))
429                    && (strucmp(&buf[5],room_name)) 
430                    && (have_rfca == 0)) {
431                         color(DIM_WHITE);
432                         printf("in ");
433                         color(BRIGHT_MAGENTA);
434                         printf("%s> ",&buf[5]);
435                         }
436
437                 if (!struncmp(buf,"node=",5)) {
438                         if ( (room_flags&QR_NETWORK)
439                            || ((strucmp(&buf[5],serv_info.serv_nodename)
440                            &&(strucmp(&buf[5],serv_info.serv_fqdn)))) ) 
441                                 {
442                                 if (have_rfca == 0) {
443                                         color(DIM_WHITE);
444                                         printf("@");
445                                         color(BRIGHT_YELLOW);
446                                         printf("%s ",&buf[5]);
447                                 }
448                         }
449                         if (have_rfca == 0) {
450                          if ((!strucmp(&buf[5],serv_info.serv_nodename))
451                            ||(!strucmp(&buf[5],serv_info.serv_fqdn)))
452                                 {
453                                 strcpy(reply_to,from);
454                                 }
455                         }
456                         else {
457                                 sprintf(reply_to,"%s @ %s",from,&buf[5]);
458                                 }
459                         }
460
461                 if (!struncmp(buf,"rcpt=",5)) {
462                         color(DIM_WHITE);
463                         printf("to ");
464                         color(BRIGHT_CYAN);
465                         printf("%s ",&buf[5]);
466                         }
467                 if (!struncmp(buf,"time=",5)) {
468                         now=atol(&buf[5]);
469                         tm=(struct tm *)localtime(&now);
470                         strcpy(buf,asctime(tm)); buf[strlen(buf)-1]=0;
471                         strcpy(&buf[16],&buf[19]);
472                         color(BRIGHT_MAGENTA);
473                         printf("%s ",&buf[4]);
474                         }
475                 }
476
477         if (nhdr==1) {
478                 if (!is_room_aide) {
479                         printf(" ****");
480                         }
481                 else {
482                         printf(" %s",from);
483                         }
484                 }
485         printf("\n");
486         if (pagin == 1) color(BRIGHT_WHITE);
487         ++lines_printed;
488         lines_printed = checkpagin(lines_printed,pagin,screenheight);
489
490         if (strlen(m_subject)>0) {
491                 printf("Subject: %s\n",m_subject);
492                 ++lines_printed;
493                 lines_printed = checkpagin(lines_printed,pagin,screenheight);
494                 }
495
496         if (format_type == 0) {
497                 fr=fmout(screenwidth,NULL,
498                         ((pagin==1) ? 1 : 0),
499                         screenheight,(-1),1);
500                 }
501         else {
502                 while(serv_gets(buf), strcmp(buf,"000")) {
503                         if (sigcaught==0) {
504                                 printf("%s\n",buf);
505                                 lines_printed = lines_printed + 1 +
506                                         (strlen(buf)/screenwidth);
507                                 lines_printed =
508                                         checkpagin(lines_printed,pagin,screenheight);
509                                 }
510                         }
511                 fr = sigcaught;
512                 }
513         printf("\n");
514         ++lines_printed;
515         lines_printed = checkpagin(lines_printed,pagin,screenheight);
516
517         if (pagin == 1) color(DIM_WHITE);
518         sttybbs(0);
519         return(fr);
520         }
521
522 /*
523  * replace string function for the built-in editor
524  */
525 void replace_string(char *filename, long int startpos)
526 {
527         char buf[512];
528         char srch_str[128];
529         char rplc_str[128];
530         FILE *fp;
531         int a;
532         long rpos,wpos;
533         char *ptr;
534         int substitutions = 0;
535         long msglen = 0L;
536
537         printf("Enter text to be replaced:\n: ");
538         getline(srch_str,128);
539         if (strlen(srch_str)==0) return;
540         
541         printf("Enter text to replace it with:\n: ");
542         getline(rplc_str,128);
543
544         fp=fopen(filename,"r+");
545         if (fp==NULL) return;
546
547         wpos=startpos;
548         fseek(fp,startpos,0);
549         strcpy(buf,"");
550         while (a=getc(fp), a>0) {
551                 ++msglen;
552                 buf[strlen(buf)+1] = 0;
553                 buf[strlen(buf)] = a;
554                 if ( strlen(buf) >= strlen(srch_str) ) {
555                         ptr=&buf[strlen(buf)-strlen(srch_str)];
556                         if (!struncmp(ptr,srch_str,strlen(srch_str))) {
557                                 strcpy(ptr,rplc_str);
558                                 ++substitutions;
559                                 }
560                         }
561                 if (strlen(buf)>384) {
562                         rpos=ftell(fp);
563                         fseek(fp,wpos,0);
564                         fwrite((char *)buf,128,1,fp);
565                         strcpy(buf,&buf[128]);
566                         wpos = ftell(fp);
567                         fseek(fp,rpos,0);
568                         }
569                 }
570         fseek(fp,wpos,0);
571         if (strlen(buf)>0) fwrite((char *)buf,strlen(buf),1,fp);
572         putc(0,fp);
573         fclose(fp);
574         printf("<R>eplace made %d substitution(s).\n\n",substitutions);
575         }
576
577
578 int make_message(char *filename,        /* temporary file name */
579                 char *recipient,        /* NULL if it's not mail */
580                 int anon_type,          /* see MES_ types in header file */
581                 int format_type,
582                 int mode)
583
584         FILE *fp;
585         int a,b,e_ex_code;
586         time_t now;
587         long beg;
588         char datestr[64];
589         int cksum = 0;
590
591         if (mode==2) if (strlen(editor_path)==0) {
592                 printf("*** No editor available, using built-in editor\n");
593                 mode=0;
594                 }
595
596         time(&now);
597         strcpy(datestr,asctime(localtime(&now)));
598         datestr[strlen(datestr)-1] = 0;
599
600         if (room_flags & QR_ANONONLY) {
601                 printf(" ****");
602                 }
603         else {
604                 printf(" %s from %s",datestr,fullname);
605                 if (strlen(recipient)>0) printf(" to %s",recipient);
606                 }
607         printf("\n");
608
609         beg = 0L;
610
611         if (mode==1) printf("(Press ctrl-d when finished)\n");
612         if (mode==0) {
613                 fp=fopen(filename,"r");
614                 if (fp!=NULL) {
615                         fmout(screenwidth,fp,0,screenheight,0,0);
616                         beg = ftell(fp);
617                         fclose(fp);
618                         }
619                 else {
620                         fp=fopen(filename,"w");
621                         fclose(fp);
622                         }
623                 }
624
625 ME1:    switch(mode) {
626
627            case 0:
628                 fp=fopen(filename,"r+");
629                 citedit(fp, beg);
630                 fclose(fp);
631                 goto MECR;
632
633            case 1:
634                 fp=fopen(filename,"w");
635                 do {
636                         a=inkey(); if (a==255) a=32;
637                         if (a==13) a=10;
638                         if (a!=4) {
639                                 putc(a,fp);
640                                 putc(a,stdout);
641                                 }
642                         if (a==10) putc(13,stdout);
643                         } while(a!=4);
644                 fclose(fp);
645                 break;
646
647            case 2:
648                 e_ex_code = 1;  /* start with a failed exit code */
649                 editor_pid=fork();
650                 cksum = file_checksum(filename);
651                 if (editor_pid==0) {
652                         chmod(filename,0600);
653                         sttybbs(SB_RESTORE);
654                         execlp(editor_path,editor_path,filename,NULL);
655                         exit(1);
656                         }
657                 if (editor_pid>0) do {
658                         e_ex_code = 0;
659                         b=ka_wait(&e_ex_code);
660                         } while((b!=editor_pid)&&(b>=0));
661                 editor_pid = (-1);
662                 sttybbs(0);
663                 break;
664                 }
665
666 MECR:   if (mode==2) {
667                 if (file_checksum(filename) == cksum) {
668                         printf("*** Aborted message.\n");
669                         e_ex_code = 1;
670                         }
671                 if (e_ex_code==0) goto MEFIN;
672                 goto MEABT2;
673                 }
674
675         b = keymenu("Entry command (? for options)",
676                 "<A>bort|<C>ontinue|<S>ave message|<P>rint formatted|"
677                 "<R>eplace string|<H>old message");
678
679         if (b=='a') goto MEABT;
680         if (b=='c') goto ME1;
681         if (b=='s') goto MEFIN;
682         if (b=='p') {
683                 printf(" %s from %s",datestr,fullname);
684                 if (strlen(recipient)>0) printf(" to %s",recipient);
685                 printf("\n");
686                 fp=fopen(filename,"r");
687                 if (fp!=NULL) {
688                         fmout(screenwidth,fp,
689                                 ((userflags & US_PAGINATOR) ? 1 : 0),
690                                 screenheight,0,0);
691                         beg = ftell(fp);
692                         fclose(fp);
693                         }
694                 goto MECR;
695                 }
696         if (b=='r') {
697                 replace_string(filename,0L);
698                 goto MECR;
699                 }
700         if (b=='h') {
701                 return(2);
702                 }
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         }
1238
1239
1240
1241
1242 /*
1243  * Verify the message base
1244  */
1245 void check_message_base(void) {
1246         char buf[256];
1247
1248         printf("Please read the documentation before running this command.\n");
1249         printf("Having done so, do you still want to check the message base? ");
1250         if (yesno()==0) return;
1251
1252         serv_puts("FSCK");
1253         serv_gets(buf);
1254         if (buf[0] != '1') {
1255                 printf("%s\n", &buf[4]);
1256                 return;
1257         }
1258
1259         while (serv_gets(buf), strcmp(buf, "000")) {
1260                 printf("%s\n", buf);
1261         }
1262 }