head	1.1;
access;
symbols;
locks
	mark:1.1; strict;
comment	@# @;


1.1
date	97.05.22.13.33.04;	author mark;	state Exp;
branches;
next	;


desc
@Original version.
@


1.1
log
@Initial revision
@
text
@#!/bin/csh
#mail-in	put mail into a spool file
#with locking.

# Change this to the incoming mail spool directory.
umask 77
cd /u1/mark/in

loop:
if(-e lock) then
   sleep 1
   goto loop
endif
cat > in$$."`/u1/mark/bin/rnd`"

if (-e none) then
   \rm none
endif
@
