msgs.c revision 1.21 1 1.21 plunky /* $NetBSD: msgs.c,v 1.21 2011/08/31 16:24:57 plunky Exp $ */
2 1.7 tls
3 1.1 cgd /*-
4 1.7 tls * Copyright (c) 1980, 1993
5 1.7 tls * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.18 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.10 lukem #include <sys/cdefs.h>
33 1.1 cgd #ifndef lint
34 1.19 lukem __COPYRIGHT("@(#) Copyright (c) 1980, 1993\
35 1.19 lukem The Regents of the University of California. All rights reserved.");
36 1.1 cgd #endif /* not lint */
37 1.1 cgd
38 1.1 cgd #ifndef lint
39 1.7 tls #if 0
40 1.7 tls static char sccsid[] = "@(#)msgs.c 8.2 (Berkeley) 4/28/95";
41 1.7 tls #else
42 1.21 plunky __RCSID("$NetBSD: msgs.c,v 1.21 2011/08/31 16:24:57 plunky Exp $");
43 1.7 tls #endif
44 1.1 cgd #endif /* not lint */
45 1.1 cgd
46 1.1 cgd /*
47 1.1 cgd * msgs - a user bulletin board program
48 1.1 cgd *
49 1.1 cgd * usage:
50 1.5 mycroft * msgs [fhlopqr] [[-]number] to read messages
51 1.1 cgd * msgs -s to place messages
52 1.1 cgd * msgs -c [-days] to clean up the bulletin board
53 1.1 cgd *
54 1.1 cgd * prompt commands are:
55 1.1 cgd * y print message
56 1.1 cgd * n flush message, go to next message
57 1.1 cgd * q flush message, quit
58 1.1 cgd * p print message, turn on 'pipe thru more' mode
59 1.1 cgd * P print message, turn off 'pipe thru more' mode
60 1.1 cgd * - reprint last message
61 1.1 cgd * s[-][<num>] [<filename>] save message
62 1.1 cgd * m[-][<num>] mail with message in temp mbox
63 1.1 cgd * x exit without flushing this message
64 1.1 cgd * <num> print message number <num>
65 1.1 cgd */
66 1.1 cgd
67 1.1 cgd #define V7 /* will look for TERM in the environment */
68 1.1 cgd #define OBJECT /* will object to messages without Subjects */
69 1.10 lukem #define REJECT /* will reject messages without Subjects
70 1.1 cgd (OBJECT must be defined also) */
71 1.10 lukem /*#define UNBUFFERED */ /* use unbuffered output */
72 1.1 cgd
73 1.1 cgd #include <sys/param.h>
74 1.7 tls #include <sys/ioctl.h>
75 1.1 cgd #include <sys/stat.h>
76 1.14 mrg
77 1.10 lukem #include <ctype.h>
78 1.4 jtc #include <dirent.h>
79 1.14 mrg #include <err.h>
80 1.1 cgd #include <errno.h>
81 1.1 cgd #include <pwd.h>
82 1.1 cgd #include <setjmp.h>
83 1.1 cgd #include <signal.h>
84 1.1 cgd #include <stdio.h>
85 1.1 cgd #include <stdlib.h>
86 1.1 cgd #include <string.h>
87 1.10 lukem #include <termcap.h>
88 1.7 tls #include <termios.h>
89 1.1 cgd #include <time.h>
90 1.6 cgd #include <unistd.h>
91 1.14 mrg
92 1.1 cgd #include "pathnames.h"
93 1.1 cgd
94 1.6 cgd #define CMODE 0664 /* bounds file creation mode */
95 1.1 cgd #define NO 0
96 1.1 cgd #define YES 1
97 1.1 cgd #define SUPERUSER 0 /* superuser uid */
98 1.1 cgd #define DAEMON 1 /* daemon uid */
99 1.1 cgd #define NLINES 24 /* default number of lines/crt screen */
100 1.1 cgd #define NDAYS 21 /* default keep time for messages */
101 1.1 cgd #define DAYS *24*60*60 /* seconds/day */
102 1.1 cgd #define MSGSRC ".msgsrc" /* user's rc file */
103 1.1 cgd #define BOUNDS "bounds" /* message bounds file */
104 1.1 cgd #define NEXT "Next message? [yq]"
105 1.1 cgd #define MORE "More? [ynq]"
106 1.1 cgd #define NOMORE "(No more) [q] ?"
107 1.1 cgd
108 1.1 cgd typedef char bool;
109 1.1 cgd
110 1.1 cgd FILE *msgsrc;
111 1.1 cgd FILE *newmsg;
112 1.20 lukem const char *sep = "-";
113 1.1 cgd char inbuf[BUFSIZ];
114 1.16 ad char fname[MAXPATHLEN];
115 1.16 ad char cmdbuf[MAXPATHLEN + 16];
116 1.1 cgd char subj[128];
117 1.1 cgd char from[128];
118 1.1 cgd char date[128];
119 1.1 cgd char *ptr;
120 1.1 cgd char *in;
121 1.1 cgd bool local;
122 1.1 cgd bool ruptible;
123 1.1 cgd bool totty;
124 1.1 cgd bool seenfrom;
125 1.1 cgd bool seensubj;
126 1.1 cgd bool blankline;
127 1.1 cgd bool printing = NO;
128 1.1 cgd bool mailing = NO;
129 1.1 cgd bool quitit = NO;
130 1.1 cgd bool sending = NO;
131 1.1 cgd bool intrpflg = NO;
132 1.7 tls bool restricted = NO;
133 1.1 cgd int uid;
134 1.1 cgd int msg;
135 1.1 cgd int prevmsg;
136 1.1 cgd int lct;
137 1.1 cgd int nlines;
138 1.1 cgd int Lpp = 0;
139 1.1 cgd time_t t;
140 1.1 cgd time_t keep;
141 1.1 cgd
142 1.20 lukem void ask __P((const char *));
143 1.10 lukem void gfrsub __P((FILE *));
144 1.10 lukem int linecnt __P((FILE *));
145 1.10 lukem int main __P((int, char *[]));
146 1.10 lukem int next __P((char *));
147 1.10 lukem char *nxtfld __P((char *));
148 1.10 lukem void onintr __P((int));
149 1.10 lukem void onsusp __P((int));
150 1.10 lukem void prmesg __P((int));
151 1.1 cgd
152 1.1 cgd /* option initialization */
153 1.1 cgd bool hdrs = NO;
154 1.1 cgd bool qopt = NO;
155 1.1 cgd bool hush = NO;
156 1.1 cgd bool send_msg = NO;
157 1.1 cgd bool locomode = NO;
158 1.1 cgd bool use_pager = NO;
159 1.1 cgd bool clean = NO;
160 1.1 cgd bool lastcmd = NO;
161 1.1 cgd jmp_buf tstpbuf;
162 1.1 cgd
163 1.10 lukem int
164 1.1 cgd main(argc, argv)
165 1.10 lukem int argc; char *argv[];
166 1.1 cgd {
167 1.1 cgd bool newrc, already;
168 1.1 cgd int rcfirst = 0; /* first message to print (from .rc) */
169 1.1 cgd int rcback = 0; /* amount to back off of rcfirst */
170 1.1 cgd int firstmsg, nextmsg, lastmsg = 0;
171 1.1 cgd int blast = 0;
172 1.1 cgd FILE *bounds;
173 1.12 mycroft struct passwd *pw;
174 1.1 cgd
175 1.1 cgd #ifdef UNBUFFERED
176 1.1 cgd setbuf(stdout, NULL);
177 1.1 cgd #endif
178 1.1 cgd
179 1.1 cgd time(&t);
180 1.1 cgd setuid(uid = getuid());
181 1.1 cgd ruptible = (signal(SIGINT, SIG_IGN) == SIG_DFL);
182 1.1 cgd if (ruptible)
183 1.1 cgd signal(SIGINT, SIG_DFL);
184 1.1 cgd
185 1.1 cgd argc--, argv++;
186 1.1 cgd while (argc > 0) {
187 1.13 christos if (isdigit((unsigned char)argv[0][0])) {/* starting message # */
188 1.1 cgd rcfirst = atoi(argv[0]);
189 1.1 cgd }
190 1.13 christos else if (isdigit((unsigned char)argv[0][1])) {/* backward offset */
191 1.1 cgd rcback = atoi( &( argv[0][1] ) );
192 1.1 cgd }
193 1.1 cgd else {
194 1.1 cgd ptr = *argv;
195 1.1 cgd while (*ptr) switch (*ptr++) {
196 1.1 cgd
197 1.1 cgd case '-':
198 1.1 cgd break;
199 1.1 cgd
200 1.1 cgd case 'c':
201 1.1 cgd if (uid != SUPERUSER && uid != DAEMON) {
202 1.1 cgd fprintf(stderr, "Sorry\n");
203 1.1 cgd exit(1);
204 1.1 cgd }
205 1.1 cgd clean = YES;
206 1.1 cgd break;
207 1.1 cgd
208 1.1 cgd case 'f': /* silently */
209 1.1 cgd hush = YES;
210 1.1 cgd break;
211 1.1 cgd
212 1.1 cgd case 'h': /* headers only */
213 1.1 cgd hdrs = YES;
214 1.1 cgd break;
215 1.1 cgd
216 1.1 cgd case 'l': /* local msgs only */
217 1.1 cgd locomode = YES;
218 1.1 cgd break;
219 1.1 cgd
220 1.1 cgd case 'o': /* option to save last message */
221 1.1 cgd lastcmd = YES;
222 1.1 cgd break;
223 1.1 cgd
224 1.1 cgd case 'p': /* pipe thru 'more' during long msgs */
225 1.1 cgd use_pager = YES;
226 1.1 cgd break;
227 1.1 cgd
228 1.1 cgd case 'q': /* query only */
229 1.1 cgd qopt = YES;
230 1.1 cgd break;
231 1.1 cgd
232 1.7 tls case 'r': /* restricted */
233 1.7 tls restricted = YES;
234 1.7 tls break;
235 1.8 pk
236 1.5 mycroft
237 1.1 cgd case 's': /* sending TO msgs */
238 1.1 cgd send_msg = YES;
239 1.1 cgd break;
240 1.1 cgd
241 1.1 cgd default:
242 1.1 cgd fprintf(stderr,
243 1.17 mjl "usage: msgs [cfhlopqrs] [[-]number]\n");
244 1.1 cgd exit(1);
245 1.1 cgd }
246 1.1 cgd }
247 1.1 cgd argc--, argv++;
248 1.1 cgd }
249 1.1 cgd
250 1.1 cgd /*
251 1.1 cgd * determine current message bounds
252 1.1 cgd */
253 1.16 ad snprintf(fname, sizeof (fname), "%s/%s", _PATH_MSGS, BOUNDS);
254 1.1 cgd bounds = fopen(fname, "r");
255 1.1 cgd
256 1.1 cgd if (bounds != NULL) {
257 1.9 phil if (fscanf(bounds, "%d %d\n", &firstmsg, &lastmsg) < 2)
258 1.9 phil firstmsg = lastmsg = 0;
259 1.1 cgd fclose(bounds);
260 1.1 cgd blast = lastmsg; /* save upper bound */
261 1.1 cgd }
262 1.1 cgd
263 1.1 cgd if (clean)
264 1.1 cgd keep = t - (rcback? rcback : NDAYS) DAYS;
265 1.1 cgd
266 1.1 cgd if (clean || bounds == NULL) { /* relocate message bounds */
267 1.4 jtc struct dirent *dp;
268 1.1 cgd struct stat stbuf;
269 1.1 cgd bool seenany = NO;
270 1.1 cgd DIR *dirp;
271 1.1 cgd
272 1.1 cgd dirp = opendir(_PATH_MSGS);
273 1.1 cgd if (dirp == NULL) {
274 1.1 cgd perror(_PATH_MSGS);
275 1.1 cgd exit(errno);
276 1.1 cgd }
277 1.7 tls chmod(fname, CMODE);
278 1.1 cgd
279 1.1 cgd firstmsg = 32767;
280 1.1 cgd lastmsg = 0;
281 1.1 cgd
282 1.1 cgd for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp)){
283 1.11 lukem char *cp = dp->d_name;
284 1.11 lukem int i = 0;
285 1.1 cgd
286 1.1 cgd if (dp->d_ino == 0)
287 1.1 cgd continue;
288 1.13 christos #ifndef __SVR4
289 1.1 cgd if (dp->d_namlen == 0)
290 1.1 cgd continue;
291 1.13 christos #endif
292 1.1 cgd
293 1.1 cgd if (clean)
294 1.16 ad snprintf(inbuf, sizeof (inbuf), "%s/%s",
295 1.16 ad _PATH_MSGS, cp);
296 1.1 cgd
297 1.13 christos while (isdigit((unsigned char)*cp))
298 1.1 cgd i = i * 10 + *cp++ - '0';
299 1.1 cgd if (*cp)
300 1.1 cgd continue; /* not a message! */
301 1.1 cgd
302 1.1 cgd if (clean) {
303 1.1 cgd if (stat(inbuf, &stbuf) != 0)
304 1.1 cgd continue;
305 1.1 cgd if (stbuf.st_mtime < keep
306 1.1 cgd && stbuf.st_mode&S_IWRITE) {
307 1.1 cgd unlink(inbuf);
308 1.1 cgd continue;
309 1.1 cgd }
310 1.1 cgd }
311 1.1 cgd
312 1.1 cgd if (i > lastmsg)
313 1.1 cgd lastmsg = i;
314 1.1 cgd if (i < firstmsg)
315 1.1 cgd firstmsg = i;
316 1.1 cgd seenany = YES;
317 1.1 cgd }
318 1.1 cgd closedir(dirp);
319 1.1 cgd
320 1.1 cgd if (!seenany) {
321 1.1 cgd if (blast != 0) /* never lower the upper bound! */
322 1.1 cgd lastmsg = blast;
323 1.1 cgd firstmsg = lastmsg + 1;
324 1.1 cgd }
325 1.1 cgd else if (blast > lastmsg)
326 1.1 cgd lastmsg = blast;
327 1.1 cgd
328 1.1 cgd if (!send_msg) {
329 1.1 cgd bounds = fopen(fname, "w");
330 1.1 cgd if (bounds == NULL) {
331 1.1 cgd perror(fname);
332 1.1 cgd exit(errno);
333 1.1 cgd }
334 1.1 cgd chmod(fname, CMODE);
335 1.1 cgd fprintf(bounds, "%d %d\n", firstmsg, lastmsg);
336 1.1 cgd fclose(bounds);
337 1.1 cgd }
338 1.1 cgd }
339 1.1 cgd
340 1.1 cgd if (send_msg) {
341 1.1 cgd /*
342 1.1 cgd * Send mode - place msgs in _PATH_MSGS
343 1.1 cgd */
344 1.1 cgd bounds = fopen(fname, "w");
345 1.1 cgd if (bounds == NULL) {
346 1.1 cgd perror(fname);
347 1.1 cgd exit(errno);
348 1.1 cgd }
349 1.1 cgd
350 1.1 cgd nextmsg = lastmsg + 1;
351 1.16 ad snprintf(fname, sizeof (fname), "%s/%d", _PATH_MSGS, nextmsg);
352 1.1 cgd newmsg = fopen(fname, "w");
353 1.1 cgd if (newmsg == NULL) {
354 1.1 cgd perror(fname);
355 1.1 cgd exit(errno);
356 1.1 cgd }
357 1.1 cgd chmod(fname, 0644);
358 1.1 cgd
359 1.1 cgd fprintf(bounds, "%d %d\n", firstmsg, nextmsg);
360 1.1 cgd fclose(bounds);
361 1.1 cgd
362 1.1 cgd sending = YES;
363 1.1 cgd if (ruptible)
364 1.1 cgd signal(SIGINT, onintr);
365 1.1 cgd
366 1.1 cgd if (isatty(fileno(stdin))) {
367 1.12 mycroft pw = getpwuid(uid);
368 1.12 mycroft if (!pw) {
369 1.12 mycroft fprintf(stderr, "Who are you?\n");
370 1.12 mycroft exit(1);
371 1.12 mycroft }
372 1.1 cgd printf("Message %d:\nFrom %s %sSubject: ",
373 1.12 mycroft nextmsg, pw->pw_name, ctime(&t));
374 1.1 cgd fflush(stdout);
375 1.1 cgd fgets(inbuf, sizeof inbuf, stdin);
376 1.1 cgd putchar('\n');
377 1.1 cgd fflush(stdout);
378 1.1 cgd fprintf(newmsg, "From %s %sSubject: %s\n",
379 1.1 cgd ptr, ctime(&t), inbuf);
380 1.1 cgd blankline = seensubj = YES;
381 1.1 cgd }
382 1.1 cgd else
383 1.1 cgd blankline = seensubj = NO;
384 1.1 cgd for (;;) {
385 1.1 cgd fgets(inbuf, sizeof inbuf, stdin);
386 1.1 cgd if (feof(stdin) || ferror(stdin))
387 1.1 cgd break;
388 1.1 cgd blankline = (blankline || (inbuf[0] == '\n'));
389 1.1 cgd seensubj = (seensubj || (!blankline && (strncmp(inbuf, "Subj", 4) == 0)));
390 1.1 cgd fputs(inbuf, newmsg);
391 1.1 cgd }
392 1.1 cgd #ifdef OBJECT
393 1.1 cgd if (!seensubj) {
394 1.1 cgd printf("NOTICE: Messages should have a Subject field!\n");
395 1.1 cgd #ifdef REJECT
396 1.1 cgd unlink(fname);
397 1.1 cgd #endif
398 1.1 cgd exit(1);
399 1.1 cgd }
400 1.1 cgd #endif
401 1.1 cgd exit(ferror(stdin));
402 1.1 cgd }
403 1.1 cgd if (clean)
404 1.1 cgd exit(0);
405 1.1 cgd
406 1.1 cgd /*
407 1.1 cgd * prepare to display messages
408 1.1 cgd */
409 1.1 cgd totty = (isatty(fileno(stdout)) != 0);
410 1.1 cgd use_pager = use_pager && totty;
411 1.1 cgd
412 1.17 mjl {
413 1.17 mjl char *home = getenv("HOME");
414 1.17 mjl if(home == NULL || *home == '\0')
415 1.17 mjl errx(1, "$HOME not set");
416 1.17 mjl snprintf(fname, sizeof (fname), "%s/%s", home, MSGSRC);
417 1.17 mjl }
418 1.6 cgd msgsrc = fopen(fname, "r");
419 1.1 cgd if (msgsrc) {
420 1.1 cgd newrc = NO;
421 1.7 tls fscanf(msgsrc, "%d\n", &nextmsg);
422 1.7 tls fclose(msgsrc);
423 1.7 tls if (nextmsg > lastmsg+1) {
424 1.1 cgd printf("Warning: bounds have been reset (%d, %d)\n",
425 1.1 cgd firstmsg, lastmsg);
426 1.1 cgd truncate(fname, (off_t)0);
427 1.1 cgd newrc = YES;
428 1.1 cgd }
429 1.1 cgd else if (!rcfirst)
430 1.1 cgd rcfirst = nextmsg - rcback;
431 1.1 cgd }
432 1.7 tls else
433 1.7 tls newrc = YES;
434 1.7 tls msgsrc = fopen(fname, "r+");
435 1.7 tls if (msgsrc == NULL)
436 1.7 tls msgsrc = fopen(fname, "w");
437 1.1 cgd if (msgsrc == NULL) {
438 1.1 cgd perror(fname);
439 1.1 cgd exit(errno);
440 1.1 cgd }
441 1.1 cgd if (rcfirst) {
442 1.1 cgd if (rcfirst > lastmsg+1) {
443 1.1 cgd printf("Warning: the last message is number %d.\n",
444 1.1 cgd lastmsg);
445 1.1 cgd rcfirst = nextmsg;
446 1.1 cgd }
447 1.1 cgd if (rcfirst > firstmsg)
448 1.1 cgd firstmsg = rcfirst; /* don't set below first msg */
449 1.1 cgd }
450 1.1 cgd if (newrc) {
451 1.1 cgd nextmsg = firstmsg;
452 1.1 cgd fseek(msgsrc, 0L, 0);
453 1.1 cgd fprintf(msgsrc, "%d\n", nextmsg);
454 1.1 cgd fflush(msgsrc);
455 1.1 cgd }
456 1.1 cgd
457 1.1 cgd #ifdef V7
458 1.1 cgd if (totty) {
459 1.1 cgd struct winsize win;
460 1.1 cgd if (ioctl(fileno(stdout), TIOCGWINSZ, &win) != -1)
461 1.1 cgd Lpp = win.ws_row;
462 1.1 cgd if (Lpp <= 0) {
463 1.1 cgd if (tgetent(inbuf, getenv("TERM")) <= 0
464 1.1 cgd || (Lpp = tgetnum("li")) <= 0) {
465 1.1 cgd Lpp = NLINES;
466 1.1 cgd }
467 1.1 cgd }
468 1.1 cgd }
469 1.1 cgd #endif
470 1.1 cgd Lpp -= 6; /* for headers, etc. */
471 1.1 cgd
472 1.1 cgd already = NO;
473 1.1 cgd prevmsg = firstmsg;
474 1.1 cgd printing = YES;
475 1.1 cgd if (ruptible)
476 1.1 cgd signal(SIGINT, onintr);
477 1.1 cgd
478 1.1 cgd /*
479 1.1 cgd * Main program loop
480 1.1 cgd */
481 1.1 cgd for (msg = firstmsg; msg <= lastmsg; msg++) {
482 1.1 cgd
483 1.16 ad snprintf(fname, sizeof (fname), "%s/%d", _PATH_MSGS, msg);
484 1.1 cgd newmsg = fopen(fname, "r");
485 1.1 cgd if (newmsg == NULL)
486 1.1 cgd continue;
487 1.1 cgd
488 1.1 cgd gfrsub(newmsg); /* get From and Subject fields */
489 1.1 cgd if (locomode && !local) {
490 1.1 cgd fclose(newmsg);
491 1.1 cgd continue;
492 1.1 cgd }
493 1.1 cgd
494 1.1 cgd if (qopt) { /* This has to be located here */
495 1.1 cgd printf("There are new messages.\n");
496 1.1 cgd exit(0);
497 1.1 cgd }
498 1.1 cgd
499 1.1 cgd if (already && !hdrs)
500 1.1 cgd putchar('\n');
501 1.1 cgd
502 1.1 cgd /*
503 1.1 cgd * Print header
504 1.1 cgd */
505 1.1 cgd if (totty)
506 1.1 cgd signal(SIGTSTP, onsusp);
507 1.1 cgd (void) setjmp(tstpbuf);
508 1.1 cgd already = YES;
509 1.1 cgd nlines = 2;
510 1.1 cgd if (seenfrom) {
511 1.1 cgd printf("Message %d:\nFrom %s %s", msg, from, date);
512 1.1 cgd nlines++;
513 1.1 cgd }
514 1.1 cgd if (seensubj) {
515 1.1 cgd printf("Subject: %s", subj);
516 1.1 cgd nlines++;
517 1.1 cgd }
518 1.1 cgd else {
519 1.1 cgd if (seenfrom) {
520 1.1 cgd putchar('\n');
521 1.1 cgd nlines++;
522 1.1 cgd }
523 1.1 cgd while (nlines < 6
524 1.1 cgd && fgets(inbuf, sizeof inbuf, newmsg)
525 1.1 cgd && inbuf[0] != '\n') {
526 1.1 cgd fputs(inbuf, stdout);
527 1.1 cgd nlines++;
528 1.1 cgd }
529 1.1 cgd }
530 1.1 cgd
531 1.1 cgd lct = linecnt(newmsg);
532 1.1 cgd if (lct)
533 1.1 cgd printf("(%d%slines) ", lct, seensubj? " " : " more ");
534 1.1 cgd
535 1.1 cgd if (hdrs) {
536 1.1 cgd printf("\n-----\n");
537 1.1 cgd fclose(newmsg);
538 1.1 cgd continue;
539 1.1 cgd }
540 1.1 cgd
541 1.1 cgd /*
542 1.1 cgd * Ask user for command
543 1.1 cgd */
544 1.1 cgd if (totty)
545 1.1 cgd ask(lct? MORE : (msg==lastmsg? NOMORE : NEXT));
546 1.1 cgd else
547 1.1 cgd inbuf[0] = 'y';
548 1.1 cgd if (totty)
549 1.1 cgd signal(SIGTSTP, SIG_DFL);
550 1.1 cgd cmnd:
551 1.1 cgd in = inbuf;
552 1.1 cgd switch (*in) {
553 1.1 cgd case 'x':
554 1.1 cgd case 'X':
555 1.1 cgd exit(0);
556 1.1 cgd
557 1.1 cgd case 'q':
558 1.1 cgd case 'Q':
559 1.1 cgd quitit = YES;
560 1.1 cgd printf("--Postponed--\n");
561 1.1 cgd exit(0);
562 1.1 cgd /* intentional fall-thru */
563 1.1 cgd case 'n':
564 1.1 cgd case 'N':
565 1.1 cgd if (msg >= nextmsg) sep = "Flushed";
566 1.1 cgd prevmsg = msg;
567 1.1 cgd break;
568 1.1 cgd
569 1.1 cgd case 'p':
570 1.1 cgd case 'P':
571 1.1 cgd use_pager = (*in++ == 'p');
572 1.1 cgd /* intentional fallthru */
573 1.1 cgd case '\n':
574 1.1 cgd case 'y':
575 1.1 cgd default:
576 1.1 cgd if (*in == '-') {
577 1.1 cgd msg = prevmsg-1;
578 1.1 cgd sep = "replay";
579 1.1 cgd break;
580 1.1 cgd }
581 1.13 christos if (isdigit((unsigned char)*in)) {
582 1.1 cgd msg = next(in);
583 1.1 cgd sep = in;
584 1.1 cgd break;
585 1.1 cgd }
586 1.1 cgd
587 1.1 cgd prmesg(nlines + lct + (seensubj? 1 : 0));
588 1.1 cgd prevmsg = msg;
589 1.1 cgd
590 1.1 cgd }
591 1.1 cgd
592 1.1 cgd printf("--%s--\n", sep);
593 1.1 cgd sep = "-";
594 1.1 cgd if (msg >= nextmsg) {
595 1.1 cgd nextmsg = msg + 1;
596 1.1 cgd fseek(msgsrc, 0L, 0);
597 1.1 cgd fprintf(msgsrc, "%d\n", nextmsg);
598 1.1 cgd fflush(msgsrc);
599 1.1 cgd }
600 1.1 cgd if (newmsg)
601 1.1 cgd fclose(newmsg);
602 1.1 cgd if (quitit)
603 1.1 cgd break;
604 1.1 cgd }
605 1.1 cgd
606 1.1 cgd /*
607 1.1 cgd * Make sure .rc file gets updated
608 1.1 cgd */
609 1.1 cgd if (--msg >= nextmsg) {
610 1.1 cgd nextmsg = msg + 1;
611 1.1 cgd fseek(msgsrc, 0L, 0);
612 1.1 cgd fprintf(msgsrc, "%d\n", nextmsg);
613 1.1 cgd fflush(msgsrc);
614 1.1 cgd }
615 1.1 cgd if (already && !quitit && lastcmd && totty) {
616 1.1 cgd /*
617 1.1 cgd * save or reply to last message?
618 1.1 cgd */
619 1.1 cgd msg = prevmsg;
620 1.1 cgd ask(NOMORE);
621 1.13 christos if (inbuf[0] == '-' || isdigit((unsigned char)inbuf[0]))
622 1.1 cgd goto cmnd;
623 1.1 cgd }
624 1.1 cgd if (!(already || hush || qopt))
625 1.1 cgd printf("No new messages.\n");
626 1.1 cgd exit(0);
627 1.1 cgd }
628 1.1 cgd
629 1.10 lukem void
630 1.1 cgd prmesg(length)
631 1.10 lukem int length;
632 1.1 cgd {
633 1.1 cgd FILE *outf;
634 1.5 mycroft char *env_pager;
635 1.1 cgd
636 1.1 cgd if (use_pager && length > Lpp) {
637 1.1 cgd signal(SIGPIPE, SIG_IGN);
638 1.1 cgd signal(SIGQUIT, SIG_IGN);
639 1.15 kleink if ((env_pager = getenv("PAGER")) == NULL ||
640 1.15 kleink env_pager[0] == '\0') {
641 1.16 ad snprintf(cmdbuf, sizeof(cmdbuf), "%s -z%d",
642 1.16 ad _PATH_PAGER, Lpp);
643 1.7 tls } else {
644 1.16 ad strlcpy(cmdbuf, env_pager, sizeof (cmdbuf));
645 1.7 tls }
646 1.1 cgd outf = popen(cmdbuf, "w");
647 1.1 cgd if (!outf)
648 1.1 cgd outf = stdout;
649 1.1 cgd else
650 1.21 plunky setbuf(outf, NULL);
651 1.1 cgd }
652 1.1 cgd else
653 1.1 cgd outf = stdout;
654 1.1 cgd
655 1.1 cgd if (seensubj)
656 1.1 cgd putc('\n', outf);
657 1.1 cgd
658 1.1 cgd while (fgets(inbuf, sizeof inbuf, newmsg)) {
659 1.1 cgd fputs(inbuf, outf);
660 1.1 cgd if (ferror(outf)) {
661 1.1 cgd clearerr(outf);
662 1.1 cgd break;
663 1.1 cgd }
664 1.1 cgd }
665 1.1 cgd
666 1.1 cgd if (outf != stdout) {
667 1.1 cgd pclose(outf);
668 1.1 cgd signal(SIGPIPE, SIG_DFL);
669 1.1 cgd signal(SIGQUIT, SIG_DFL);
670 1.1 cgd }
671 1.1 cgd else {
672 1.1 cgd fflush(stdout);
673 1.1 cgd }
674 1.1 cgd
675 1.1 cgd /* trick to force wait on output */
676 1.7 tls tcdrain(fileno(stdout));
677 1.1 cgd }
678 1.1 cgd
679 1.1 cgd void
680 1.10 lukem onintr(dummy)
681 1.10 lukem int dummy;
682 1.1 cgd {
683 1.1 cgd signal(SIGINT, onintr);
684 1.1 cgd if (mailing)
685 1.1 cgd unlink(fname);
686 1.1 cgd if (sending) {
687 1.1 cgd unlink(fname);
688 1.1 cgd puts("--Killed--");
689 1.1 cgd exit(1);
690 1.1 cgd }
691 1.1 cgd if (printing) {
692 1.1 cgd putchar('\n');
693 1.1 cgd if (hdrs)
694 1.1 cgd exit(0);
695 1.1 cgd sep = "Interrupt";
696 1.1 cgd if (newmsg)
697 1.1 cgd fseek(newmsg, 0L, 2);
698 1.1 cgd intrpflg = YES;
699 1.1 cgd }
700 1.1 cgd }
701 1.1 cgd
702 1.1 cgd /*
703 1.1 cgd * We have just gotten a susp. Suspend and prepare to resume.
704 1.1 cgd */
705 1.1 cgd void
706 1.10 lukem onsusp(dummy)
707 1.10 lukem int dummy;
708 1.1 cgd {
709 1.1 cgd
710 1.1 cgd signal(SIGTSTP, SIG_DFL);
711 1.1 cgd sigsetmask(0);
712 1.1 cgd kill(0, SIGTSTP);
713 1.1 cgd signal(SIGTSTP, onsusp);
714 1.1 cgd if (!mailing)
715 1.1 cgd longjmp(tstpbuf, 0);
716 1.1 cgd }
717 1.1 cgd
718 1.10 lukem int
719 1.1 cgd linecnt(f)
720 1.10 lukem FILE *f;
721 1.1 cgd {
722 1.1 cgd off_t oldpos = ftell(f);
723 1.1 cgd int l = 0;
724 1.1 cgd char lbuf[BUFSIZ];
725 1.1 cgd
726 1.1 cgd while (fgets(lbuf, sizeof lbuf, f))
727 1.1 cgd l++;
728 1.1 cgd clearerr(f);
729 1.1 cgd fseek(f, oldpos, 0);
730 1.1 cgd return (l);
731 1.1 cgd }
732 1.1 cgd
733 1.10 lukem int
734 1.1 cgd next(buf)
735 1.10 lukem char *buf;
736 1.1 cgd {
737 1.1 cgd int i;
738 1.1 cgd sscanf(buf, "%d", &i);
739 1.16 ad snprintf(buf, sizeof (buf), "Goto %d", i);
740 1.1 cgd return(--i);
741 1.1 cgd }
742 1.1 cgd
743 1.10 lukem void
744 1.1 cgd ask(prompt)
745 1.20 lukem const char *prompt;
746 1.1 cgd {
747 1.1 cgd char inch;
748 1.1 cgd int n, cmsg;
749 1.1 cgd off_t oldpos;
750 1.1 cgd FILE *cpfrom, *cpto;
751 1.1 cgd
752 1.1 cgd printf("%s ", prompt);
753 1.1 cgd fflush(stdout);
754 1.1 cgd intrpflg = NO;
755 1.1 cgd (void) fgets(inbuf, sizeof inbuf, stdin);
756 1.1 cgd if ((n = strlen(inbuf)) > 0 && inbuf[n - 1] == '\n')
757 1.1 cgd inbuf[n - 1] = '\0';
758 1.1 cgd if (intrpflg)
759 1.1 cgd inbuf[0] = 'x';
760 1.1 cgd
761 1.1 cgd /*
762 1.1 cgd * Handle 'mail' and 'save' here.
763 1.1 cgd */
764 1.7 tls if (((inch = inbuf[0]) == 's' || inch == 'm') && !restricted) {
765 1.1 cgd if (inbuf[1] == '-')
766 1.1 cgd cmsg = prevmsg;
767 1.13 christos else if (isdigit((unsigned char)inbuf[1]))
768 1.1 cgd cmsg = atoi(&inbuf[1]);
769 1.1 cgd else
770 1.1 cgd cmsg = msg;
771 1.16 ad snprintf(fname, sizeof (fname), "%s/%d", _PATH_MSGS, cmsg);
772 1.1 cgd
773 1.1 cgd oldpos = ftell(newmsg);
774 1.1 cgd
775 1.1 cgd cpfrom = fopen(fname, "r");
776 1.1 cgd if (!cpfrom) {
777 1.1 cgd printf("Message %d not found\n", cmsg);
778 1.1 cgd ask (prompt);
779 1.1 cgd return;
780 1.1 cgd }
781 1.1 cgd
782 1.1 cgd if (inch == 's') {
783 1.1 cgd in = nxtfld(inbuf);
784 1.1 cgd if (*in) {
785 1.1 cgd for (n=0; in[n] > ' '; n++) { /* sizeof fname? */
786 1.1 cgd fname[n] = in[n];
787 1.1 cgd }
788 1.8 pk fname[n] = '\0';
789 1.1 cgd }
790 1.1 cgd else
791 1.16 ad strlcpy(fname, "Messages", sizeof(fname));
792 1.1 cgd }
793 1.1 cgd else {
794 1.14 mrg int fd;
795 1.14 mrg
796 1.16 ad strlcpy(fname, _PATH_TMP, sizeof(fname));
797 1.14 mrg fd = mkstemp(fname);
798 1.14 mrg if (fd == -1)
799 1.14 mrg err(1, "mkstemp failed");
800 1.14 mrg close(fd);
801 1.16 ad snprintf(cmdbuf, sizeof (cmdbuf), _PATH_MAIL, fname);
802 1.1 cgd mailing = YES;
803 1.1 cgd }
804 1.1 cgd cpto = fopen(fname, "a");
805 1.1 cgd if (!cpto) {
806 1.1 cgd perror(fname);
807 1.1 cgd mailing = NO;
808 1.1 cgd fseek(newmsg, oldpos, 0);
809 1.1 cgd ask(prompt);
810 1.1 cgd return;
811 1.1 cgd }
812 1.1 cgd
813 1.10 lukem while ((n = fread(inbuf, 1, sizeof inbuf, cpfrom)) != 0)
814 1.1 cgd fwrite(inbuf, 1, n, cpto);
815 1.1 cgd
816 1.1 cgd fclose(cpfrom);
817 1.1 cgd fclose(cpto);
818 1.1 cgd fseek(newmsg, oldpos, 0); /* reposition current message */
819 1.1 cgd if (inch == 's')
820 1.1 cgd printf("Message %d saved in \"%s\"\n", cmsg, fname);
821 1.1 cgd else {
822 1.1 cgd system(cmdbuf);
823 1.1 cgd unlink(fname);
824 1.1 cgd mailing = NO;
825 1.1 cgd }
826 1.1 cgd ask(prompt);
827 1.1 cgd }
828 1.1 cgd }
829 1.1 cgd
830 1.10 lukem void
831 1.1 cgd gfrsub(infile)
832 1.10 lukem FILE *infile;
833 1.1 cgd {
834 1.1 cgd off_t frompos;
835 1.1 cgd
836 1.1 cgd seensubj = seenfrom = NO;
837 1.1 cgd local = YES;
838 1.8 pk subj[0] = from[0] = date[0] = 0;
839 1.1 cgd
840 1.1 cgd /*
841 1.1 cgd * Is this a normal message?
842 1.1 cgd */
843 1.1 cgd if (fgets(inbuf, sizeof inbuf, infile)) {
844 1.1 cgd if (strncmp(inbuf, "From", 4)==0) {
845 1.1 cgd /*
846 1.1 cgd * expected form starts with From
847 1.1 cgd */
848 1.1 cgd seenfrom = YES;
849 1.1 cgd frompos = ftell(infile);
850 1.1 cgd ptr = from;
851 1.1 cgd in = nxtfld(inbuf);
852 1.1 cgd if (*in) while (*in && *in > ' ') {
853 1.1 cgd if (*in == ':' || *in == '@' || *in == '!')
854 1.1 cgd local = NO;
855 1.1 cgd *ptr++ = *in++;
856 1.1 cgd /* what about sizeof from ? */
857 1.1 cgd }
858 1.8 pk *ptr = '\0';
859 1.1 cgd if (*(in = nxtfld(in)))
860 1.1 cgd strncpy(date, in, sizeof date);
861 1.1 cgd else {
862 1.1 cgd date[0] = '\n';
863 1.8 pk date[1] = '\0';
864 1.1 cgd }
865 1.1 cgd }
866 1.1 cgd else {
867 1.1 cgd /*
868 1.1 cgd * not the expected form
869 1.1 cgd */
870 1.1 cgd fseek(infile, 0L, 0);
871 1.1 cgd return;
872 1.1 cgd }
873 1.1 cgd }
874 1.1 cgd else
875 1.1 cgd /*
876 1.1 cgd * empty file ?
877 1.1 cgd */
878 1.1 cgd return;
879 1.1 cgd
880 1.1 cgd /*
881 1.1 cgd * look for Subject line until EOF or a blank line
882 1.1 cgd */
883 1.1 cgd while (fgets(inbuf, sizeof inbuf, infile)
884 1.1 cgd && !(blankline = (inbuf[0] == '\n'))) {
885 1.1 cgd /*
886 1.1 cgd * extract Subject line
887 1.1 cgd */
888 1.1 cgd if (!seensubj && strncmp(inbuf, "Subj", 4)==0) {
889 1.1 cgd seensubj = YES;
890 1.1 cgd frompos = ftell(infile);
891 1.1 cgd strncpy(subj, nxtfld(inbuf), sizeof subj);
892 1.1 cgd }
893 1.1 cgd }
894 1.1 cgd if (!blankline)
895 1.1 cgd /*
896 1.1 cgd * ran into EOF
897 1.1 cgd */
898 1.1 cgd fseek(infile, frompos, 0);
899 1.1 cgd
900 1.1 cgd if (!seensubj)
901 1.1 cgd /*
902 1.1 cgd * for possible use with Mail
903 1.1 cgd */
904 1.1 cgd strncpy(subj, "(No Subject)\n", sizeof subj);
905 1.1 cgd }
906 1.1 cgd
907 1.1 cgd char *
908 1.1 cgd nxtfld(s)
909 1.10 lukem char *s;
910 1.1 cgd {
911 1.1 cgd if (*s) while (*s && *s > ' ') s++; /* skip over this field */
912 1.1 cgd if (*s) while (*s && *s <= ' ') s++; /* find start of next field */
913 1.1 cgd return (s);
914 1.1 cgd }
915