NetBSD/usr.bin/mail/v7.local.c

101 lines
2.9 KiB
C
Raw Normal View History

1998-07-27 01:58:46 +04:00
/* $NetBSD: v7.local.c,v 1.10 1998/07/26 22:07:27 mycroft Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-06-29 09:09:04 +04:00
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. 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>
1993-03-21 12:45:37 +03:00
#ifndef lint
#if 0
static char sccsid[] = "@(#)v7.local.c 8.1 (Berkeley) 6/6/93";
#else
1998-07-27 01:58:46 +04:00
__RCSID("$NetBSD: v7.local.c,v 1.10 1998/07/26 22:07:27 mycroft Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
/*
* Mail -- a mail program
*
* Version 7
*
* Local routines that are installation dependent.
*/
#include "rcv.h"
1994-06-29 09:09:04 +04:00
#include "extern.h"
1993-03-21 12:45:37 +03:00
/*
* Locate the user's mailbox file (ie, the place where new, unread
* mail is queued).
*/
1994-06-29 09:09:04 +04:00
void
1993-03-21 12:45:37 +03:00
findmail(user, buf)
char *user, *buf;
{
char *mbox;
if (!(mbox = getenv("MAIL")))
(void)snprintf(buf, PATHSIZE, "%s/%s", _PATH_MAILDIR, user);
else {
(void)strncpy(buf, mbox, PATHSIZE - 1);
buf[PATHSIZE - 1] = '\0';
}
1993-03-21 12:45:37 +03:00
}
/*
* Get rid of the queued mail.
*/
1994-06-29 09:09:04 +04:00
void
1993-03-21 12:45:37 +03:00
demail()
{
if (value("keep") != NOSTR || rm(mailname) < 0)
(void)close(creat(mailname, 0600));
1993-03-21 12:45:37 +03:00
}
/*
* Discover user login name.
*/
1998-07-27 01:58:46 +04:00
const char *
1993-03-21 12:45:37 +03:00
username()
{
1998-07-27 01:58:46 +04:00
const char *np;
uid_t uid;
1993-03-21 12:45:37 +03:00
if ((np = getenv("USER")) != NOSTR)
return np;
if ((np = getname(uid = getuid())) != NOSTR)
return np;
printf("Cannot associate a name with uid %u\n", (unsigned)uid);
return NOSTR;
1993-03-21 12:45:37 +03:00
}