1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*++
/* NAME
/* mark_corrupt 3
/* SUMMARY
/* mark queue file as corrupt
/* SYNOPSIS
/* #include <mark_corrupt.h>
/*
/* char *mark_corrupt(src)
/* VSTREAM *src;
/* DESCRIPTION
/* The \fBmark_corrupt\fR() routine marks the specified open
/* queue file as corrupt, and returns a suitable delivery status
/* so that the queue manager will do the right thing.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <sys/stat.h>
/* Utility library. */
#include <msg.h>
#include <vstream.h>
/* Global library. */
#include <mail_queue.h>
#include <mark_corrupt.h>
/* mark_corrupt - mark queue file as corrupt */
int mark_corrupt(VSTREAM *src)
{
char *myname = "mark_corrupt";
/*
* For now, the result value is -1; this may become a bit mask, or
* something even more advanced than that, when the delivery status
* becomes more than just done/deferred.
*/
msg_warn("corrupted queue file: %s", VSTREAM_PATH(src));
if (fchmod(vstream_fileno(src), MAIL_QUEUE_STAT_CORRUPT))
msg_fatal("%s: fchmod %s: %m", myname, VSTREAM_PATH(src));
return (-1);
}
|