The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Net::SSLGlue::FTP;

my $ftp = Net::FTP->new( 'ftp.example.com', 
    SSL => 1, 
    SSL_ca_path => '/etc/ssl/certs',
    Passive => 1,
    Debug => 1,
);
$ftp->login('foo','bar');
print $ftp->ls;