#!/bin/sh

if [ ! -e /ftp-data/msgs/$2 ]; then
	echo "200Permission granted..."
	exit 0;
fi

echo "500You have a msg waiting. Read it before downloading..."
exit 1;

