NetBSD/usr.bin/mail/cmd1.c
christos 798fbc606d More fixes from Anon Ymous:
1) Removed the -B flag (it was stupid on my part) and added a short
   description indicating how to accomplish the same thing under the
   "Sending Mail" section of man mail(1).

2) Added a -H flag to dump the headers and exit.  It takes optional
   flags to restrict to old, new, read, unread, and deleted messages
   (the later being kind of useless - it shares code with something
   that already had it).

3) Restored the 'Save' command which somehow got mistakenly removed in
   the last commit and add documentation for it!  (My apologies to
   its author.)

4) Added a 'mkread' command to mark messages as read (the inverse of
   'unread').  Should we also have a 'mknew' command?

5) Added a 'smopts' command to keep a database of addresses and
   sendmail options to be used when sending messages to those
   addresses.  See man mail(1) for a fuller description.

6) Added 'indentpreamble' and 'indentpostscript' variables whose
   values are inserted before and after a quoted message (~m or ~M
   escapes).
=20
7) Added string formatting abilities for the 'prompt', 'insertpreamble',
   'insertpostscript', and header display strings.  These strings
   support all the strftime() format parameters as well as many more
   specific to mail (see man mail(1)).

8) Fix the -a flag so that it only takes a single filename, unless
   "mime-attach-list" is defined.  This is more conventional and avoids
   unexpected whitespace issues.
2006-10-31 20:07:32 +00:00

707 lines
13 KiB
C

/* $NetBSD: cmd1.c,v 1.27 2006/10/31 20:07:32 christos Exp $ */
/*-
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)cmd1.c 8.2 (Berkeley) 4/20/95";
#else
__RCSID("$NetBSD: cmd1.c,v 1.27 2006/10/31 20:07:32 christos Exp $");
#endif
#endif /* not lint */
#include "rcv.h"
#include "extern.h"
#include "format.h"
#ifdef MIME_SUPPORT
#include "mime.h"
#endif
/*
* Mail -- a mail program
*
* User commands.
*/
/*
* Print the current active headings.
* Don't change dot if invoker didn't give an argument.
*/
static int screen;
int
headers(void *v)
{
int *msgvec = v;
int n, mesg, flag;
struct message *mp;
int size;
size = screensize();
n = msgvec[0];
if (n != 0)
screen = (n-1)/size;
if (screen < 0)
screen = 0;
mp = &message[screen * size];
if (mp >= &message[msgCount])
mp = &message[msgCount - size];
if (mp < &message[0])
mp = &message[0];
flag = 0;
mesg = mp - &message[0];
if (dot != &message[n - 1])
dot = mp;
for (; mp < &message[msgCount]; mp++) {
mesg++;
if (mp->m_flag & MDELETED)
continue;
if (flag++ >= size)
break;
printhead(mesg);
}
if (flag == 0) {
(void)printf("No more mail.\n");
return(1);
}
return(0);
}
/*
* Scroll to the next/previous screen
*/
int
scroll(void *v)
{
char *arg = v;
int s, size;
int cur[1];
cur[0] = 0;
size = screensize();
s = screen;
switch (*arg) {
case 0:
case '+':
s++;
if (s * size >= msgCount) {
(void)printf("On last screenful of messages\n");
return(0);
}
screen = s;
break;
case '-':
if (--s < 0) {
(void)printf("On first screenful of messages\n");
return(0);
}
screen = s;
break;
default:
(void)printf("Unrecognized scrolling command \"%s\"\n", arg);
return(1);
}
return(headers(cur));
}
/*
* Compute screen size.
*/
int
screensize(void)
{
int s;
char *cp;
if ((cp = value("screen")) != NULL && (s = atoi(cp)) > 0)
return s;
return screenheight - 4;
}
/*
* Print out the headlines for each message
* in the passed message list.
*/
int
from(void *v)
{
int *msgvec = v;
int *ip;
for (ip = msgvec; *ip != 0; ip++)
printhead(*ip);
if (--ip >= msgvec)
dot = &message[*ip - 1];
return(0);
}
/*
* Print out the header of a specific message.
* This is a slight improvement to the standard one.
*/
void
printhead(int mesg)
{
#if 1
const char *fmtstr;
char *msgline;
fmtstr = value(ENAME_HEADER_FORMAT);
/*
* XXX - should we use the old code here if
* value(ENAME_HEADER_FORMAT) is null?
*/
if (fmtstr == NULL)
fmtstr = DEFAULT_HEADER_FORMAT;
msgline = smsgprintf(fmtstr, &message[mesg - 1]);
if (screenwidth > 0)
msgline[screenwidth] = '\0';
(void)printf("%s\n", msgline);
#else
struct message *mp;
char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind;
char pbuf[BUFSIZ];
struct headline hl;
int subjlen;
char *name;
mp = &message[mesg - 1];
(void)mail_readline(setinput(mp), headline, LINESIZE);
if ((subjline = hfield("subject", mp)) == NULL)
subjline = hfield("subj", mp);
/*
* Bletch!
*/
curind = dot == mp ? '>' : ' ';
dispc = ' ';
if (mp->m_flag & MSAVED)
dispc = '*';
if (mp->m_flag & MPRESERVE)
dispc = 'P';
if ((mp->m_flag & (MREAD|MNEW)) == MNEW)
dispc = 'N';
if ((mp->m_flag & (MREAD|MNEW)) == 0)
dispc = 'U';
if (mp->m_flag & MBOX)
dispc = 'M';
parse(headline, &hl, pbuf);
(void)snprintf(wcount, LINESIZE, "%3ld/%-5llu", mp->m_blines,
(unsigned long long)mp->m_size);
subjlen = screenwidth - 50 - strlen(wcount);
name = value("show-rcpt") != NULL ?
skin(hfield("to", mp)) : nameof(mp, 0);
if (subjline == NULL || subjlen < 0) /* pretty pathetic */
(void)printf("%c%c%3d %-20.20s %16.16s %s\n",
curind, dispc, mesg, name, hl.l_date, wcount);
else
(void)printf("%c%c%3d %-20.20s %16.16s %s \"%.*s\"\n",
curind, dispc, mesg, name, hl.l_date, wcount,
subjlen, subjline);
#endif
}
/*
* Print out the value of dot.
*/
int
/*ARGSUSED*/
pdot(void *v __unused)
{
(void)printf("%d\n", (int)(dot - &message[0] + 1));
return(0);
}
/*
* Print out all the possible commands.
*/
int
/*ARGSUSED*/
pcmdlist(void *v __unused)
{
const struct cmd *cp;
int cc;
(void)printf("Commands are:\n");
for (cc = 0, cp = cmdtab; cp->c_name != NULL; cp++) {
cc += strlen(cp->c_name) + 2;
if (cc > 72) {
(void)printf("\n");
cc = strlen(cp->c_name) + 2;
}
if ((cp + 1)->c_name != NULL)
(void)printf("%s, ", cp->c_name);
else
(void)printf("%s\n", cp->c_name);
}
return(0);
}
#ifdef MIME_SUPPORT
static int
de_mime(const char *name)
{
const char *p;
const char *list;
#define DELIM " \t," /* list of string delimiters */
list = value(ENAME_MIME_DECODE_MSG);
if (list == NULL)
return 0;
if (list[0] == '\0')
return 1;
p = strcasestr(list, name);
if (p == NULL)
return 0;
return strchr(DELIM, p[strlen(name)]) && (
p == list || strchr(DELIM, p[-1]));
#undef DELIM
}
#endif /* MIME_SUPPORT */
/*
* Paginate messages, honor ignored fields.
*/
int
more(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 1, 1, de_mime("more"));
#else
return(type1(msgvec, 1, 1));
#endif
}
/*
* Paginate messages, even printing ignored fields.
*/
int
More(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 0, 1, de_mime("more"));
#else
return(type1(msgvec, 0, 1));
#endif
}
/*
* Type out messages, honor ignored fields.
*/
int
type(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 1, 0, de_mime("type"));
#else
return(type1(msgvec, 1, 0));
#endif
}
/*
* Type out messages, even printing ignored fields.
*/
int
Type(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 0, 0, de_mime("type"));
#else
return(type1(msgvec, 0, 0));
#endif
}
#ifdef MIME_SUPPORT
/*
* Paginate messages, honor ignored fields.
*/
int
page(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 1, 1, de_mime("page"));
#else
return(type1(msgvec, 1, 1));
#endif
}
/*
* Paginate messages, even printing ignored fields.
*/
int
Page(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 0, 1, de_mime("page"));
#else
return(type1(msgvec, 0, 1));
#endif
}
/*
* Type out messages, honor ignored fields.
*/
int
print(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 1, 0, de_mime("print"));
#else
return(type1(msgvec, 1, 0));
#endif
}
/*
* Type out messages, even printing ignored fields.
*/
int
Print(void *v)
{
int *msgvec = v;
#ifdef MIME_SUPPORT
return type1(msgvec, 0, 0, de_mime("print"));
#else
return(type1(msgvec, 0, 0));
#endif
}
/*
* Identical to type(), but with opposite mime behavior.
*/
int
view(void *v)
{
int *msgvec = v;
return type1(msgvec, 1, 0, !de_mime("print"));
}
/*
* Identical to Type(), but with opposite mime behavior.
*/
int
View(void *v)
{
int *msgvec = v;
return type1(msgvec, 0, 0, !de_mime("print"));
}
#endif /* MIME_SUPPORT */
/*
* Type out the messages requested.
*/
jmp_buf pipestop;
int
#ifdef MIME_SUPPORT
type1(int *msgvec, int doign, int dopage, int mime_decode)
#else
type1(int *msgvec, int doign, int dopage)
#endif
{
int *ip;
struct message *mp;
const char *cp;
int nlines;
/* Some volatile variables so longjmp will get the current not
* starting values. Note it is the variable that is volatile,
* not what it is pointing at! */
#ifdef MIME_SUPPORT
struct mime_info *volatile mip; /* avoid longjmp clobbering */
#endif
FILE *volatile obuf; /* avoid longjmp clobbering */
#ifdef MIME_SUPPORT
mip = NULL;
#endif
obuf = stdout;
if (setjmp(pipestop))
goto close_pipe;
if (value("interactive") != NULL &&
(dopage || (cp = value("crt")) != NULL)) {
nlines = 0;
if (!dopage) {
for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++)
nlines += message[*ip - 1].m_blines;
}
if (dopage || nlines > (*cp ? atoi(cp) : realscreenheight)) {
cp = value("PAGER");
if (cp == NULL || *cp == '\0')
cp = _PATH_MORE;
obuf = Popen(cp, "w");
if (obuf == NULL) {
warn("%s", cp);
obuf = stdout;
} else
(void)signal(SIGPIPE, brokpipe);
}
}
for (ip = msgvec; *ip && ip - msgvec < msgCount; ip++) {
mp = &message[*ip - 1];
touch(mp);
dot = mp;
if (value("quiet") == NULL)
(void)fprintf(obuf, "Message %d:\n", *ip);
#ifdef MIME_SUPPORT
if (mime_decode)
mip = mime_decode_open(mp);
(void)mime_sendmessage(mp, obuf, doign ? ignore : 0, NULL, mip);
mime_decode_close(mip);
#else
(void)sendmessage(mp, obuf, doign ? ignore : 0, NULL);
#endif
}
close_pipe:
#ifdef MIME_SUPPORT
if (mip != NULL || obuf != stdout) {
/*
* Ignore SIGPIPE so it can't cause a duplicate close.
*/
(void)signal(SIGPIPE, SIG_IGN);
mime_decode_close(mip);
if (obuf != stdout)
(void)Pclose(obuf);
(void)signal(SIGPIPE, SIG_DFL);
}
#else
if (obuf != stdout) {
/*
* Ignore SIGPIPE so it can't cause a duplicate close.
*/
(void)signal(SIGPIPE, SIG_IGN);
(void)Pclose(obuf);
(void)signal(SIGPIPE, SIG_DFL);
}
#endif
return(0);
}
/*
* Respond to a broken pipe signal --
* probably caused by quitting more.
*/
void
/*ARGSUSED*/
brokpipe(int signo __unused)
{
longjmp(pipestop, 1);
}
/*
* Pipe the current message buffer to a command.
*/
int
pipecmd(void *v)
{
char *cmd = v;
FILE *volatile obuf; /* void longjmp clobbering - we want
the current value not start value */
if (dot == NULL) {
warn("pipcmd: no current message");
return 1;
}
obuf = stdout;
if (setjmp(pipestop))
goto close_pipe;
obuf = Popen(cmd, "w");
if (obuf == NULL) {
warn("pipecmd: Popen failed: %s", cmd);
return 1;
} else
(void)signal(SIGPIPE, brokpipe);
#ifdef MIME_SUPPORT
(void)sendmessage(dot, obuf, ignoreall, NULL, NULL);
#else
(void)sendmessage(dot, obuf, ignoreall, NULL);
#endif
close_pipe:
if (obuf != stdout) {
/*
* Ignore SIGPIPE so it can't cause a duplicate close.
*/
(void)signal(SIGPIPE, SIG_IGN);
(void)Pclose(obuf);
(void)signal(SIGPIPE, SIG_DFL);
}
return 0;
}
/*
* Print the top so many lines of each desired message.
* The number of lines is taken from the variable "toplines"
* and defaults to 5.
*/
int
top(void *v)
{
int *msgvec = v;
int *ip;
struct message *mp;
int c, topl, lines, lineb;
char *valtop, linebuf[LINESIZE];
FILE *ibuf;
topl = 5;
valtop = value("toplines");
if (valtop != NULL) {
topl = atoi(valtop);
if (topl < 0 || topl > 10000)
topl = 5;
}
lineb = 1;
for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
mp = &message[*ip - 1];
touch(mp);
dot = mp;
if (value("quiet") == NULL)
(void)printf("Message %d:\n", *ip);
ibuf = setinput(mp);
c = mp->m_lines;
if (!lineb)
(void)printf("\n");
for (lines = 0; lines < c && lines <= topl; lines++) {
if (mail_readline(ibuf, linebuf, LINESIZE) < 0)
break;
(void)puts(linebuf);
lineb = blankline(linebuf);
}
}
return(0);
}
/*
* Touch all the given messages so that they will
* get mboxed.
*/
int
stouch(void *v)
{
int *msgvec = v;
int *ip;
for (ip = msgvec; *ip != 0; ip++) {
dot = &message[*ip - 1];
dot->m_flag |= MTOUCH;
dot->m_flag &= ~MPRESERVE;
}
return(0);
}
/*
* Make sure all passed messages get mboxed.
*/
int
mboxit(void *v)
{
int *msgvec = v;
int *ip;
for (ip = msgvec; *ip != 0; ip++) {
dot = &message[*ip - 1];
dot->m_flag |= MTOUCH|MBOX;
dot->m_flag &= ~MPRESERVE;
}
return(0);
}
/*
* List the folders the user currently has.
*/
int
/*ARGSUSED*/
folders(void *v __unused)
{
char dirname[PATHSIZE];
const char *cmd;
if (getfold(dirname) < 0) {
(void)printf("No value set for \"folder\"\n");
return 1;
}
if ((cmd = value("LISTER")) == NULL)
cmd = "ls";
(void)run_command(cmd, 0, -1, -1, dirname, NULL);
return 0;
}
/*
* Update the mail file with any new messages that have
* come in since we started reading mail.
*/
int
/*ARGSUSED*/
inc(void *v __unused)
{
int nmsg, mdot;
nmsg = incfile();
if (nmsg == 0) {
(void)printf("No new mail.\n");
} else if (nmsg > 0) {
mdot = newfileinfo(msgCount - nmsg);
dot = &message[mdot - 1];
} else {
(void)printf("\"inc\" command failed...\n");
}
return 0;
}