#!/bin/sh

if echo $1 | egrep 'felist.z[0-9][0-9]' >/dev/null 2>&1 ; then
	cd /usr/local/lib/ifmail/filefix
	oldlst=`ls FELIST.*`
	if unzip -o $2/$1 FELIST.\* ; then
		rm -f $oldlst
	fi
fi
