xref: /freebsd/usr.bin/mail/cmd1.c (revision 5e3934b15a2741b2de6b217e77dc9d798d740804)
19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1980, 1993
59b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
69b50d902SRodney W. Grimes  *
79b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes  * are met:
109b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
169b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
179b50d902SRodney W. Grimes  *    without specific prior written permission.
189b50d902SRodney W. Grimes  *
199b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
209b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
239b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
249b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
259b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
269b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
279b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
289b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
299b50d902SRodney W. Grimes  * SUCH DAMAGE.
309b50d902SRodney W. Grimes  */
319b50d902SRodney W. Grimes 
329b50d902SRodney W. Grimes #include "rcv.h"
339b50d902SRodney W. Grimes #include "extern.h"
349b50d902SRodney W. Grimes 
359b50d902SRodney W. Grimes /*
369b50d902SRodney W. Grimes  * Mail -- a mail program
379b50d902SRodney W. Grimes  *
389b50d902SRodney W. Grimes  * User commands.
399b50d902SRodney W. Grimes  */
409b50d902SRodney W. Grimes 
419b50d902SRodney W. Grimes /*
429b50d902SRodney W. Grimes  * Print the current active headings.
439b50d902SRodney W. Grimes  * Don't change dot if invoker didn't give an argument.
449b50d902SRodney W. Grimes  */
459b50d902SRodney W. Grimes 
469b50d902SRodney W. Grimes static int screen;
479b50d902SRodney W. Grimes 
489b50d902SRodney W. Grimes int
headers(void * v)49b948550dSPedro F. Giffuni headers(void *v)
509b50d902SRodney W. Grimes {
51b948550dSPedro F. Giffuni 	int *msgvec = v;
529ce73e90SMike Heffner 	int n, mesg, flag, size;
539ce73e90SMike Heffner 	struct message *mp;
549b50d902SRodney W. Grimes 
559b50d902SRodney W. Grimes 	size = screensize();
569b50d902SRodney W. Grimes 	n = msgvec[0];
579b50d902SRodney W. Grimes 	if (n != 0)
589b50d902SRodney W. Grimes 		screen = (n-1)/size;
599b50d902SRodney W. Grimes 	if (screen < 0)
609b50d902SRodney W. Grimes 		screen = 0;
619b50d902SRodney W. Grimes 	mp = &message[screen * size];
629b50d902SRodney W. Grimes 	if (mp >= &message[msgCount])
639b50d902SRodney W. Grimes 		mp = &message[msgCount - size];
649b50d902SRodney W. Grimes 	if (mp < &message[0])
659b50d902SRodney W. Grimes 		mp = &message[0];
669b50d902SRodney W. Grimes 	flag = 0;
679b50d902SRodney W. Grimes 	mesg = mp - &message[0];
689b50d902SRodney W. Grimes 	if (dot != &message[n-1])
699b50d902SRodney W. Grimes 		dot = mp;
709b50d902SRodney W. Grimes 	for (; mp < &message[msgCount]; mp++) {
719b50d902SRodney W. Grimes 		mesg++;
729b50d902SRodney W. Grimes 		if (mp->m_flag & MDELETED)
739b50d902SRodney W. Grimes 			continue;
749b50d902SRodney W. Grimes 		if (flag++ >= size)
759b50d902SRodney W. Grimes 			break;
769b50d902SRodney W. Grimes 		printhead(mesg);
779b50d902SRodney W. Grimes 	}
789b50d902SRodney W. Grimes 	if (flag == 0) {
799b50d902SRodney W. Grimes 		printf("No more mail.\n");
809b50d902SRodney W. Grimes 		return (1);
819b50d902SRodney W. Grimes 	}
829b50d902SRodney W. Grimes 	return (0);
839b50d902SRodney W. Grimes }
849b50d902SRodney W. Grimes 
859b50d902SRodney W. Grimes /*
869b50d902SRodney W. Grimes  * Scroll to the next/previous screen
879b50d902SRodney W. Grimes  */
889b50d902SRodney W. Grimes int
scroll(void * v)89b948550dSPedro F. Giffuni scroll(void *v)
909b50d902SRodney W. Grimes {
91b948550dSPedro F. Giffuni 	char *arg = v;
929ce73e90SMike Heffner 	int s, size;
939b50d902SRodney W. Grimes 	int cur[1];
949b50d902SRodney W. Grimes 
959b50d902SRodney W. Grimes 	cur[0] = 0;
969b50d902SRodney W. Grimes 	size = screensize();
979b50d902SRodney W. Grimes 	s = screen;
989b50d902SRodney W. Grimes 	switch (*arg) {
999b50d902SRodney W. Grimes 	case 0:
1009b50d902SRodney W. Grimes 	case '+':
1019b50d902SRodney W. Grimes 		s++;
102856f23edSMike Heffner 		if (s * size >= msgCount) {
1039b50d902SRodney W. Grimes 			printf("On last screenful of messages\n");
1049b50d902SRodney W. Grimes 			return (0);
1059b50d902SRodney W. Grimes 		}
1069b50d902SRodney W. Grimes 		screen = s;
1079b50d902SRodney W. Grimes 		break;
1089b50d902SRodney W. Grimes 
1099b50d902SRodney W. Grimes 	case '-':
1109b50d902SRodney W. Grimes 		if (--s < 0) {
1119b50d902SRodney W. Grimes 			printf("On first screenful of messages\n");
1129b50d902SRodney W. Grimes 			return (0);
1139b50d902SRodney W. Grimes 		}
1149b50d902SRodney W. Grimes 		screen = s;
1159b50d902SRodney W. Grimes 		break;
1169b50d902SRodney W. Grimes 
1179b50d902SRodney W. Grimes 	default:
1189b50d902SRodney W. Grimes 		printf("Unrecognized scrolling command \"%s\"\n", arg);
1199b50d902SRodney W. Grimes 		return (1);
1209b50d902SRodney W. Grimes 	}
1219b50d902SRodney W. Grimes 	return (headers(cur));
1229b50d902SRodney W. Grimes }
1239b50d902SRodney W. Grimes 
1249b50d902SRodney W. Grimes /*
1259b50d902SRodney W. Grimes  * Compute screen size.
1269b50d902SRodney W. Grimes  */
1279b50d902SRodney W. Grimes int
screensize(void)128640e31deSPhilippe Charnier screensize(void)
1299b50d902SRodney W. Grimes {
1309b50d902SRodney W. Grimes 	int s;
1319b50d902SRodney W. Grimes 	char *cp;
1329b50d902SRodney W. Grimes 
1339ce73e90SMike Heffner 	if ((cp = value("screen")) != NULL && (s = atoi(cp)) > 0)
1349ce73e90SMike Heffner 		return (s);
1359ce73e90SMike Heffner 	return (screenheight - 4);
1369b50d902SRodney W. Grimes }
1379b50d902SRodney W. Grimes 
1389b50d902SRodney W. Grimes /*
1399b50d902SRodney W. Grimes  * Print out the headlines for each message
1409b50d902SRodney W. Grimes  * in the passed message list.
1419b50d902SRodney W. Grimes  */
1429b50d902SRodney W. Grimes int
from(void * v)143b948550dSPedro F. Giffuni from(void *v)
1449b50d902SRodney W. Grimes {
145b948550dSPedro F. Giffuni 	int *msgvec = v;
1469ce73e90SMike Heffner 	int *ip;
1479b50d902SRodney W. Grimes 
148d030d2d2SPoul-Henning Kamp 	for (ip = msgvec; *ip != 0; ip++)
1499b50d902SRodney W. Grimes 		printhead(*ip);
1509b50d902SRodney W. Grimes 	if (--ip >= msgvec)
1519b50d902SRodney W. Grimes 		dot = &message[*ip - 1];
1529b50d902SRodney W. Grimes 	return (0);
1539b50d902SRodney W. Grimes }
1549b50d902SRodney W. Grimes 
1559b50d902SRodney W. Grimes /*
1569b50d902SRodney W. Grimes  * Print out the header of a specific message.
1579b50d902SRodney W. Grimes  * This is a slight improvement to the standard one.
1589b50d902SRodney W. Grimes  */
1599b50d902SRodney W. Grimes void
printhead(int mesg)160640e31deSPhilippe Charnier printhead(int mesg)
1619b50d902SRodney W. Grimes {
1629b50d902SRodney W. Grimes 	struct message *mp;
1639b50d902SRodney W. Grimes 	char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind;
1649b50d902SRodney W. Grimes 	char pbuf[BUFSIZ];
1659b50d902SRodney W. Grimes 	struct headline hl;
1669b50d902SRodney W. Grimes 	int subjlen;
1679b50d902SRodney W. Grimes 	char *name;
1689b50d902SRodney W. Grimes 
1699b50d902SRodney W. Grimes 	mp = &message[mesg-1];
1709b50d902SRodney W. Grimes 	(void)readline(setinput(mp), headline, LINESIZE);
1719ce73e90SMike Heffner 	if ((subjline = hfield("subject", mp)) == NULL)
1729b50d902SRodney W. Grimes 		subjline = hfield("subj", mp);
1739b50d902SRodney W. Grimes 	/*
1749b50d902SRodney W. Grimes 	 * Bletch!
1759b50d902SRodney W. Grimes 	 */
1769b50d902SRodney W. Grimes 	curind = dot == mp ? '>' : ' ';
1779b50d902SRodney W. Grimes 	dispc = ' ';
1789b50d902SRodney W. Grimes 	if (mp->m_flag & MSAVED)
1799b50d902SRodney W. Grimes 		dispc = '*';
1809b50d902SRodney W. Grimes 	if (mp->m_flag & MPRESERVE)
1819b50d902SRodney W. Grimes 		dispc = 'P';
1829b50d902SRodney W. Grimes 	if ((mp->m_flag & (MREAD|MNEW)) == MNEW)
1839b50d902SRodney W. Grimes 		dispc = 'N';
1849b50d902SRodney W. Grimes 	if ((mp->m_flag & (MREAD|MNEW)) == 0)
1859b50d902SRodney W. Grimes 		dispc = 'U';
1869b50d902SRodney W. Grimes 	if (mp->m_flag & MBOX)
1879b50d902SRodney W. Grimes 		dispc = 'M';
1889b50d902SRodney W. Grimes 	parse(headline, &hl, pbuf);
18922694ebaSBruce Evans 	sprintf(wcount, "%3ld/%-5ld", mp->m_lines, mp->m_size);
1909b50d902SRodney W. Grimes 	subjlen = screenwidth - 50 - strlen(wcount);
1919ce73e90SMike Heffner 	name = value("show-rcpt") != NULL ?
1929b50d902SRodney W. Grimes 		skin(hfield("to", mp)) : nameof(mp, 0);
1939ce73e90SMike Heffner 	if (subjline == NULL || subjlen < 0)		/* pretty pathetic */
1949b50d902SRodney W. Grimes 		printf("%c%c%3d %-20.20s  %16.16s %s\n",
1959b50d902SRodney W. Grimes 			curind, dispc, mesg, name, hl.l_date, wcount);
1969b50d902SRodney W. Grimes 	else
1979b50d902SRodney W. Grimes 		printf("%c%c%3d %-20.20s  %16.16s %s \"%.*s\"\n",
1989b50d902SRodney W. Grimes 			curind, dispc, mesg, name, hl.l_date, wcount,
1999b50d902SRodney W. Grimes 			subjlen, subjline);
2009b50d902SRodney W. Grimes }
2019b50d902SRodney W. Grimes 
2029b50d902SRodney W. Grimes /*
2039b50d902SRodney W. Grimes  * Print out the value of dot.
2049b50d902SRodney W. Grimes  */
2059b50d902SRodney W. Grimes int
pdot(void * arg __unused)206*d28a9551SJohn Baldwin pdot(void *arg __unused)
2079b50d902SRodney W. Grimes {
208081aa516SDimitry Andric 	printf("%td\n", dot - &message[0] + 1);
2099b50d902SRodney W. Grimes 	return (0);
2109b50d902SRodney W. Grimes }
2119b50d902SRodney W. Grimes 
2129b50d902SRodney W. Grimes /*
2139b50d902SRodney W. Grimes  * Print out all the possible commands.
2149b50d902SRodney W. Grimes  */
2159b50d902SRodney W. Grimes int
pcmdlist(void * arg __unused)216*d28a9551SJohn Baldwin pcmdlist(void *arg __unused)
2179b50d902SRodney W. Grimes {
218b948550dSPedro F. Giffuni 	extern const struct cmd cmdtab[];
2199ce73e90SMike Heffner 	const struct cmd *cp;
2209ce73e90SMike Heffner 	int cc;
2219b50d902SRodney W. Grimes 
2229b50d902SRodney W. Grimes 	printf("Commands are:\n");
2239b50d902SRodney W. Grimes 	for (cc = 0, cp = cmdtab; cp->c_name != NULL; cp++) {
2249b50d902SRodney W. Grimes 		cc += strlen(cp->c_name) + 2;
2259b50d902SRodney W. Grimes 		if (cc > 72) {
2269b50d902SRodney W. Grimes 			printf("\n");
2279b50d902SRodney W. Grimes 			cc = strlen(cp->c_name) + 2;
2289b50d902SRodney W. Grimes 		}
2299ce73e90SMike Heffner 		if ((cp+1)->c_name != NULL)
2309b50d902SRodney W. Grimes 			printf("%s, ", cp->c_name);
2319b50d902SRodney W. Grimes 		else
2329b50d902SRodney W. Grimes 			printf("%s\n", cp->c_name);
2339b50d902SRodney W. Grimes 	}
2349b50d902SRodney W. Grimes 	return (0);
2359b50d902SRodney W. Grimes }
2369b50d902SRodney W. Grimes 
2379b50d902SRodney W. Grimes /*
2389b50d902SRodney W. Grimes  * Paginate messages, honor ignored fields.
2399b50d902SRodney W. Grimes  */
2409b50d902SRodney W. Grimes int
more(void * v)241b948550dSPedro F. Giffuni more(void *v)
2429b50d902SRodney W. Grimes {
243b948550dSPedro F. Giffuni 	int *msgvec = v;
2449ce73e90SMike Heffner 
2459b50d902SRodney W. Grimes 	return (type1(msgvec, 1, 1));
2469b50d902SRodney W. Grimes }
2479b50d902SRodney W. Grimes 
2489b50d902SRodney W. Grimes /*
2499b50d902SRodney W. Grimes  * Paginate messages, even printing ignored fields.
2509b50d902SRodney W. Grimes  */
2519b50d902SRodney W. Grimes int
More(void * v)252b948550dSPedro F. Giffuni More(void *v)
2539b50d902SRodney W. Grimes {
254b948550dSPedro F. Giffuni 	int *msgvec = v;
2559b50d902SRodney W. Grimes 
2569b50d902SRodney W. Grimes 	return (type1(msgvec, 0, 1));
2579b50d902SRodney W. Grimes }
2589b50d902SRodney W. Grimes 
2599b50d902SRodney W. Grimes /*
2609b50d902SRodney W. Grimes  * Type out messages, honor ignored fields.
2619b50d902SRodney W. Grimes  */
2629b50d902SRodney W. Grimes int
type(void * v)263b948550dSPedro F. Giffuni type(void *v)
2649b50d902SRodney W. Grimes {
265b948550dSPedro F. Giffuni 	int *msgvec = v;
2669b50d902SRodney W. Grimes 
2679b50d902SRodney W. Grimes 	return (type1(msgvec, 1, 0));
2689b50d902SRodney W. Grimes }
2699b50d902SRodney W. Grimes 
2709b50d902SRodney W. Grimes /*
2719b50d902SRodney W. Grimes  * Type out messages, even printing ignored fields.
2729b50d902SRodney W. Grimes  */
2739b50d902SRodney W. Grimes int
Type(void * v)274b948550dSPedro F. Giffuni Type(void *v)
2759b50d902SRodney W. Grimes {
276b948550dSPedro F. Giffuni 	int *msgvec = v;
2779b50d902SRodney W. Grimes 
2789b50d902SRodney W. Grimes 	return (type1(msgvec, 0, 0));
2799b50d902SRodney W. Grimes }
2809b50d902SRodney W. Grimes 
2819b50d902SRodney W. Grimes /*
2829b50d902SRodney W. Grimes  * Type out the messages requested.
2839b50d902SRodney W. Grimes  */
284e7d53813SDiomidis Spinellis static jmp_buf	pipestop;
2859b50d902SRodney W. Grimes int
type1(int * msgvec,int doign,int page)286640e31deSPhilippe Charnier type1(int *msgvec, int doign, int page)
2879b50d902SRodney W. Grimes {
2889ce73e90SMike Heffner 	int nlines, *ip;
2899ce73e90SMike Heffner 	struct message *mp;
2909ce73e90SMike Heffner 	char *cp;
2919b50d902SRodney W. Grimes 	FILE *obuf;
2929b50d902SRodney W. Grimes 
2939b50d902SRodney W. Grimes 	obuf = stdout;
2949b50d902SRodney W. Grimes 	if (setjmp(pipestop))
2959b50d902SRodney W. Grimes 		goto close_pipe;
2969ce73e90SMike Heffner 	if (value("interactive") != NULL &&
2979ce73e90SMike Heffner 	    (page || (cp = value("crt")) != NULL)) {
2989b50d902SRodney W. Grimes 		nlines = 0;
2999b50d902SRodney W. Grimes 		if (!page) {
3009b50d902SRodney W. Grimes 			for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++)
3019b50d902SRodney W. Grimes 				nlines += message[*ip - 1].m_lines;
3029b50d902SRodney W. Grimes 		}
3039b50d902SRodney W. Grimes 		if (page || nlines > (*cp ? atoi(cp) : realscreenheight)) {
3049b50d902SRodney W. Grimes 			cp = value("PAGER");
3059b50d902SRodney W. Grimes 			if (cp == NULL || *cp == '\0')
30647cc9ee1SAlan Somers 				cp = _PATH_LESS;
3079b50d902SRodney W. Grimes 			obuf = Popen(cp, "w");
3089b50d902SRodney W. Grimes 			if (obuf == NULL) {
3090c3a8314SMike Heffner 				warnx("%s", cp);
3109b50d902SRodney W. Grimes 				obuf = stdout;
3119b50d902SRodney W. Grimes 			} else
3129ce73e90SMike Heffner 				(void)signal(SIGPIPE, brokpipe);
3139b50d902SRodney W. Grimes 		}
3149b50d902SRodney W. Grimes 	}
3159ce73e90SMike Heffner 
3169ce73e90SMike Heffner 	/*
3179ce73e90SMike Heffner 	 * Send messages to the output.
3189ce73e90SMike Heffner 	 *
3199ce73e90SMike Heffner 	 */
3209b50d902SRodney W. Grimes 	for (ip = msgvec; *ip && ip - msgvec < msgCount; ip++) {
3219b50d902SRodney W. Grimes 		mp = &message[*ip - 1];
3229b50d902SRodney W. Grimes 		touch(mp);
3239b50d902SRodney W. Grimes 		dot = mp;
3249ce73e90SMike Heffner 		if (value("quiet") == NULL)
3259b50d902SRodney W. Grimes 			fprintf(obuf, "Message %d:\n", *ip);
3269ce73e90SMike Heffner 		(void)sendmessage(mp, obuf, doign ? ignore : 0, NULL);
3279b50d902SRodney W. Grimes 	}
3289ce73e90SMike Heffner 
3299b50d902SRodney W. Grimes close_pipe:
3309b50d902SRodney W. Grimes 	if (obuf != stdout) {
3319b50d902SRodney W. Grimes 		/*
3329b50d902SRodney W. Grimes 		 * Ignore SIGPIPE so it can't cause a duplicate close.
3339b50d902SRodney W. Grimes 		 */
3349ce73e90SMike Heffner 		(void)signal(SIGPIPE, SIG_IGN);
3359ce73e90SMike Heffner 		(void)Pclose(obuf);
3369ce73e90SMike Heffner 		(void)signal(SIGPIPE, SIG_DFL);
3379b50d902SRodney W. Grimes 	}
3389b50d902SRodney W. Grimes 	return (0);
3399b50d902SRodney W. Grimes }
3409b50d902SRodney W. Grimes 
3419b50d902SRodney W. Grimes /*
3429b50d902SRodney W. Grimes  * Respond to a broken pipe signal --
3439b50d902SRodney W. Grimes  * probably caused by quitting more.
3449b50d902SRodney W. Grimes  */
3459ce73e90SMike Heffner /*ARGSUSED*/
3469b50d902SRodney W. Grimes void
brokpipe(int signo __unused)347640e31deSPhilippe Charnier brokpipe(int signo __unused)
3489b50d902SRodney W. Grimes {
3499b50d902SRodney W. Grimes 	longjmp(pipestop, 1);
3509b50d902SRodney W. Grimes }
3519b50d902SRodney W. Grimes 
3529b50d902SRodney W. Grimes /*
3539b50d902SRodney W. Grimes  * Print the top so many lines of each desired message.
3549b50d902SRodney W. Grimes  * The number of lines is taken from the variable "toplines"
3559b50d902SRodney W. Grimes  * and defaults to 5.
3569b50d902SRodney W. Grimes  */
3579b50d902SRodney W. Grimes int
top(void * v)358b948550dSPedro F. Giffuni top(void *v)
3599b50d902SRodney W. Grimes {
360b948550dSPedro F. Giffuni 	int *msgvec = v;
3619ce73e90SMike Heffner 	int *ip;
3629ce73e90SMike Heffner 	struct message *mp;
3639b50d902SRodney W. Grimes 	int c, topl, lines, lineb;
3649b50d902SRodney W. Grimes 	char *valtop, linebuf[LINESIZE];
3659b50d902SRodney W. Grimes 	FILE *ibuf;
3669b50d902SRodney W. Grimes 
3679b50d902SRodney W. Grimes 	topl = 5;
3689b50d902SRodney W. Grimes 	valtop = value("toplines");
3699ce73e90SMike Heffner 	if (valtop != NULL) {
3709b50d902SRodney W. Grimes 		topl = atoi(valtop);
3719b50d902SRodney W. Grimes 		if (topl < 0 || topl > 10000)
3729b50d902SRodney W. Grimes 			topl = 5;
3739b50d902SRodney W. Grimes 	}
3749b50d902SRodney W. Grimes 	lineb = 1;
3759b50d902SRodney W. Grimes 	for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
3769b50d902SRodney W. Grimes 		mp = &message[*ip - 1];
3779b50d902SRodney W. Grimes 		touch(mp);
3789b50d902SRodney W. Grimes 		dot = mp;
3799ce73e90SMike Heffner 		if (value("quiet") == NULL)
3809b50d902SRodney W. Grimes 			printf("Message %d:\n", *ip);
3819b50d902SRodney W. Grimes 		ibuf = setinput(mp);
3829b50d902SRodney W. Grimes 		c = mp->m_lines;
3839b50d902SRodney W. Grimes 		if (!lineb)
3849b50d902SRodney W. Grimes 			printf("\n");
3859b50d902SRodney W. Grimes 		for (lines = 0; lines < c && lines <= topl; lines++) {
3860c3a8314SMike Heffner 			if (readline(ibuf, linebuf, sizeof(linebuf)) < 0)
3879b50d902SRodney W. Grimes 				break;
3889b50d902SRodney W. Grimes 			puts(linebuf);
3890c3a8314SMike Heffner 			lineb = strspn(linebuf, " \t") == strlen(linebuf);
3909b50d902SRodney W. Grimes 		}
3919b50d902SRodney W. Grimes 	}
3929b50d902SRodney W. Grimes 	return (0);
3939b50d902SRodney W. Grimes }
3949b50d902SRodney W. Grimes 
3959b50d902SRodney W. Grimes /*
3969b50d902SRodney W. Grimes  * Touch all the given messages so that they will
3979b50d902SRodney W. Grimes  * get mboxed.
3989b50d902SRodney W. Grimes  */
3999b50d902SRodney W. Grimes int
stouch(void * v)400b948550dSPedro F. Giffuni stouch(void *v)
4019b50d902SRodney W. Grimes {
402b948550dSPedro F. Giffuni 	int *msgvec = v;
4039ce73e90SMike Heffner 	int *ip;
4049b50d902SRodney W. Grimes 
4059b50d902SRodney W. Grimes 	for (ip = msgvec; *ip != 0; ip++) {
4069b50d902SRodney W. Grimes 		dot = &message[*ip-1];
4079b50d902SRodney W. Grimes 		dot->m_flag |= MTOUCH;
4089b50d902SRodney W. Grimes 		dot->m_flag &= ~MPRESERVE;
4099b50d902SRodney W. Grimes 	}
4109b50d902SRodney W. Grimes 	return (0);
4119b50d902SRodney W. Grimes }
4129b50d902SRodney W. Grimes 
4139b50d902SRodney W. Grimes /*
4149b50d902SRodney W. Grimes  * Make sure all passed messages get mboxed.
4159b50d902SRodney W. Grimes  */
4169b50d902SRodney W. Grimes int
mboxit(void * v)417b948550dSPedro F. Giffuni mboxit(void *v)
4189b50d902SRodney W. Grimes {
419b948550dSPedro F. Giffuni 	int *msgvec = v;
4209ce73e90SMike Heffner 	int *ip;
4219b50d902SRodney W. Grimes 
4229b50d902SRodney W. Grimes 	for (ip = msgvec; *ip != 0; ip++) {
4239b50d902SRodney W. Grimes 		dot = &message[*ip-1];
4249b50d902SRodney W. Grimes 		dot->m_flag |= MTOUCH|MBOX;
4259b50d902SRodney W. Grimes 		dot->m_flag &= ~MPRESERVE;
4269b50d902SRodney W. Grimes 	}
4279b50d902SRodney W. Grimes 	return (0);
4289b50d902SRodney W. Grimes }
4299b50d902SRodney W. Grimes 
4309b50d902SRodney W. Grimes /*
4319b50d902SRodney W. Grimes  * List the folders the user currently has.
4329b50d902SRodney W. Grimes  */
4339b50d902SRodney W. Grimes int
folders(void * arg __unused)434*d28a9551SJohn Baldwin folders(void *arg __unused)
4359b50d902SRodney W. Grimes {
4360c3a8314SMike Heffner 	char dirname[PATHSIZE];
4379b50d902SRodney W. Grimes 	char *cmd;
4389b50d902SRodney W. Grimes 
4390c3a8314SMike Heffner 	if (getfold(dirname, sizeof(dirname)) < 0) {
4409b50d902SRodney W. Grimes 		printf("No value set for \"folder\"\n");
4419ce73e90SMike Heffner 		return (1);
4429b50d902SRodney W. Grimes 	}
4439ce73e90SMike Heffner 	if ((cmd = value("LISTER")) == NULL)
4449b50d902SRodney W. Grimes 		cmd = "ls";
445b22a8699SPedro F. Giffuni 	(void)run_command(cmd, 0, -1, -1, dirname, NULL);
4469ce73e90SMike Heffner 	return (0);
4479b50d902SRodney W. Grimes }
448856f23edSMike Heffner 
449856f23edSMike Heffner /*
450856f23edSMike Heffner  * Update the mail file with any new messages that have
451856f23edSMike Heffner  * come in since we started reading mail.
452856f23edSMike Heffner  */
453856f23edSMike Heffner int
inc(void * v __unused)454640e31deSPhilippe Charnier inc(void *v __unused)
455856f23edSMike Heffner {
456856f23edSMike Heffner 	int nmsg, mdot;
457856f23edSMike Heffner 
458856f23edSMike Heffner 	nmsg = incfile();
459856f23edSMike Heffner 
460856f23edSMike Heffner 	if (nmsg == 0)
461856f23edSMike Heffner 		printf("No new mail.\n");
462856f23edSMike Heffner 	else if (nmsg > 0) {
463856f23edSMike Heffner 		mdot = newfileinfo(msgCount - nmsg);
464856f23edSMike Heffner 		dot = &message[mdot - 1];
465856f23edSMike Heffner 	} else
466856f23edSMike Heffner 		printf("\"inc\" command failed...\n");
467856f23edSMike Heffner 
468856f23edSMike Heffner 	return (0);
469856f23edSMike Heffner }
470