lint
[unix-history] / usr / src / usr.sbin / sendmail / src / srvrsmtp.c
/*
* Copyright (c) 1983, 1995 Eric P. Allman
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*/
# include "sendmail.h"
#ifndef lint
#ifdef SMTP
static char sccsid[] = "@(#)srvrsmtp.c 8.75 (Berkeley) %G% (with SMTP)";
#else
static char sccsid[] = "@(#)srvrsmtp.c 8.75 (Berkeley) %G% (without SMTP)";
#endif
#endif /* not lint */
# include <errno.h>
# ifdef SMTP
/*
** SMTP -- run the SMTP protocol.
**
** Parameters:
** none.
**
** Returns:
** never.
**
** Side Effects:
** Reads commands from the input channel and processes
** them.
*/
struct cmd
{
char *cmdname; /* command name */
int cmdcode; /* internal code, see below */
};
/* values for cmdcode */
# define CMDERROR 0 /* bad command */
# define CMDMAIL 1 /* mail -- designate sender */
# define CMDRCPT 2 /* rcpt -- designate recipient */
# define CMDDATA 3 /* data -- send message text */
# define CMDHOPS 4 /* hops -- specify hop count */
# define CMDRSET 4 /* rset -- reset state */
# define CMDVRFY 5 /* vrfy -- verify address */
# define CMDEXPN 6 /* expn -- expand address */
# define CMDNOOP 7 /* noop -- do nothing */
# define CMDQUIT 8 /* quit -- close connection and die */
# define CMDHELO 9 /* helo -- be polite */
# define CMDHELP 10 /* help -- give usage info */
# define CMDEHLO 11 /* ehlo -- extended helo (RFC 1425) */
/* non-standard commands */
# define CMDONEX 16 /* onex -- sending one transaction only */
# define CMDVERB 17 /* verb -- go into verbose mode */
/* use this to catch and log "door handle" attempts on your system */
# define CMDLOGBOGUS 23 /* bogus command that should be logged */
/* debugging-only commands, only enabled if SMTPDEBUG is defined */
# define CMDDBGQSHOW 24 /* showq -- show send queue */
# define CMDDBGDEBUG 25 /* debug -- set debug mode */
static struct cmd CmdTab[] =
{
"mail", CMDMAIL,
"rcpt", CMDRCPT,
"data", CMDDATA,
"rset", CMDRSET,
"vrfy", CMDVRFY,
"expn", CMDEXPN,
"expn", CMDVRFY,
"help", CMDHELP,
"noop", CMDNOOP,
"quit", CMDQUIT,
"helo", CMDHELO,
"ehlo", CMDEHLO,
"verb", CMDVERB,
"onex", CMDONEX,
"hops", CMDHOPS,
/*
* remaining commands are here only
* to trap and log attempts to use them
*/
"showq", CMDDBGQSHOW,
"debug", CMDDBGDEBUG,
"wiz", CMDLOGBOGUS,
NULL, CMDERROR,
};
bool OneXact = FALSE; /* one xaction only this run */
char *CurSmtpClient; /* who's at the other end of channel */
static char *skipword();
extern char RealUserName[];
#define MAXBADCOMMANDS 25 /* maximum number of bad commands */
void
smtp(e)
register ENVELOPE *e;
{
register char *p;
register struct cmd *c;
char *cmd;
extern ADDRESS *sendto();
ADDRESS *a;
hasmail = FALSE;
if (fileno(OutChannel) != fileno(stdout))
{
/* arrange for debugging output to go to remote host */
(void) dup2(fileno(OutChannel), fileno(stdout));
}
settime(e);
peerhostname = RealHostName;
if (peerhostname == NULL)
peerhostname = "localhost";
CurHostName = peerhostname;
CurSmtpClient = macvalue('_', e);
if (CurSmtpClient == NULL)
CurSmtpClient = CurHostName;
setproctitle("server %s startup", CurSmtpClient);
expand("\201e", inp, sizeof inp, e);
/* output the first line, inserting "ESMTP" as second word */
p = strchr(inp, '\n');
if (p != NULL)
*p++ = '\0';
id = strchr(inp, ' ');
if (id == NULL)
id = &inp[strlen(inp)];
cmd = p == NULL ? "220 %.*s ESMTP%s" : "220-%.*s ESMTP%s";
message(cmd, id - inp, inp, id);
/* output remaining lines */
while ((id = p) != NULL && (p = strchr(id, '\n')) != NULL)
{
*p++ = '\0';
if (isascii(*id) && isspace(*id))
id++;
message("220-%s", id);
}
if (id != NULL)
{
if (isascii(*id) && isspace(*id))
id++;
message("220 %s", id);
}
protocol = NULL;
sendinghost = macvalue('s', e);
gothello = FALSE;
gotmail = FALSE;
for (;;)
{
/* arrange for backout */
if (setjmp(TopFrame) > 0)
{
/* if() nesting is necessary for Cray UNICOS */
if (InChild)
{
QuickAbort = FALSE;
SuprErrs = TRUE;
finis();
}
}
QuickAbort = FALSE;
HoldErrs = FALSE;
LogUsrErrs = FALSE;
e->e_flags &= ~(EF_VRFYONLY|EF_GLOBALERRS);
/* setup for the read */
e->e_to = NULL;
Errors = 0;
(void) fflush(stdout);
/* read the input line */
SmtpPhase = "server cmd read";
setproctitle("server %s cmd read", CurHostName);
p = sfgets(inp, sizeof inp, InChannel, TimeOuts.to_nextcommand,
SmtpPhase);
/* handle errors */
if (p == NULL)
{
/* end of file, just die */
disconnect(1, e);
message("421 %s Lost input channel from %s",
MyHostName, CurSmtpClient);
#ifdef LOG
if (LogLevel > (gotmail ? 1 : 19))
syslog(LOG_NOTICE, "lost input channel from %s",
CurSmtpClient);
#endif
if (InChild)
ExitStat = EX_QUIT;
finis();
}
/* clean up end of line */
fixcrlf(inp, TRUE);
/* echo command to transcript */
if (e->e_xfp != NULL)
fprintf(e->e_xfp, "<<< %s\n", inp);
if (e->e_id == NULL)
setproctitle("%s: %.80s", CurSmtpClient, inp);
else
setproctitle("%s %s: %.80s", e->e_id, CurSmtpClient, inp);
/* break off command */
for (p = inp; isascii(*p) && isspace(*p); p++)
continue;
cmd = cmdbuf;
while (*p != '\0' &&
!(isascii(*p) && isspace(*p)) &&
cmd < &cmdbuf[sizeof cmdbuf - 2])
*cmd++ = *p++;
*cmd = '\0';
/* throw away leading whitespace */
while (isascii(*p) && isspace(*p))
p++;
/* decode command */
for (c = CmdTab; c->cmdname != NULL; c++)
{
if (!strcasecmp(c->cmdname, cmdbuf))
break;
}
/* reset errors */
errno = 0;
/* process command */
switch (c->cmdcode)
{
case CMDHELO: /* hello -- introduce yourself */
case CMDEHLO: /* extended hello */
if (c->cmdcode == CMDEHLO)
{
protocol = "ESMTP";
SmtpPhase = "server EHLO";
}
else
{
protocol = "SMTP";
SmtpPhase = "server HELO";
}
/* check for valid domain name (re 1123 5.2.5) */
if (*p == '\0')
{
message("501 %s requires domain address",
cmdbuf);
break;
}
else
{
register char *q;
for (q = p; *q != '\0'; q++)
{
if (!isascii(*q))
break;
if (isalnum(*q))
continue;
if (strchr("[].-_#", *q) == NULL)
break;
}
if (*q != '\0')
{
message("501 Invalid domain name");
break;
}
}
sendinghost = newstr(p);
message("250", "%s Hello %s, pleased to meet you", HostName, p);
break;
case CMDMAIL: /* mail -- designate sender */
SmtpPhase = "server MAIL";
/* check for validity of this command */
if (!gothello)
{
/* set sending host to our known value */
if (sendinghost == NULL)
sendinghost = peerhostname;
if (bitset(PRIV_NEEDMAILHELO, PrivacyFlags))
{
message("503 Polite people say HELO first");
break;
}
}
if (gotmail)
{
message("503 Sender already specified");
if (InChild)
finis();
break;
}
if (InChild)
{
errno = 0;
syserr("503 Nested MAIL command: MAIL %s", p);
finis();
}
/* fork a subprocess to process this command */
if (runinchild("SMTP-MAIL", e) > 0)
break;
if (!gothello)
{
auth_warning(e,
"Host %s didn't use HELO protocol",
peerhostname);
}
#ifdef PICKY_HELO_CHECK
if (strcasecmp(sendinghost, peerhostname) != 0 &&
(strcasecmp(peerhostname, "localhost") != 0 ||
strcasecmp(sendinghost, MyHostName) != 0))
{
auth_warning(e, "Host %s claimed to be %s",
peerhostname, sendinghost);
}
#endif
if (protocol == NULL)
protocol = "SMTP";
define('r', protocol, e);
define('s', sendinghost, e);
initsys(e);
nrcpts = 0;
e->e_flags |= EF_LOGSENDER|EF_CLRQUEUE;
setproctitle("%s %s: %.80s", e->e_id, CurSmtpClient, inp);
/* child -- go do the processing */
p = skipword(p, "from");
if (p == NULL)
break;
if (setjmp(TopFrame) > 0)
{
/* this failed -- undo work */
if (InChild)
{
QuickAbort = FALSE;
SuprErrs = TRUE;
e->e_flags &= ~EF_FATALERRS;
finis();
}
break;
}
QuickAbort = TRUE;
/* must parse sender first */
delimptr = NULL;
setsender(p, e, &delimptr, FALSE);
p = delimptr;
if (p != NULL && *p != '\0')
*p++ = '\0';
/* check for possible spoofing */
if (RealUid != 0 && OpMode == MD_SMTP &&
!bitnset(M_LOCALMAILER, e->e_from.q_mailer->m_flags) &&
strcmp(e->e_from.q_user, RealUserName) != 0)
{
auth_warning(e, "%s owned process doing -bs",
RealUserName);
}
/* now parse ESMTP arguments */
e->e_msgsize = 0;
while (p != NULL && *p != '\0')
{
char *kp;
char *vp = NULL;
extern void mail_esmtp_args __P((char *, char *, ENVELOPE *));
/* locate the beginning of the keyword */
while (isascii(*p) && isspace(*p))
p++;
if (*p == '\0')
break;
kp = p;
/* skip to the value portion */
while (isascii(*p) && isalnum(*p) || *p == '-')
p++;
if (*p == '=')
{
*p++ = '\0';
vp = p;
/* skip to the end of the value */
while (*p != '\0' && *p != ' ' &&
!(isascii(*p) && iscntrl(*p)) &&
*p != '=')
p++;
}
if (*p != '\0')
*p++ = '\0';
if (tTd(19, 1))
printf("MAIL: got arg %s=\"%s\"\n", kp,
vp == NULL ? "<null>" : vp);
mail_esmtp_args(kp, vp, e);
}
if (MaxMessageSize > 0 && e->e_msgsize > MaxMessageSize)
{
usrerr("552 Message size exceeds fixed maximum message size (%ld)",
MaxMessageSize);
/* NOTREACHED */
}
if (!enoughspace(e->e_msgsize))
{
message("452 Insufficient disk space; try again later");
break;
}
message("250 Sender ok");
gotmail = TRUE;
/* optimize: non-interactive, don't expand aliases */
if (e->e_sendmode != SM_DELIVER)
e->e_flags |= EF_VRFYONLY;
break;
case CMDRCPT: /* rcpt -- designate recipient */
if (!gotmail)
{
usrerr("503 Need MAIL before RCPT");
break;
}
SmtpPhase = "server RCPT";
if (setjmp(TopFrame) > 0)
{
e->e_flags &= ~EF_FATALERRS;
break;
}
QuickAbort = TRUE;
LogUsrErrs = TRUE;
p = skipword(p, "to");
if (p == NULL)
break;
a = sendto(p, 1, (ADDRESS *) NULL, 0);
# ifdef DEBUG
if (Debug > 1)
printaddr(a, TRUE);
# endif DEBUG
if (Errors != 0)
break;
/* no errors during parsing, but might be a duplicate */
e->e_to = p;
if (!bitset(QBADADDR, a->q_flags))
{
message("250 Recipient ok%s",
bitset(QQUEUEUP, a->q_flags) ?
" (will queue)" : "");
nrcpts++;
}
else
{
/* punt -- should keep message in ADDRESS.... */
message("550 Addressee unknown");
}
e->e_to = NULL;
break;
case CMDDATA: /* data -- text of mail */
SmtpPhase = "server DATA";
if (!gotmail)
{
message("503 Need MAIL command");
break;
}
else if (nrcpts <= 0)
{
message("503 Need RCPT (recipient)");
break;
}
/* check to see if we need to re-expand aliases */
/* also reset QBADADDR on already-diagnosted addrs */
doublequeue = FALSE;
for (a = e->e_sendqueue; a != NULL; a = a->q_next)
{
if (bitset(QVERIFIED, a->q_flags))
{
/* need to re-expand aliases */
doublequeue = TRUE;
}
if (bitset(QBADADDR, a->q_flags))
{
/* make this "go away" */
a->q_flags |= QDONTSEND;
a->q_flags &= ~QBADADDR;
}
}
/* collect the text of the message */
SmtpPhase = "collect";
buffer_errors();
collect(InChannel, TRUE, doublequeue, NULL, e);
flush_errors(TRUE);
if (Errors != 0)
goto abortmessage;
/* make sure we actually do delivery */
e->e_flags &= ~EF_CLRQUEUE;
/* from now on, we have to operate silently */
buffer_errors();
e->e_errormode = EM_MAIL;
/*
** Arrange to send to everyone.
** If sending to multiple people, mail back
** errors rather than reporting directly.
** In any case, don't mail back errors for
** anything that has happened up to
** now (the other end will do this).
** Truncate our transcript -- the mail has gotten
** to us successfully, and if we have
** to mail this back, it will be easier
** on the reader.
** Then send to everyone.
** Finally give a reply code. If an error has
** already been given, don't mail a
** message back.
** We goose error returns by clearing error bit.
*/
SmtpPhase = "delivery";
e->e_xfp = freopen(queuename(e, 'x'), "w", e->e_xfp);
id = e->e_id;
if (doublequeue)
{
/* make sure it is in the queue */
queueup(e, TRUE, FALSE);
if (e->e_sendmode == SM_QUEUE)
e->e_flags |= EF_KEEPQUEUE;
}
else
{
/* send to all recipients */
sendall(e, SM_DEFAULT);
}
e->e_to = NULL;
/* issue success message */
message("250 %s Message accepted for delivery", id);
/* if we just queued, poke it */
if (doublequeue && e->e_sendmode != SM_QUEUE)
{
extern pid_t dowork();
unlockqueue(e);
(void) dowork(id, TRUE, TRUE, e);
}
/* now make it really happen */
if (!Verbose && e->e_sendmode != SM_QUEUE)
dowork(id, TRUE, e);
abortmessage:
/* if in a child, pop back to our parent */
if (InChild)
finis();
/* clean up a bit */
gotmail = FALSE;
dropenvelope(e);
CurEnv = e = newenvelope(e, CurEnv);
e->e_flags = BlankEnvelope.e_flags;
break;
case CMDRSET: /* rset -- reset state */
message("250 Reset state");
/* arrange to ignore any current send list */
e->e_sendqueue = NULL;
e->e_flags |= EF_CLRQUEUE;
if (InChild)
finis();
/* clean up a bit */
gotmail = FALSE;
dropenvelope(e);
CurEnv = e = newenvelope(e, CurEnv);
break;
case CMDVRFY: /* vrfy -- verify address */
case CMDEXPN: /* expn -- expand address */
vrfy = c->cmdcode == CMDVRFY;
if (bitset(vrfy ? PRIV_NOVRFY : PRIV_NOEXPN,
PrivacyFlags))
{
if (vrfy)
message("252 Cannot VRFY user; try RCPT to attempt delivery (or try finger)");
else
message("502 Sorry, we do not allow this operation");
#ifdef LOG
if (LogLevel > 5)
syslog(LOG_INFO, "%s: %s [rejected]",
CurSmtpClient, inp);
#endif
break;
}
else if (!gothello &&
bitset(vrfy ? PRIV_NEEDVRFYHELO : PRIV_NEEDEXPNHELO,
PrivacyFlags))
{
message("503 I demand that you introduce yourself first");
break;
}
if (runinchild(vrfy ? "SMTP-VRFY" : "SMTP-EXPN", e) > 0)
break;
#ifdef LOG
if (LogLevel > 5)
syslog(LOG_INFO, "%s: %s", CurSmtpClient, inp);
#endif
paddrtree(a);
break;
case CMDHELP: /* help -- give user info */
help(p);
break;
case CMDNOOP: /* noop -- do nothing */
message("250 OK");
break;
case CMDQUIT: /* quit -- leave mail */
message("221 %s closing connection", MyHostName);
doquit:
/* arrange to ignore any current send list */
e->e_sendqueue = NULL;
/* avoid future 050 messages */
disconnect(1, e);
if (InChild)
ExitStat = EX_QUIT;
finis();
case CMDVERB: /* set verbose mode */
if (bitset(PRIV_NOEXPN, PrivacyFlags))
{
/* this would give out the same info */
message("502 Verbose unavailable");
break;
}
Verbose = TRUE;
e->e_sendmode = SM_DELIVER;
message("250 Verbose mode");
break;
case CMDONEX: /* doing one transaction only */
OneXact = TRUE;
message("250 Only one transaction");
break;
# ifdef SMTPDEBUG
case CMDDBGQSHOW: /* show queues */
printf("Send Queue=");
printaddr(e->e_sendqueue, TRUE);
break;
case CMDDBGDEBUG: /* set debug mode */
tTsetup(tTdvect, sizeof tTdvect, "0-99.1");
tTflag(p);
message("200 Debug set");
break;
# else /* not SMTPDEBUG */
case CMDDBGQSHOW: /* show queues */
case CMDDBGDEBUG: /* set debug mode */
# endif /* SMTPDEBUG */
case CMDLOGBOGUS: /* bogus command */
# ifdef LOG
if (LogLevel > 0)
syslog(LOG_CRIT,
"\"%s\" command from %s (%s)",
c->cmdname, peerhostname,
anynet_ntoa(&RealHostAddr));
# endif
/* FALL THROUGH */
case CMDERROR: /* unknown command */
if (++badcommands > MAXBADCOMMANDS)
{
message("421 %s Too many bad commands; closing connection",
MyHostName);
goto doquit;
}
message("500 Command unrecognized");
break;
default:
errno = 0;
syserr("500 smtp: unknown code %d", c->cmdcode);
break;
}
}
}
\f/*
** SKIPWORD -- skip a fixed word.
**
** Parameters:
** p -- place to start looking.
** w -- word to skip.
**
** Returns:
** p following w.
** NULL on error.
**
** Side Effects:
** clobbers the p data area.
*/
static char *
skipword(p, w)
register char *p;
char *w;
{
register char *q;
char *firstp = p;
/* find beginning of word */
while (isascii(*p) && isspace(*p))
p++;
q = p;
/* find end of word */
while (*p != '\0' && *p != ':' && !(isascii(*p) && isspace(*p)))
p++;
while (isascii(*p) && isspace(*p))
*p++ = '\0';
if (*p != ':')
{
syntax:
message("501 Syntax error in parameters scanning \"%s\"",
firstp);
Errors++;
return (NULL);
}
*p++ = '\0';
while (isascii(*p) && isspace(*p))
p++;
if (*p == '\0')
goto syntax;
/* see if the input word matches desired word */
if (strcasecmp(q, w))
goto syntax;
return (p);
}
\f/*
** MAIL_ESMTP_ARGS -- process ESMTP arguments from MAIL line
**
** Parameters:
** kp -- the parameter key.
** vp -- the value of that parameter.
** e -- the envelope.
**
** Returns:
** none.
*/
void
mail_esmtp_args(kp, vp, e)
char *kp;
char *vp;
ENVELOPE *e;
{
if (strcasecmp(kp, "size") == 0)
{
if (vp == NULL)
{
usrerr("501 SIZE requires a value");
/* NOTREACHED */
}
# if defined(__STDC__) && !defined(BROKEN_ANSI_LIBRARY)
e->e_msgsize = strtoul(vp, (char **) NULL, 10);
# else
e->e_msgsize = strtol(vp, (char **) NULL, 10);
# endif
}
else if (strcasecmp(kp, "body") == 0)
{
if (vp == NULL)
{
usrerr("501 BODY requires a value");
/* NOTREACHED */
}
if (strcasecmp(vp, "8bitmime") == 0)
{
SevenBitInput = FALSE;
e->e_flags |= EF_NL_NOT_EOL;
}
else if (strcasecmp(vp, "7bit") == 0)
{
SevenBitInput = TRUE;
}
else
{
usrerr("501 Unknown BODY type %s",
vp);
/* NOTREACHED */
}
e->e_bodytype = newstr(vp);
}
else if (strcasecmp(kp, "envid") == 0)
{
if (vp == NULL)
{
usrerr("501 ENVID requires a value");
/* NOTREACHED */
}
if (!xtextok(vp))
{
usrerr("501 Syntax error in ENVID parameter value");
/* NOTREACHED */
}
if (e->e_envid != NULL)
{
usrerr("501 Duplicate ENVID parameter");
/* NOTREACHED */
}
e->e_envid = newstr(vp);
}
else if (strcasecmp(kp, "ret") == 0)
{
if (vp == NULL)
{
usrerr("501 RET requires a value");
/* NOTREACHED */
}
if (bitset(EF_RET_PARAM, e->e_flags))
{
usrerr("501 Duplicate RET parameter");
/* NOTREACHED */
}
e->e_flags |= EF_RET_PARAM;
if (strcasecmp(vp, "hdrs") == 0)
e->e_flags |= EF_NO_BODY_RETN;
else if (strcasecmp(vp, "full") != 0)
{
usrerr("501 Bad argument \"%s\" to RET", vp);
/* NOTREACHED */
}
}
else
{
usrerr("501 %s parameter unrecognized", kp);
/* NOTREACHED */
}
}
\f/*
** RCPT_ESMTP_ARGS -- process ESMTP arguments from RCPT line
**
** Parameters:
** a -- the address corresponding to the To: parameter.
** kp -- the parameter key.
** vp -- the value of that parameter.
** e -- the envelope.
**
** Returns:
** none.
*/
void
rcpt_esmtp_args(a, kp, vp, e)
ADDRESS *a;
char *kp;
char *vp;
ENVELOPE *e;
{
if (strcasecmp(kp, "notify") == 0)
{
char *p;
if (vp == NULL)
{
usrerr("501 NOTIFY requires a value");
/* NOTREACHED */
}
a->q_flags &= ~(QPINGONSUCCESS|QPINGONFAILURE|QPINGONDELAY);
a->q_flags |= QHASNOTIFY;
if (strcasecmp(vp, "never") == 0)
return;
for (p = vp; p != NULL; vp = p)
{
p = strchr(p, ',');
if (p != NULL)
*p++ = '\0';
if (strcasecmp(vp, "success") == 0)
a->q_flags |= QPINGONSUCCESS;
else if (strcasecmp(vp, "failure") == 0)
a->q_flags |= QPINGONFAILURE;
else if (strcasecmp(vp, "delay") == 0)
a->q_flags |= QPINGONDELAY;
else
{
usrerr("501 Bad argument \"%s\" to NOTIFY",
vp);
/* NOTREACHED */
}
}
}
else if (strcasecmp(kp, "orcpt") == 0)
{
if (vp == NULL)
{
usrerr("501 ORCPT requires a value");
/* NOTREACHED */
}
if (!xtextok(vp))
{
usrerr("501 Syntax error in ORCPT parameter value");
/* NOTREACHED */
}
if (a->q_orcpt != NULL)
{
usrerr("501 Duplicate ORCPT parameter");
/* NOTREACHED */
}
a->q_orcpt = newstr(vp);
}
else
{
usrerr("501 %s parameter unrecognized", kp);
/* NOTREACHED */
}
}
\f/*
** PRINTVRFYADDR -- print an entry in the verify queue
**
** Parameters:
** a -- the address to print
** last -- set if this is the last one.
**
** Returns:
** none.
**
** Side Effects:
** Prints the appropriate 250 codes.
*/
void
printvrfyaddr(a, last)
register ADDRESS *a;
bool last;
{
char fmtbuf[20];
strcpy(fmtbuf, "250");
fmtbuf[3] = last ? ' ' : '-';
if (a->q_fullname == NULL)
{
if (strchr(a->q_user, '@') == NULL)
strcpy(&fmtbuf[4], "<%s@%s>");
else
strcpy(&fmtbuf[4], "<%s>");
message(fmtbuf, a->q_user, MyHostName);
}
else
{
if (strchr(a->q_user, '@') == NULL)
strcpy(&fmtbuf[4], "%s <%s@%s>");
else
strcpy(&fmtbuf[4], "%s <%s>");
message(fmtbuf, a->q_fullname, a->q_user, MyHostName);
}
}
\f/*
** HELP -- implement the HELP command.
**
** Parameters:
** topic -- the topic we want help for.
**
** Returns:
** none.
**
** Side Effects:
** outputs the help file to message output.
*/
void
help(topic)
char *topic;
{
register FILE *hf;
int len;
bool noinfo;
char buf[MAXLINE];
extern char Version[];
if (HelpFile == NULL || (hf = fopen(HelpFile, "r")) == NULL)
{
/* no help */
errno = 0;
message("502 Sendmail %s -- HELP not implemented", Version);
return;
}
if (topic == NULL || *topic == '\0')
{
topic = "smtp";
message("214-This is Sendmail version %s", Version);
noinfo = FALSE;
}
else
{
makelower(topic);
noinfo = TRUE;
}
len = strlen(topic);
while (fgets(buf, sizeof buf, hf) != NULL)
{
if (strncmp(buf, topic, len) == 0)
{
register char *p;
p = strchr(buf, '\t');
if (p == NULL)
p = buf;
else
p++;
fixcrlf(p, TRUE);
message("214-%s", p);
noinfo = FALSE;
}
}
if (noinfo)
message("504 HELP topic unknown");
else
message("214 End of HELP info");
(void) fclose(hf);
}
\f/*
** RUNINCHILD -- return twice -- once in the child, then in the parent again
**
** Parameters:
** label -- a string used in error messages
**
** Returns:
** zero in the child
** one in the parent
**
** Side Effects:
** none.
*/
int
runinchild(label, e)
char *label;
register ENVELOPE *e;
{
int childpid;
if (!OneXact)
{
childpid = dofork();
if (childpid < 0)
{
syserr("451 %s: cannot fork", label);
return (1);
}
if (childpid > 0)
{
auto int st;
/* parent -- wait for child to complete */
setproctitle("server %s child wait", CurHostName);
st = waitfor(childpid);
if (st == -1)
syserr("451 %s: lost child", label);
else if (!WIFEXITED(st))
syserr("451 %s: died on signal %d",
label, st & 0177);
/* if we exited on a QUIT command, complete the process */
if (WEXITSTATUS(st) == EX_QUIT)
{
disconnect(1, e);
finis();
}
return (1);
}
else
{
/* child */
InChild = TRUE;
QuickAbort = FALSE;
clearenvelope(e, FALSE);
}
}
/* open alias database */
initmaps(FALSE, e);
return (0);
}
\f/*
** PADDRTREE -- print address tree
**
** Used by VRFY and EXPD to dump the tree of addresses produced.
**
** Parameters:
** a -- address of root.
**
** Returns:
** none.
**
** Side Effects:
** prints the tree in a nice order.
*/
paddrtree(a)
register ADDRESS *a;
{
static ADDRESS *prev;
static int lev;
if (a == NULL)
return;
lev++;
if (!bitset(QDONTSEND, a->q_flags))
{
if (prev != NULL)
{
if (prev->q_fullname != NULL)
message("250-", "%s <%s>", prev->q_fullname, prev->q_paddr);
else
message("250-", "<%s>", prev->q_paddr);
}
prev = a;
}
paddrtree(a->q_child);
paddrtree(a->q_sibling);
if (--lev <= 0)
{
if (prev != NULL)
{
/* last one */
if (prev->q_fullname != NULL)
message("250", "%s <%s>", prev->q_fullname, prev->q_paddr);
else
message("250", "<%s>", prev->q_paddr);
prev = NULL;
}
else
message("550", "User unknown");
}
}
# endif /* SMTP */