2024-11-05 08:14:39 -08:00
|
|
|
/* $OpenBSD: main.c,v 1.36 2024/11/05 16:14:39 sobrado Exp $ */
|
1997-07-13 14:21:08 -07:00
|
|
|
/* $NetBSD: main.c,v 1.7 1997/05/13 06:15:57 mikel Exp $ */
|
1996-06-11 05:53:31 -07:00
|
|
|
|
1995-10-18 01:37:01 -07:00
|
|
|
/*
|
|
|
|
* 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.
|
2003-06-02 19:56:05 -07:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-10-18 01:37:01 -07:00
|
|
|
* 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 "rcv.h"
|
|
|
|
#include <fcntl.h>
|
1996-06-11 05:53:31 -07:00
|
|
|
#include <sys/ioctl.h>
|
1995-10-18 01:37:01 -07:00
|
|
|
#include "extern.h"
|
|
|
|
|
2021-01-26 10:21:47 -08:00
|
|
|
int msgCount; /* Count of messages read in */
|
|
|
|
int rcvmode; /* True if receiving mail */
|
|
|
|
int sawcom; /* Set after first command */
|
|
|
|
int senderr; /* An error while checking */
|
|
|
|
int edit; /* Indicates editing a file */
|
|
|
|
int readonly; /* Will be unable to rewrite file */
|
|
|
|
int noreset; /* String resets suspended */
|
|
|
|
int sourcing; /* Currently reading variant file */
|
|
|
|
int loading; /* Loading user definitions */
|
|
|
|
int cond; /* Current state of conditional exc. */
|
|
|
|
FILE *itf; /* Input temp file buffer */
|
|
|
|
FILE *otf; /* Output temp file buffer */
|
|
|
|
int image; /* File descriptor for image of msg */
|
|
|
|
FILE *input; /* Current command input file */
|
|
|
|
char mailname[PATHSIZE]; /* Name of current file */
|
|
|
|
char prevfile[PATHSIZE]; /* Name of previous file */
|
|
|
|
char *homedir; /* Path name of home directory */
|
|
|
|
const char
|
|
|
|
*myname; /* My login name */
|
|
|
|
off_t mailsize; /* Size of system mailbox */
|
|
|
|
int lexnumber; /* Number of TNUMBER from scan() */
|
|
|
|
char lexstring[STRINGLEN]; /* String from TSTRING, scan() */
|
|
|
|
int regretp; /* Pointer to TOS of regret tokens */
|
|
|
|
int regretstack[REGDEP]; /* Stack of regretted tokens */
|
|
|
|
char *string_stack[REGDEP]; /* Stack of regretted strings */
|
|
|
|
int numberstack[REGDEP]; /* Stack of regretted numbers */
|
|
|
|
struct message *dot; /* Pointer to current message */
|
|
|
|
struct message *message; /* The actual message structure */
|
|
|
|
struct var *variables[HSHSIZE]; /* Pointer to active var list */
|
|
|
|
struct grouphead *groups[HSHSIZE];/* Pointer to active groups */
|
|
|
|
struct ignoretab ignore[2]; /* ignored and retained fields
|
|
|
|
0 is ignore, 1 is retain */
|
|
|
|
struct ignoretab saveignore[2]; /* ignored and retained fields
|
|
|
|
on save to folder */
|
|
|
|
struct ignoretab ignoreall[2]; /* special, ignore all headers */
|
|
|
|
char **altnames; /* List of alternate names for user */
|
|
|
|
int debug; /* Debug flag set */
|
|
|
|
int screenwidth; /* Screen width, or best guess */
|
|
|
|
int screenheight; /* Screen height, or best guess,
|
|
|
|
for "header" command */
|
|
|
|
int realscreenheight; /* the real screen height */
|
|
|
|
int uflag; /* Are we in -u mode? */
|
|
|
|
sigset_t intset; /* Signal set that is just SIGINT */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The pointers for the string allocation routines,
|
|
|
|
* there are NSPACE independent areas.
|
|
|
|
* The first holds STRINGSIZE bytes, the next
|
|
|
|
* twice as much, and so on.
|
|
|
|
*/
|
|
|
|
struct strings stringdope[NSPACE];
|
|
|
|
|
2001-11-21 07:26:39 -08:00
|
|
|
__dead void usage(void);
|
|
|
|
int main(int, char **);
|
1997-11-13 16:23:41 -08:00
|
|
|
|
1995-10-18 01:37:01 -07:00
|
|
|
/*
|
|
|
|
* Mail -- a mail program
|
|
|
|
*
|
|
|
|
* Startup -- interface with user.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2001-11-21 07:26:39 -08:00
|
|
|
main(int argc, char **argv)
|
1995-10-18 01:37:01 -07:00
|
|
|
{
|
1997-11-13 16:23:41 -08:00
|
|
|
int i;
|
1995-10-18 01:37:01 -07:00
|
|
|
struct name *to, *cc, *bcc, *smopts;
|
2015-01-20 08:59:07 -08:00
|
|
|
char *fromaddr;
|
1995-10-18 01:37:01 -07:00
|
|
|
char *subject;
|
|
|
|
char *ef;
|
|
|
|
char nosrc = 0;
|
1997-07-13 14:21:08 -07:00
|
|
|
char *rc;
|
2001-11-21 07:28:25 -08:00
|
|
|
extern const char version[];
|
1995-10-18 01:37:01 -07:00
|
|
|
|
2015-11-23 16:08:27 -08:00
|
|
|
if (pledge("stdio rpath wpath cpath getpw tmppath fattr tty flock proc exec",
|
2015-11-16 13:20:40 -08:00
|
|
|
NULL) == -1)
|
|
|
|
err(1, "pledge");
|
|
|
|
|
1995-10-18 01:37:01 -07:00
|
|
|
/*
|
|
|
|
* Set up a reasonable environment.
|
|
|
|
* Figure out whether we are being run interactively,
|
|
|
|
* start the SIGCHLD catcher, and so forth.
|
|
|
|
*/
|
1997-07-13 16:53:56 -07:00
|
|
|
(void)signal(SIGCHLD, sigchild);
|
2001-11-20 12:50:00 -08:00
|
|
|
(void)signal(SIGPIPE, SIG_IGN);
|
1995-10-18 01:37:01 -07:00
|
|
|
if (isatty(0))
|
|
|
|
assign("interactive", "");
|
|
|
|
image = -1;
|
|
|
|
/*
|
|
|
|
* Now, determine how we are being used.
|
|
|
|
* We successively pick off - flags.
|
|
|
|
* If there is anything left, it is the base of the list
|
|
|
|
* of users to mail to. Argp will be set to point to the
|
|
|
|
* first of these users.
|
|
|
|
*/
|
1997-07-13 17:24:24 -07:00
|
|
|
ef = NULL;
|
2001-11-21 07:26:39 -08:00
|
|
|
to = NULL;
|
|
|
|
cc = NULL;
|
|
|
|
bcc = NULL;
|
|
|
|
smopts = NULL;
|
2015-01-20 08:59:07 -08:00
|
|
|
fromaddr = NULL;
|
1997-07-13 17:24:24 -07:00
|
|
|
subject = NULL;
|
2015-01-24 12:32:46 -08:00
|
|
|
while ((i = getopt(argc, argv, "EINb:c:dfinr:s:u:v")) != -1) {
|
1995-10-18 01:37:01 -07:00
|
|
|
switch (i) {
|
|
|
|
case 'u':
|
|
|
|
/*
|
|
|
|
* Next argument is person to pretend to be.
|
|
|
|
*/
|
2015-01-15 22:39:28 -08:00
|
|
|
if (strlen(optarg) >= LOGIN_NAME_MAX)
|
2001-10-11 13:59:46 -07:00
|
|
|
errx(1, "username `%s' too long", optarg);
|
1996-09-15 19:26:02 -07:00
|
|
|
unsetenv("MAIL");
|
1995-10-18 01:37:01 -07:00
|
|
|
myname = optarg;
|
1998-09-27 14:16:42 -07:00
|
|
|
uflag = 1;
|
1995-10-18 01:37:01 -07:00
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
/*
|
|
|
|
* User wants to ignore interrupts.
|
|
|
|
* Set the variable "ignore"
|
|
|
|
*/
|
|
|
|
assign("ignore", "");
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
debug++;
|
|
|
|
break;
|
2015-01-20 08:59:07 -08:00
|
|
|
case 'r':
|
|
|
|
/*
|
|
|
|
* Set From: address
|
|
|
|
*/
|
|
|
|
fromaddr = optarg;
|
|
|
|
break;
|
1995-10-18 01:37:01 -07:00
|
|
|
case 's':
|
|
|
|
/*
|
|
|
|
* Give a subject field for sending from
|
|
|
|
* non terminal
|
|
|
|
*/
|
|
|
|
subject = optarg;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
/*
|
|
|
|
* User is specifying file to "edit" with Mail,
|
|
|
|
* as opposed to reading system mailbox.
|
2014-11-24 12:03:33 -08:00
|
|
|
* We read his mbox file unless another file
|
|
|
|
* is specified after the arguments.
|
1995-10-18 01:37:01 -07:00
|
|
|
*/
|
2014-11-24 12:03:33 -08:00
|
|
|
ef = "&";
|
1995-10-18 01:37:01 -07:00
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
/*
|
|
|
|
* User doesn't want to source /usr/lib/Mail.rc
|
|
|
|
*/
|
2015-02-08 15:40:34 -08:00
|
|
|
nosrc = 1;
|
1995-10-18 01:37:01 -07:00
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
/*
|
|
|
|
* Avoid initial header printing.
|
|
|
|
*/
|
|
|
|
assign("noheader", "");
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
/*
|
|
|
|
* Send mailer verbose flag
|
|
|
|
*/
|
|
|
|
assign("verbose", "");
|
|
|
|
break;
|
|
|
|
case 'I':
|
|
|
|
/*
|
|
|
|
* We're interactive
|
|
|
|
*/
|
|
|
|
assign("interactive", "");
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
/*
|
|
|
|
* Get Carbon Copy Recipient list
|
|
|
|
*/
|
|
|
|
cc = cat(cc, nalloc(optarg, GCC));
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
/*
|
|
|
|
* Get Blind Carbon Copy Recipient list
|
|
|
|
*/
|
|
|
|
bcc = cat(bcc, nalloc(optarg, GBCC));
|
|
|
|
break;
|
2008-07-16 08:11:16 -07:00
|
|
|
case 'E':
|
|
|
|
/*
|
|
|
|
* Don't send messages with an empty body.
|
|
|
|
*/
|
|
|
|
assign("skipempty", "");
|
|
|
|
break;
|
2001-11-20 12:50:00 -08:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
/*NOTREACHED*/
|
1995-10-18 01:37:01 -07:00
|
|
|
}
|
|
|
|
}
|
2014-11-24 12:03:33 -08:00
|
|
|
if (ef != NULL) {
|
|
|
|
/* Check for optional mailbox file name. */
|
|
|
|
if (optind < argc) {
|
|
|
|
ef = argv[optind++];
|
|
|
|
if (optind < argc)
|
|
|
|
errx(1, "Cannot give -f and people to send to");
|
|
|
|
}
|
|
|
|
} else {
|
2014-12-16 10:37:17 -08:00
|
|
|
for (i = optind; argv[i]; i++)
|
2014-11-24 12:03:33 -08:00
|
|
|
to = cat(to, nalloc(argv[i], GTO));
|
|
|
|
}
|
1995-10-18 01:37:01 -07:00
|
|
|
/*
|
|
|
|
* Check for inconsistent arguments.
|
|
|
|
*/
|
2015-01-22 08:25:07 -08:00
|
|
|
if (to == NULL && (subject != NULL || cc != NULL || bcc != NULL ||
|
|
|
|
fromaddr != NULL))
|
|
|
|
errx(1, "You must specify direct recipients with -s, -c, -b, "
|
|
|
|
"or -r");
|
2001-11-20 12:50:00 -08:00
|
|
|
/*
|
|
|
|
* Block SIGINT except where we install an explicit handler for it.
|
|
|
|
*/
|
|
|
|
sigemptyset(&intset);
|
|
|
|
sigaddset(&intset, SIGINT);
|
|
|
|
(void)sigprocmask(SIG_BLOCK, &intset, NULL);
|
|
|
|
/*
|
|
|
|
* Initialization.
|
|
|
|
*/
|
1995-10-18 01:37:01 -07:00
|
|
|
tinit();
|
|
|
|
setscreensize();
|
|
|
|
input = stdin;
|
|
|
|
rcvmode = !to;
|
|
|
|
spreserve();
|
|
|
|
if (!nosrc)
|
|
|
|
load(_PATH_MASTER_RC);
|
|
|
|
/*
|
|
|
|
* Expand returns a savestr, but load only uses the file name
|
|
|
|
* for fopen, so it's safe to do this.
|
|
|
|
*/
|
1997-07-13 14:21:08 -07:00
|
|
|
if ((rc = getenv("MAILRC")) == 0)
|
|
|
|
rc = "~/.mailrc";
|
|
|
|
load(expand(rc));
|
1995-10-18 01:37:01 -07:00
|
|
|
if (!rcvmode) {
|
2015-01-20 08:59:07 -08:00
|
|
|
mail(to, cc, bcc, smopts, fromaddr, subject);
|
1995-10-18 01:37:01 -07:00
|
|
|
/*
|
|
|
|
* why wait?
|
|
|
|
*/
|
|
|
|
exit(senderr);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Ok, we are reading mail.
|
|
|
|
* Decide whether we are editing a mailbox or reading
|
|
|
|
* the system mailbox, and open up the right stuff.
|
|
|
|
*/
|
1997-07-13 17:24:24 -07:00
|
|
|
if (ef == NULL)
|
1995-10-18 01:37:01 -07:00
|
|
|
ef = "%";
|
|
|
|
if (setfile(ef) < 0)
|
|
|
|
exit(1); /* error already reported */
|
|
|
|
|
2001-11-20 12:50:00 -08:00
|
|
|
if (value("quiet") == NULL)
|
|
|
|
(void)printf("Mail version %s. Type ? for help.\n",
|
|
|
|
version);
|
|
|
|
announce();
|
|
|
|
(void)fflush(stdout);
|
1995-10-18 01:37:01 -07:00
|
|
|
commands();
|
2001-11-20 12:50:00 -08:00
|
|
|
(void)ignoresig(SIGHUP, NULL, NULL);
|
|
|
|
(void)ignoresig(SIGINT, NULL, NULL);
|
|
|
|
(void)ignoresig(SIGQUIT, NULL, NULL);
|
1995-10-18 01:37:01 -07:00
|
|
|
quit();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute what the screen size for printing headers should be.
|
|
|
|
* We use the following algorithm for the height:
|
|
|
|
* If baud rate < 1200, use 9
|
|
|
|
* If baud rate = 1200, use 14
|
|
|
|
* If baud rate > 1200, use 24 or ws_row
|
|
|
|
* Width is either 80 or ws_col;
|
|
|
|
*/
|
|
|
|
void
|
2001-11-21 07:26:39 -08:00
|
|
|
setscreensize(void)
|
1995-10-18 01:37:01 -07:00
|
|
|
{
|
|
|
|
struct termios tbuf;
|
|
|
|
struct winsize ws;
|
|
|
|
speed_t ospeed;
|
|
|
|
|
2019-06-28 06:34:58 -07:00
|
|
|
if (ioctl(1, TIOCGWINSZ, (char *) &ws) == -1)
|
1995-10-18 01:37:01 -07:00
|
|
|
ws.ws_col = ws.ws_row = 0;
|
2019-06-28 06:34:58 -07:00
|
|
|
if (tcgetattr(1, &tbuf) == -1)
|
1995-10-18 01:37:01 -07:00
|
|
|
ospeed = 9600;
|
|
|
|
else
|
|
|
|
ospeed = cfgetospeed(&tbuf);
|
1997-07-14 08:56:23 -07:00
|
|
|
if (ospeed < B1200)
|
1995-10-18 01:37:01 -07:00
|
|
|
screenheight = 9;
|
1997-07-14 08:56:23 -07:00
|
|
|
else if (ospeed == B1200)
|
1995-10-18 01:37:01 -07:00
|
|
|
screenheight = 14;
|
|
|
|
else if (ws.ws_row != 0)
|
|
|
|
screenheight = ws.ws_row;
|
|
|
|
else
|
|
|
|
screenheight = 24;
|
|
|
|
if ((realscreenheight = ws.ws_row) == 0)
|
|
|
|
realscreenheight = 24;
|
|
|
|
if ((screenwidth = ws.ws_col) == 0)
|
|
|
|
screenwidth = 80;
|
|
|
|
}
|
2001-11-20 12:50:00 -08:00
|
|
|
|
|
|
|
__dead void
|
2001-11-21 07:26:39 -08:00
|
|
|
usage(void)
|
2001-11-20 12:50:00 -08:00
|
|
|
{
|
2008-10-08 23:48:11 -07:00
|
|
|
fprintf(stderr, "usage: %s [-dEIinv] [-b list] [-c list] "
|
2024-11-05 08:14:39 -08:00
|
|
|
"[-r from-addr] [-s subject]\n"
|
|
|
|
"%*s to-addr ...\n", __progname, (int)strlen(__progname) + 7, "");
|
2008-10-08 23:48:11 -07:00
|
|
|
fprintf(stderr, " %s [-dEIiNnv] -f [file]\n", __progname);
|
|
|
|
fprintf(stderr, " %s [-dEIiNnv] [-u user]\n", __progname);
|
2001-11-20 12:50:00 -08:00
|
|
|
exit(1);
|
|
|
|
}
|