The
feedback form fails: Couldn't contact SMTP server.
Looking at feedback.pl, the command: my $smtp =
Net::SMTP->new($Global::smtpServer, Timeout=>10) || ...
is what is failing. Running: "sendmail -vt" from the command prompt
succeeds, and the responding server matches the smtpServer in Global.pm
However running the small script:
use Net::SMTP;
$smtp = new->('smtp server name', Timeout=>10)||print "fails";
$smtp->quit;
Results in "fails".
By the way, everything works fine for the private course on another (I thought identical) machine; both run Redhat 7.0.
<| Post or View Comments |>
|