Subject: | Dependencies, does not compile |
First, Time::CTime and File::Flock need to be listed in Makefile.PL as dependencies;
second, this won't compile:
my $resp = "<<%%"
NetServer::SMTP $NetServer::SMTP::VERSION
Known Commands:
HELO MAIL RCPT DATA RSET NOOP QUIT HELP DUMP TURN
%%
$self->respond("214", $resp);
You don't need double quotes around a heredoc, and %% isn't a valid heredoc separator
anyway.