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