2

ダイナミックソックスプロキシでNet::SMTPを使用したいと思います。IO :: Socket :: Socksは靴下を認識していますが、net :: smtpでどのように使用する必要がありますか?

4

1 に答える 1

3

私はそれを理解しましたが、Net :: SMTPの将来のバージョンで動作する場合と動作しない場合があるハックが含まれています:

use Net::SMTP;
use Net::SOCKS;
my $socks = new Net::SOCKS(socks_addr=>$shost,socks_port=>$sport, protocol_version=>5) or die $!; 
my $socksfd = $socks->connect(peer_addr=>$smtp_server,peer_port=>25);
if(!$socksfd){
    die "Connection to SOCKS failed";
}
my $smtp = Net::SMTP->new_from_fd($socksfd->fileno, 'r+' ) or die $!;

#HACK: there is "220 host.domain.net" line we must read otherwise Net::SMTP would not work!
$smtp->getline();

$smtp->hello("localhost") or die $smtp->message();
#from here Net::SMTP business as usual...
于 2011-03-11T18:37:03.007 に答える