File Coverage

blib/lib/Net/SMTPS.pm
Criterion Covered Total %
statement 15 100 15.0
branch 0 46 0.0
condition 0 35 0.0
subroutine 5 9 55.5
pod 3 4 75.0
total 23 194 11.8


line stmt bran cond sub pod time code
1             # ====
2             # SSL/STARTTLS extention for G.Barr's Net::SMTP.
3             # plus, enable arbitrary SMTP auth mechanism selection.
4             # IO::Socket::SSL (also Net::SSLeay openssl),
5             # Authen::SASL, MIME::Base64 should be installed.
6             #
7             package Net::SMTPS;
8              
9 1     1   21232 use vars qw ( $VERSION @ISA );
  1         2  
  1         51  
10              
11             $VERSION = '0.06';
12              
13 1     1   5 use strict;
  1         1  
  1         31  
14 1     1   5 use base qw ( Net::SMTP );
  1         5  
  1         472  
15 1     1   67385 use Net::Cmd; # import CMD_OK, CMD_MORE, ...
  1         2  
  1         47  
16 1     1   3 use Net::Config;
  1         2  
  1         859  
17              
18             eval {
19             require IO::Socket::IP
20             and unshift @ISA, 'IO::Socket::IP';
21             } or eval {
22             require IO::Socket::INET6
23             and unshift @ISA, 'IO::Socket::INET6';
24             } or do {
25             require IO::Socket::INET
26             and unshift @ISA, 'IO::Socket::INET';
27             };
28              
29             # Override to support SSL/TLS.
30             sub new {
31 0     0 1   my $self = shift;
32 0   0       my $type = ref($self) || $self;
33 0           my ($host, %arg);
34 0 0         if (@_ % 2) {
35 0           $host = shift;
36 0           %arg = @_;
37             }
38             else {
39 0           %arg = @_;
40 0           $host = delete $arg{Host};
41             }
42 0           my $ssl = delete $arg{doSSL};
43 0 0         $ssl = 'ssl' if delete $arg{SSL};
44              
45 0 0         my $hosts = defined $host ? $host : $NetConfig{smtp_hosts};
46 0           my $obj;
47              
48             # eliminate IO::Socket::SSL from @ISA for multiple call of new.
49 0           @ISA = grep { !/IO::Socket::SSL/ } @ISA;
  0            
50              
51 0           my %_args = map { +"$_" => $arg{$_} } grep {! /^SSL/} keys %arg;
  0            
  0            
52              
53 0           my $h;
54 0   0       $_args{PeerPort} = $_args{Port} || 'smtp(25)';
55 0           $_args{Proto} = 'tcp';
56 0 0         $_args{Timeout} = defined $_args{Timeout} ? $_args{Timeout} : 120;
57              
58 0 0         foreach $h (@{ref($hosts) ? $hosts : [$hosts]}) {
  0            
59 0           $_args{PeerAddr} = ($host = $h);
60              
61             #if ($_args{Debug}) {
62             # foreach my $i (keys %_args) {
63             # print STDERR "$type>>> arg $i: $_args{$i}\n";
64             # }
65             #}
66              
67 0 0         $obj = $type->SUPER::new(
68             %_args
69             )
70             and last;
71             }
72              
73             return undef
74 0 0         unless defined $obj;
75              
76 0           $obj->autoflush(1);
77              
78 0 0         $obj->debug(exists $arg{Debug} ? $arg{Debug} : undef);
79              
80             # common in SSL
81 0           my %ssl_args;
82 0 0         if ($ssl) {
83             eval {
84 0           require IO::Socket::SSL;
85 0 0         } or do {
86 0           $obj->set_status(500, ["Need working IO::Socket::SSL"]);
87 0           $obj->close;
88 0           return undef;
89             };
90 0           %ssl_args = map { +"$_" => $arg{$_} } grep {/^SSL/} keys %arg;
  0            
  0            
91 0 0         $IO::Socket::SSL::DEBUG = (exists $arg{Debug} ? $arg{Debug} : undef);
92             }
93              
94             # OverSSL
95 0 0 0       if (defined($ssl) && $ssl =~ /ssl/i) {
96             $obj->ssl_start(\%ssl_args)
97 0 0         or do {
98 0           $obj->set_status(500, ["Cannot start SSL"]);
99 0           $obj->close;
100 0           return undef;
101             };
102             }
103              
104 0 0         unless ($obj->response() == CMD_OK) {
105 0           $obj->close();
106 0           return undef;
107             }
108              
109 0           ${*$obj}{'net_smtp_exact_addr'} = $arg{ExactAddresses};
  0            
110 0           ${*$obj}{'net_smtp_host'} = $host;
  0            
111              
112 0           (${*$obj}{'net_smtp_banner'}) = $obj->message;
  0            
113 0           (${*$obj}{'net_smtp_domain'}) = $obj->message =~ /\A\s*(\S+)/;
  0            
114              
115 0 0 0       unless ($obj->hello($arg{Hello} || "")) {
116 0           $obj->close();
117 0           return undef;
118             }
119              
120             # STARTTLS
121 0 0 0       if (defined($ssl) && $ssl =~ /starttls/i && $obj->supports('STARTTLS') ) {
      0        
122             (($obj->command('STARTTLS')->response() == CMD_OK)
123             and $obj->ssl_start(\%ssl_args)
124             and $obj->hello($arg{Hello} || ""))
125 0 0 0       or do {
      0        
      0        
126 0           $obj->set_status(500, ["Cannot start SSL session"]);
127 0           $obj->close();
128 0           return undef;
129             };
130             }
131              
132 0           $obj;
133             }
134              
135             sub ssl_start {
136 0     0 0   my ($self, $args) = @_;
137 0           my $type = ref($self);
138              
139 0 0 0       (unshift @ISA, 'IO::Socket::SSL'
      0        
      0        
140             and IO::Socket::SSL->start_SSL($self, %$args)
141             and $self->isa('IO::Socket::SSL')
142             and bless $self, $type # re-bless 'cause IO::Socket::SSL blesses himself.
143             ) or return undef;
144             }
145              
146             # Override to specify a certain auth mechanism.
147             sub auth {
148 0     0 1   my ($self, $username, $password, $mech) = @_;
149              
150 0 0         if ($mech) {
151 0 0         $self->debug_print(1, "my favorite: ". $mech . "\n") if $self->debug;
152              
153 0           my @cl_mech = split /\s+/, $mech;
154 0           my @matched = ();
155 0 0         if (exists ${*$self}{'net_smtp_esmtp'}->{'AUTH'}) {
  0            
156 0           my $sv = ${*$self}{'net_smtp_esmtp'}->{'AUTH'};
  0            
157 0           foreach my $i (@cl_mech) {
158 0 0 0       if (index($sv, $i) >= 0 && grep(/$i/i, @matched) == () ) {
159 0           push @matched, uc($i);
160             }
161             }
162             }
163 0 0         if (@matched) {
164             ## override AUTH mech as specified.
165             ## if multiple mechs are specified, priority is still up to Authen::SASL module.
166 0           ${*$self}{'net_smtp_esmtp'}->{'AUTH'} = join " ", @matched;
  0            
167             }
168             }
169 0           $self->SUPER::auth($username, $password);
170             }
171              
172             # Fix #121006 no timeout issue.
173             sub getline {
174 0     0 1   my $self = shift;
175 0           $self->Net::Cmd::getline(@_);
176             }
177              
178             1;
179              
180             __END__