/**********************************************************************
 * lucybounce -- let people know lucy is gone
 *
 * $Author: brlewis $
 * $Source$
 * $Header$
 *
 * Copyright 1992 by the Massachusetts Institute of Technology.
 *
 * For copying and distribution information, please see the file
 * <mit-copyright.h>.
 **********************************************************************/
#include <mit-copyright.h>

#ifndef lint
static char rcsid_lucybounce_c[] = "$Header$";
#endif /* lint */

#include <stdio.h>
#include <lucy/lucy.h>

#ifndef LUCY_TEXTDIR
#define LUCY_TEXTDIR "/afs/athena.mit.edu/astaff/project/lucydev/text"
#endif

main(argc, argv)
     int argc;
     char *argv[];
{
  long code;
  char fname[256];

  strcat(strcpy(fname, LUCY_TEXTDIR), "/bounce.txt");
  if (code=luc_insert_file(stderr, fname))
    {
      com_err(argv[0], code, "(%s)", fname);
      exit(1);
    }
  exit(1);			/* let sendmail know it should bounce */
}
