Subject: | Process doesn't work with Implicit connections (990). |
Date: | Mon, 20 Aug 2007 10:06:42 -0500 |
To: | <bug-Net-FTPSSL [...] rt.cpan.org> |
From: | "Danny Nicholas" <danny [...] debsinc.com> |
When the Implicit flag is turned on, the $<ftps> variable does not get set,
so ftps->login, ftps->put and ftps->quit all fail.
Here is a sample
$ftps = Net::FTPSSL->new($to_srv,
Port => $to_port,
Encryption => 'I',
Debug => $ftp_debug)
or die $!;
$ftps->login("twincity", "twincb#") or die $!;
print "put $outfile as $outfile2\n";
$ftps->put($outfile, $outfile2) or print "error $!\n";
$ftps->quit();
}
Regards,
Danny Nicholas