1989-04-28 03:54:04 +00:00
|
|
|
|
/* movemail foo bar -- move file foo to file bar,
|
|
|
|
|
locking file foo the way /bin/mail respects.
|
1994-01-08 21:50:14 +00:00
|
|
|
|
Copyright (C) 1986, 1992, 1993, 1994 Free Software Foundation, Inc.
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
|
1989-10-31 16:00:17 +00:00
|
|
|
|
GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1994-01-08 21:50:14 +00:00
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1989-10-31 16:00:17 +00:00
|
|
|
|
any later version.
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
1989-10-31 16:00:17 +00:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1989-10-31 16:00:17 +00:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
/* Important notice: defining MAIL_USE_FLOCK or MAIL_USE_LOCKF *will
|
|
|
|
|
cause loss of mail* if you do it on a system that does not normally
|
|
|
|
|
use flock as its way of interlocking access to inbox files. The
|
|
|
|
|
setting of MAIL_USE_FLOCK and MAIL_USE_LOCKF *must agree* with the
|
|
|
|
|
system's own conventions. It is not a choice that is up to you.
|
1992-01-18 22:46:00 +00:00
|
|
|
|
|
|
|
|
|
So, if your system uses lock files rather than flock, then the only way
|
|
|
|
|
you can get proper operation is to enable movemail to write lockfiles there.
|
|
|
|
|
This means you must either give that directory access modes
|
|
|
|
|
that permit everyone to write lockfiles in it, or you must make movemail
|
|
|
|
|
a setuid or setgid program. */
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
/*
|
|
|
|
|
* Modified January, 1986 by Michael R. Gretzinger (Project Athena)
|
|
|
|
|
*
|
|
|
|
|
* Added POP (Post Office Protocol) service. When compiled -DPOP
|
|
|
|
|
* movemail will accept input filename arguments of the form
|
|
|
|
|
* "po:username". This will cause movemail to open a connection to
|
|
|
|
|
* a pop server running on $MAILHOST (environment variable). Movemail
|
|
|
|
|
* must be setuid to root in order to work with POP.
|
|
|
|
|
*
|
|
|
|
|
* New module: popmail.c
|
|
|
|
|
* Modified routines:
|
1991-12-07 22:01:44 +00:00
|
|
|
|
* main - added code within #ifdef MAIL_USE_POP; added setuid (getuid ())
|
1989-04-28 03:54:04 +00:00
|
|
|
|
* after POP code.
|
|
|
|
|
* New routines in movemail.c:
|
|
|
|
|
* get_errmsg - return pointer to system error message
|
|
|
|
|
*
|
1994-09-27 19:45:00 +00:00
|
|
|
|
* Modified August, 1993 by Jonathan Kamens (OpenVision Technologies)
|
|
|
|
|
*
|
|
|
|
|
* Move all of the POP code into a separate file, "pop.c".
|
|
|
|
|
* Use strerror instead of get_errmsg.
|
|
|
|
|
*
|
1989-04-28 03:54:04 +00:00
|
|
|
|
*/
|
|
|
|
|
|
1994-08-04 23:15:35 +00:00
|
|
|
|
#define NO_SHORTNAMES /* Tell config not to load remap.h */
|
|
|
|
|
#include <../src/config.h>
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/file.h>
|
1994-10-12 19:20:24 +00:00
|
|
|
|
#include <stdio.h>
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#include <errno.h>
|
1994-01-04 06:46:12 +00:00
|
|
|
|
#include <../src/syswait.h>
|
1994-09-27 19:45:00 +00:00
|
|
|
|
#ifdef MAIL_USE_POP
|
|
|
|
|
#include "pop.h"
|
|
|
|
|
#endif
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-01-06 03:57:28 +00:00
|
|
|
|
#ifdef MSDOS
|
|
|
|
|
#undef access
|
|
|
|
|
#endif /* MSDOS */
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#ifdef USG
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
1989-06-15 16:52:48 +00:00
|
|
|
|
#ifndef F_OK
|
|
|
|
|
#define F_OK 0
|
|
|
|
|
#define X_OK 1
|
|
|
|
|
#define W_OK 2
|
|
|
|
|
#define R_OK 4
|
|
|
|
|
#endif
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#endif /* USG */
|
|
|
|
|
|
1994-04-13 22:23:24 +00:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#ifdef XENIX
|
|
|
|
|
#include <sys/locking.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifdef MAIL_USE_LOCKF
|
|
|
|
|
#define MAIL_USE_SYSTEM_LOCK
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef MAIL_USE_FLOCK
|
|
|
|
|
#define MAIL_USE_SYSTEM_LOCK
|
|
|
|
|
#endif
|
|
|
|
|
|
1989-05-14 22:52:53 +00:00
|
|
|
|
#ifdef MAIL_USE_MMDF
|
|
|
|
|
extern int lk_open (), lk_close ();
|
|
|
|
|
#endif
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
/* Cancel substitutions made by config.h for Emacs. */
|
|
|
|
|
#undef open
|
|
|
|
|
#undef read
|
|
|
|
|
#undef write
|
|
|
|
|
#undef close
|
|
|
|
|
|
1992-03-09 17:40:11 +00:00
|
|
|
|
#ifndef errno
|
1989-04-28 03:54:04 +00:00
|
|
|
|
extern int errno;
|
1992-03-09 17:40:11 +00:00
|
|
|
|
#endif
|
1994-10-12 19:20:24 +00:00
|
|
|
|
char *strerror ();
|
|
|
|
|
|
|
|
|
|
void fatal ();
|
|
|
|
|
void error ();
|
|
|
|
|
void pfatal_with_name ();
|
|
|
|
|
void pfatal_and_delete ();
|
|
|
|
|
char *concat ();
|
1995-05-04 06:46:51 +00:00
|
|
|
|
long *xmalloc ();
|
1994-10-12 19:20:24 +00:00
|
|
|
|
int popmail ();
|
|
|
|
|
int pop_retr ();
|
|
|
|
|
int mbx_write ();
|
|
|
|
|
int mbx_delimit_begin ();
|
|
|
|
|
int mbx_delimit_end ();
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
/* Nonzero means this is name of a lock file to delete on fatal error. */
|
|
|
|
|
char *delete_lockname;
|
|
|
|
|
|
1994-10-12 19:20:24 +00:00
|
|
|
|
int
|
1989-04-28 03:54:04 +00:00
|
|
|
|
main (argc, argv)
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
{
|
|
|
|
|
char *inname, *outname;
|
|
|
|
|
int indesc, outdesc;
|
|
|
|
|
int nread;
|
1994-01-04 06:46:12 +00:00
|
|
|
|
WAITTYPE status;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifndef MAIL_USE_SYSTEM_LOCK
|
1989-04-28 03:54:04 +00:00
|
|
|
|
struct stat st;
|
|
|
|
|
long now;
|
|
|
|
|
int tem;
|
|
|
|
|
char *lockname, *p;
|
1992-03-28 21:00:42 +00:00
|
|
|
|
char *tempname;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
int desc;
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* not MAIL_USE_SYSTEM_LOCK */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
delete_lockname = 0;
|
|
|
|
|
|
|
|
|
|
if (argc < 3)
|
1994-10-12 19:20:24 +00:00
|
|
|
|
{
|
1995-06-26 20:28:33 +00:00
|
|
|
|
fprintf (stderr, "Usage: movemail inbox destfile\n");
|
1994-10-12 19:20:24 +00:00
|
|
|
|
exit(1);
|
|
|
|
|
}
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
inname = argv[1];
|
|
|
|
|
outname = argv[2];
|
|
|
|
|
|
1989-05-14 22:52:53 +00:00
|
|
|
|
#ifdef MAIL_USE_MMDF
|
|
|
|
|
mmdf_init (argv[0]);
|
|
|
|
|
#endif
|
|
|
|
|
|
1995-08-06 23:57:31 +00:00
|
|
|
|
if (*outname == 0)
|
|
|
|
|
fatal ("Destination file name is empty", 0);
|
|
|
|
|
|
1990-11-13 05:11:43 +00:00
|
|
|
|
/* Check access to output file. */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
if (access (outname, F_OK) == 0 && access (outname, W_OK) != 0)
|
|
|
|
|
pfatal_with_name (outname);
|
|
|
|
|
|
|
|
|
|
/* Also check that outname's directory is writeable to the real uid. */
|
|
|
|
|
{
|
1994-01-06 03:57:28 +00:00
|
|
|
|
char *buf = (char *) xmalloc (strlen (outname) + 1);
|
1994-10-12 19:20:24 +00:00
|
|
|
|
char *p;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
strcpy (buf, outname);
|
|
|
|
|
p = buf + strlen (buf);
|
|
|
|
|
while (p > buf && p[-1] != '/')
|
|
|
|
|
*--p = 0;
|
|
|
|
|
if (p == buf)
|
|
|
|
|
*p++ = '.';
|
|
|
|
|
if (access (buf, W_OK) != 0)
|
|
|
|
|
pfatal_with_name (buf);
|
|
|
|
|
free (buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef MAIL_USE_POP
|
1993-05-30 19:26:11 +00:00
|
|
|
|
if (!strncmp (inname, "po:", 3))
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1995-06-30 01:10:20 +00:00
|
|
|
|
int status;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1995-06-30 01:10:20 +00:00
|
|
|
|
status = popmail (inname + 3, outname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
exit (status);
|
|
|
|
|
}
|
|
|
|
|
|
1991-12-07 22:01:44 +00:00
|
|
|
|
setuid (getuid ());
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#endif /* MAIL_USE_POP */
|
|
|
|
|
|
1990-11-13 05:11:43 +00:00
|
|
|
|
/* Check access to input file. */
|
|
|
|
|
if (access (inname, R_OK | W_OK) != 0)
|
|
|
|
|
pfatal_with_name (inname);
|
|
|
|
|
|
1989-05-14 22:52:53 +00:00
|
|
|
|
#ifndef MAIL_USE_MMDF
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifndef MAIL_USE_SYSTEM_LOCK
|
1995-07-18 00:05:14 +00:00
|
|
|
|
/* Use a lock file named after our first argument with .lock appended:
|
1989-04-28 03:54:04 +00:00
|
|
|
|
If it exists, the mail file is locked. */
|
1991-07-25 05:31:52 +00:00
|
|
|
|
/* Note: this locking mechanism is *required* by the mailer
|
|
|
|
|
(on systems which use it) to prevent loss of mail.
|
|
|
|
|
|
|
|
|
|
On systems that use a lock file, extracting the mail without locking
|
|
|
|
|
WILL occasionally cause loss of mail due to timing errors!
|
|
|
|
|
|
|
|
|
|
So, if creation of the lock file fails
|
1995-07-18 00:05:14 +00:00
|
|
|
|
due to access permission on the mail spool directory,
|
1991-07-25 05:31:52 +00:00
|
|
|
|
you simply MUST change the permission
|
|
|
|
|
and/or make movemail a setgid program
|
|
|
|
|
so it can create lock files properly.
|
|
|
|
|
|
|
|
|
|
You might also wish to verify that your system is one
|
|
|
|
|
which uses lock files for this purpose. Some systems use other methods.
|
|
|
|
|
|
|
|
|
|
If your system uses the `flock' system call for mail locking,
|
1994-04-05 23:04:36 +00:00
|
|
|
|
define MAIL_USE_SYSTEM_LOCK in config.h or the s-*.h file
|
1991-07-25 05:31:52 +00:00
|
|
|
|
and recompile movemail. If the s- file for your system
|
1994-04-05 23:04:36 +00:00
|
|
|
|
should define MAIL_USE_SYSTEM_LOCK but does not, send a bug report
|
1991-07-25 05:31:52 +00:00
|
|
|
|
to bug-gnu-emacs@prep.ai.mit.edu so we can fix it. */
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
lockname = concat (inname, ".lock", "");
|
1993-12-24 02:17:52 +00:00
|
|
|
|
tempname = (char *) xmalloc (strlen (inname) + strlen ("EXXXXXX") + 1);
|
|
|
|
|
strcpy (tempname, inname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
p = tempname + strlen (tempname);
|
|
|
|
|
while (p != tempname && p[-1] != '/')
|
|
|
|
|
p--;
|
|
|
|
|
*p = 0;
|
|
|
|
|
strcpy (p, "EXXXXXX");
|
|
|
|
|
mktemp (tempname);
|
1991-12-07 22:01:44 +00:00
|
|
|
|
unlink (tempname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
/* Create the lock file, but not under the lock file name. */
|
|
|
|
|
/* Give up if cannot do that. */
|
1994-01-04 06:46:12 +00:00
|
|
|
|
desc = open (tempname, O_WRONLY | O_CREAT | O_EXCL, 0666);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
if (desc < 0)
|
1995-08-05 20:19:40 +00:00
|
|
|
|
{
|
1995-08-06 23:57:31 +00:00
|
|
|
|
char *message = (char *) xmalloc (strlen (tempname) + 50);
|
|
|
|
|
sprintf (message, "%s--see source file lib-src/movemail.c",
|
|
|
|
|
tempname);
|
1995-08-05 20:19:40 +00:00
|
|
|
|
pfatal_with_name (message);
|
|
|
|
|
}
|
1989-04-28 03:54:04 +00:00
|
|
|
|
close (desc);
|
|
|
|
|
|
|
|
|
|
tem = link (tempname, lockname);
|
1991-12-07 22:01:44 +00:00
|
|
|
|
unlink (tempname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
if (tem >= 0)
|
|
|
|
|
break;
|
|
|
|
|
sleep (1);
|
|
|
|
|
|
1995-05-07 22:36:27 +00:00
|
|
|
|
/* If lock file is five minutes old, unlock it.
|
|
|
|
|
Five minutes should be good enough to cope with crashes
|
|
|
|
|
and wedgitude, and long enough to avoid being fooled
|
|
|
|
|
by time differences between machines. */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
if (stat (lockname, &st) >= 0)
|
|
|
|
|
{
|
|
|
|
|
now = time (0);
|
1995-05-07 22:36:27 +00:00
|
|
|
|
if (st.st_ctime < now - 300)
|
1991-12-07 22:01:44 +00:00
|
|
|
|
unlink (lockname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
delete_lockname = lockname;
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* not MAIL_USE_SYSTEM_LOCK */
|
|
|
|
|
#endif /* not MAIL_USE_MMDF */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-01-04 06:46:12 +00:00
|
|
|
|
if (fork () == 0)
|
|
|
|
|
{
|
1994-04-12 01:28:10 +00:00
|
|
|
|
setuid (getuid ());
|
1994-01-04 06:46:12 +00:00
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifndef MAIL_USE_MMDF
|
|
|
|
|
#ifdef MAIL_USE_SYSTEM_LOCK
|
1994-01-04 06:46:12 +00:00
|
|
|
|
indesc = open (inname, O_RDWR);
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#else /* if not MAIL_USE_SYSTEM_LOCK */
|
1994-01-04 06:46:12 +00:00
|
|
|
|
indesc = open (inname, O_RDONLY);
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* not MAIL_USE_SYSTEM_LOCK */
|
1994-01-04 06:46:12 +00:00
|
|
|
|
#else /* MAIL_USE_MMDF */
|
|
|
|
|
indesc = lk_open (inname, O_RDONLY, 0, 0, 10);
|
1989-05-14 22:52:53 +00:00
|
|
|
|
#endif /* MAIL_USE_MMDF */
|
|
|
|
|
|
1994-01-04 06:46:12 +00:00
|
|
|
|
if (indesc < 0)
|
|
|
|
|
pfatal_with_name (inname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1991-12-07 22:01:44 +00:00
|
|
|
|
#if defined (BSD) || defined (XENIX)
|
1994-01-04 06:46:12 +00:00
|
|
|
|
/* In case movemail is setuid to root, make sure the user can
|
|
|
|
|
read the output file. */
|
|
|
|
|
/* This is desirable for all systems
|
|
|
|
|
but I don't want to assume all have the umask system call */
|
|
|
|
|
umask (umask (0) & 0333);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#endif /* BSD or Xenix */
|
1994-01-04 06:46:12 +00:00
|
|
|
|
outdesc = open (outname, O_WRONLY | O_CREAT | O_EXCL, 0666);
|
|
|
|
|
if (outdesc < 0)
|
|
|
|
|
pfatal_with_name (outname);
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifdef MAIL_USE_SYSTEM_LOCK
|
|
|
|
|
#ifdef MAIL_USE_LOCKF
|
|
|
|
|
if (lockf (indesc, F_LOCK, 0) < 0) pfatal_with_name (inname);
|
|
|
|
|
#else /* not MAIL_USE_LOCKF */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#ifdef XENIX
|
1994-01-04 06:46:12 +00:00
|
|
|
|
if (locking (indesc, LK_RLCK, 0L) < 0) pfatal_with_name (inname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#else
|
1994-01-04 06:46:12 +00:00
|
|
|
|
if (flock (indesc, LOCK_EX) < 0) pfatal_with_name (inname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#endif
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* not MAIL_USE_LOCKF */
|
|
|
|
|
#endif /* MAIL_USE_SYSTEM_LOCK */
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1992-04-01 11:14:15 +00:00
|
|
|
|
{
|
1994-01-04 06:46:12 +00:00
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
|
|
while (1)
|
1992-04-01 11:14:15 +00:00
|
|
|
|
{
|
1994-01-04 06:46:12 +00:00
|
|
|
|
nread = read (indesc, buf, sizeof buf);
|
|
|
|
|
if (nread != write (outdesc, buf, nread))
|
|
|
|
|
{
|
|
|
|
|
int saved_errno = errno;
|
|
|
|
|
unlink (outname);
|
|
|
|
|
errno = saved_errno;
|
|
|
|
|
pfatal_with_name (outname);
|
|
|
|
|
}
|
|
|
|
|
if (nread < sizeof buf)
|
|
|
|
|
break;
|
1992-04-01 11:14:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
#ifdef BSD
|
1994-01-04 06:46:12 +00:00
|
|
|
|
if (fsync (outdesc) < 0)
|
|
|
|
|
pfatal_and_delete (outname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-04 06:46:12 +00:00
|
|
|
|
/* Check to make sure no errors before we zap the inbox. */
|
|
|
|
|
if (close (outdesc) != 0)
|
|
|
|
|
pfatal_and_delete (outname);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifdef MAIL_USE_SYSTEM_LOCK
|
1991-12-07 22:01:44 +00:00
|
|
|
|
#if defined (STRIDE) || defined (XENIX)
|
1994-01-04 06:46:12 +00:00
|
|
|
|
/* Stride, xenix have file locking, but no ftruncate. This mess will do. */
|
|
|
|
|
close (open (inname, O_CREAT | O_TRUNC | O_RDWR, 0666));
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#else
|
1994-01-04 06:46:12 +00:00
|
|
|
|
ftruncate (indesc, 0L);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
#endif /* STRIDE or XENIX */
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* MAIL_USE_SYSTEM_LOCK */
|
1989-05-14 22:52:53 +00:00
|
|
|
|
|
|
|
|
|
#ifdef MAIL_USE_MMDF
|
1994-01-04 06:46:12 +00:00
|
|
|
|
lk_close (indesc, 0, 0, 0);
|
1989-05-14 22:52:53 +00:00
|
|
|
|
#else
|
1994-01-04 06:46:12 +00:00
|
|
|
|
close (indesc);
|
1989-05-14 22:52:53 +00:00
|
|
|
|
#endif
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#ifndef MAIL_USE_SYSTEM_LOCK
|
1994-01-09 01:00:04 +00:00
|
|
|
|
/* Delete the input file; if we can't, at least get rid of its
|
|
|
|
|
contents. */
|
1992-03-09 17:40:11 +00:00
|
|
|
|
#ifdef MAIL_UNLINK_SPOOL
|
1994-01-04 06:46:12 +00:00
|
|
|
|
/* This is generally bad to do, because it destroys the permissions
|
|
|
|
|
that were set on the file. Better to just empty the file. */
|
|
|
|
|
if (unlink (inname) < 0 && errno != ENOENT)
|
1992-03-09 17:40:11 +00:00
|
|
|
|
#endif /* MAIL_UNLINK_SPOOL */
|
1994-01-04 06:46:12 +00:00
|
|
|
|
creat (inname, 0600);
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* not MAIL_USE_SYSTEM_LOCK */
|
1994-01-04 06:46:12 +00:00
|
|
|
|
|
|
|
|
|
exit (0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wait (&status);
|
|
|
|
|
if (!WIFEXITED (status))
|
|
|
|
|
exit (1);
|
|
|
|
|
else if (WRETCODE (status) != 0)
|
|
|
|
|
exit (WRETCODE (status));
|
|
|
|
|
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#if !defined (MAIL_USE_MMDF) && !defined (MAIL_USE_SYSTEM_LOCK)
|
1989-05-14 22:52:53 +00:00
|
|
|
|
unlink (lockname);
|
1994-04-05 23:04:36 +00:00
|
|
|
|
#endif /* not MAIL_USE_MMDF and not MAIL_USE_SYSTEM_LOCK */
|
1994-10-12 19:20:24 +00:00
|
|
|
|
return 0;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print error message and exit. */
|
|
|
|
|
|
1994-10-12 19:20:24 +00:00
|
|
|
|
void
|
1989-04-28 03:54:04 +00:00
|
|
|
|
fatal (s1, s2)
|
|
|
|
|
char *s1, *s2;
|
|
|
|
|
{
|
|
|
|
|
if (delete_lockname)
|
|
|
|
|
unlink (delete_lockname);
|
|
|
|
|
error (s1, s2);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print error message. `s1' is printf control string, `s2' is arg for it. */
|
|
|
|
|
|
1994-10-12 19:20:24 +00:00
|
|
|
|
void
|
1990-11-13 05:11:43 +00:00
|
|
|
|
error (s1, s2, s3)
|
|
|
|
|
char *s1, *s2, *s3;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1994-10-12 19:20:24 +00:00
|
|
|
|
fprintf (stderr, "movemail: ");
|
|
|
|
|
fprintf (stderr, s1, s2, s3);
|
|
|
|
|
fprintf (stderr, "\n");
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-10-12 19:20:24 +00:00
|
|
|
|
void
|
1989-04-28 03:54:04 +00:00
|
|
|
|
pfatal_with_name (name)
|
|
|
|
|
char *name;
|
|
|
|
|
{
|
1994-10-12 19:20:24 +00:00
|
|
|
|
char *s = concat ("", strerror (errno), " for %s");
|
1989-04-28 03:54:04 +00:00
|
|
|
|
fatal (s, name);
|
|
|
|
|
}
|
|
|
|
|
|
1994-10-12 19:20:24 +00:00
|
|
|
|
void
|
1991-12-07 22:01:44 +00:00
|
|
|
|
pfatal_and_delete (name)
|
|
|
|
|
char *name;
|
|
|
|
|
{
|
1994-10-12 19:20:24 +00:00
|
|
|
|
char *s = concat ("", strerror (errno), " for %s");
|
1991-12-07 22:01:44 +00:00
|
|
|
|
unlink (name);
|
|
|
|
|
fatal (s, name);
|
|
|
|
|
}
|
|
|
|
|
|
1989-04-28 03:54:04 +00:00
|
|
|
|
/* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
concat (s1, s2, s3)
|
|
|
|
|
char *s1, *s2, *s3;
|
|
|
|
|
{
|
|
|
|
|
int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
|
|
|
|
|
char *result = (char *) xmalloc (len1 + len2 + len3 + 1);
|
|
|
|
|
|
|
|
|
|
strcpy (result, s1);
|
|
|
|
|
strcpy (result + len1, s2);
|
|
|
|
|
strcpy (result + len1 + len2, s3);
|
|
|
|
|
*(result + len1 + len2 + len3) = 0;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like malloc but get fatal error if memory is exhausted. */
|
|
|
|
|
|
1995-05-04 06:46:51 +00:00
|
|
|
|
long *
|
1989-04-28 03:54:04 +00:00
|
|
|
|
xmalloc (size)
|
1992-03-09 17:40:11 +00:00
|
|
|
|
unsigned size;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1995-05-04 06:46:51 +00:00
|
|
|
|
long *result = (long *) malloc (size);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
if (!result)
|
|
|
|
|
fatal ("virtual memory exhausted", 0);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is the guts of the interface to the Post Office Protocol. */
|
|
|
|
|
|
|
|
|
|
#ifdef MAIL_USE_POP
|
|
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
#include <netdb.h>
|
|
|
|
|
#include <stdio.h>
|
1992-05-07 20:13:17 +00:00
|
|
|
|
#include <pwd.h>
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
|
|
|
|
#ifdef USG
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
/* Cancel substitutions made by config.h for Emacs. */
|
|
|
|
|
#undef open
|
|
|
|
|
#undef read
|
|
|
|
|
#undef write
|
|
|
|
|
#undef close
|
|
|
|
|
#endif /* USG */
|
|
|
|
|
|
|
|
|
|
#define NOTOK (-1)
|
|
|
|
|
#define OK 0
|
|
|
|
|
#define DONE 1
|
|
|
|
|
|
|
|
|
|
char *progname;
|
|
|
|
|
FILE *sfi;
|
|
|
|
|
FILE *sfo;
|
1994-09-27 19:45:00 +00:00
|
|
|
|
char ibuffer[BUFSIZ];
|
|
|
|
|
char obuffer[BUFSIZ];
|
1989-04-28 03:54:04 +00:00
|
|
|
|
char Errmsg[80];
|
|
|
|
|
|
1990-11-13 05:11:43 +00:00
|
|
|
|
popmail (user, outfile)
|
|
|
|
|
char *user;
|
|
|
|
|
char *outfile;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1990-11-13 05:11:43 +00:00
|
|
|
|
int nmsgs, nbytes;
|
|
|
|
|
register int i;
|
|
|
|
|
int mbfi;
|
|
|
|
|
FILE *mbf;
|
1994-09-27 19:45:00 +00:00
|
|
|
|
char *getenv ();
|
|
|
|
|
int mbx_write ();
|
1994-10-20 20:35:57 +00:00
|
|
|
|
popserver server;
|
1994-09-27 19:45:00 +00:00
|
|
|
|
extern char *strerror ();
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
server = pop_open (0, user, 0, POP_NO_GETPASS);
|
|
|
|
|
if (! server)
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error (pop_error);
|
|
|
|
|
return (1);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (pop_stat (server, &nmsgs, &nbytes))
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error (pop_error);
|
|
|
|
|
return (1);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1990-11-13 05:11:43 +00:00
|
|
|
|
if (!nmsgs)
|
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
pop_close (server);
|
|
|
|
|
return (0);
|
1990-11-13 05:11:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mbfi = open (outfile, O_WRONLY | O_CREAT | O_EXCL, 0666);
|
|
|
|
|
if (mbfi < 0)
|
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
pop_close (server);
|
|
|
|
|
error ("Error in open: %s, %s", strerror (errno), outfile);
|
|
|
|
|
return (1);
|
1990-11-13 05:11:43 +00:00
|
|
|
|
}
|
|
|
|
|
fchown (mbfi, getuid (), -1);
|
|
|
|
|
|
|
|
|
|
if ((mbf = fdopen (mbfi, "w")) == NULL)
|
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
pop_close (server);
|
|
|
|
|
error ("Error in fdopen: %s", strerror (errno));
|
|
|
|
|
close (mbfi);
|
|
|
|
|
unlink (outfile);
|
|
|
|
|
return (1);
|
1990-11-13 05:11:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 1; i <= nmsgs; i++)
|
|
|
|
|
{
|
|
|
|
|
mbx_delimit_begin (mbf);
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (pop_retr (server, i, mbx_write, mbf) != OK)
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error (Errmsg);
|
1990-11-13 05:11:43 +00:00
|
|
|
|
close (mbfi);
|
1994-09-27 19:45:00 +00:00
|
|
|
|
return (1);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
1990-11-13 05:11:43 +00:00
|
|
|
|
mbx_delimit_end (mbf);
|
|
|
|
|
fflush (mbf);
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (ferror (mbf))
|
|
|
|
|
{
|
|
|
|
|
error ("Error in fflush: %s", strerror (errno));
|
|
|
|
|
pop_close (server);
|
|
|
|
|
close (mbfi);
|
|
|
|
|
return (1);
|
|
|
|
|
}
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
/* On AFS, a call to write only modifies the file in the local
|
|
|
|
|
* workstation's AFS cache. The changes are not written to the server
|
|
|
|
|
* until a call to fsync or close is made. Users with AFS home
|
|
|
|
|
* directories have lost mail when over quota because these checks were
|
|
|
|
|
* not made in previous versions of movemail. */
|
|
|
|
|
|
1994-10-12 20:21:51 +00:00
|
|
|
|
#ifdef BSD
|
1991-12-07 22:01:44 +00:00
|
|
|
|
if (fsync (mbfi) < 0)
|
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error ("Error in fsync: %s", strerror (errno));
|
|
|
|
|
return (1);
|
1991-12-07 22:01:44 +00:00
|
|
|
|
}
|
1994-10-12 20:21:51 +00:00
|
|
|
|
#endif
|
1991-12-07 22:01:44 +00:00
|
|
|
|
|
|
|
|
|
if (close (mbfi) == -1)
|
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error ("Error in close: %s", strerror (errno));
|
|
|
|
|
return (1);
|
1991-12-07 22:01:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
1990-11-13 05:11:43 +00:00
|
|
|
|
for (i = 1; i <= nmsgs; i++)
|
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (pop_delete (server, i))
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error (pop_error);
|
|
|
|
|
pop_close (server);
|
|
|
|
|
return (1);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (pop_quit (server))
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
error (pop_error);
|
|
|
|
|
return (1);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
return (0);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
pop_retr (server, msgno, action, arg)
|
1994-10-20 20:35:57 +00:00
|
|
|
|
popserver server;
|
1990-11-13 05:11:43 +00:00
|
|
|
|
int (*action)();
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
extern char *strerror ();
|
|
|
|
|
char *line;
|
|
|
|
|
int ret;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (pop_retrieve_first (server, msgno, &line))
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
strncpy (Errmsg, pop_error, sizeof (Errmsg));
|
|
|
|
|
Errmsg[sizeof (Errmsg)-1] = '\0';
|
|
|
|
|
return (NOTOK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
while (! (ret = pop_retrieve_next (server, &line)))
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (! line)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if ((*action)(line, arg) != OK)
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
strcpy (Errmsg, strerror (errno));
|
|
|
|
|
pop_close (server);
|
|
|
|
|
return (NOTOK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (ret)
|
1990-11-13 05:11:43 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
strncpy (Errmsg, pop_error, sizeof (Errmsg));
|
|
|
|
|
Errmsg[sizeof (Errmsg)-1] = '\0';
|
|
|
|
|
return (NOTOK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
return (OK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
/* Do this as a macro instead of using strcmp to save on execution time. */
|
|
|
|
|
#define IS_FROM_LINE(a) ((a[0] == 'F') \
|
|
|
|
|
&& (a[1] == 'r') \
|
|
|
|
|
&& (a[2] == 'o') \
|
|
|
|
|
&& (a[3] == 'm') \
|
|
|
|
|
&& (a[4] == ' '))
|
1989-04-28 03:54:04 +00:00
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
int
|
1990-11-13 05:11:43 +00:00
|
|
|
|
mbx_write (line, mbf)
|
|
|
|
|
char *line;
|
|
|
|
|
FILE *mbf;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (IS_FROM_LINE (line))
|
|
|
|
|
{
|
|
|
|
|
if (fputc ('>', mbf) == EOF)
|
|
|
|
|
return (NOTOK);
|
|
|
|
|
}
|
|
|
|
|
if (fputs (line, mbf) == EOF)
|
|
|
|
|
return (NOTOK);
|
|
|
|
|
if (fputc (0x0a, mbf) == EOF)
|
|
|
|
|
return (NOTOK);
|
|
|
|
|
return (OK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-27 19:45:00 +00:00
|
|
|
|
int
|
1990-11-13 05:11:43 +00:00
|
|
|
|
mbx_delimit_begin (mbf)
|
|
|
|
|
FILE *mbf;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (fputs ("\f\n0, unseen,,\n", mbf) == EOF)
|
|
|
|
|
return (NOTOK);
|
|
|
|
|
return (OK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
1990-11-13 05:11:43 +00:00
|
|
|
|
mbx_delimit_end (mbf)
|
|
|
|
|
FILE *mbf;
|
1989-04-28 03:54:04 +00:00
|
|
|
|
{
|
1994-09-27 19:45:00 +00:00
|
|
|
|
if (putc ('\037', mbf) == EOF)
|
|
|
|
|
return (NOTOK);
|
|
|
|
|
return (OK);
|
1989-04-28 03:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* MAIL_USE_POP */
|
1994-01-09 01:00:04 +00:00
|
|
|
|
|
|
|
|
|
#ifndef HAVE_STRERROR
|
|
|
|
|
char *
|
|
|
|
|
strerror (errnum)
|
|
|
|
|
int errnum;
|
|
|
|
|
{
|
|
|
|
|
extern char *sys_errlist[];
|
|
|
|
|
extern int sys_nerr;
|
|
|
|
|
|
|
|
|
|
if (errnum >= 0 && errnum < sys_nerr)
|
|
|
|
|
return sys_errlist[errnum];
|
|
|
|
|
return (char *) "Unknown error";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* ! HAVE_STRERROR */
|