X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fsipwise.pm;h=9d4e3366e859be146cd4c1077854fd2cfb05042d;hb=bd7a4fa7a0fd966692d95b0f9cc7991a2a51310c;hp=5cbe89ce0f3c229e9260f6e43a561477672b397c;hpb=fd6aec2041579fbb5d790371c5e5e5152e3075ce;p=freeside.git diff --git a/FS/FS/part_export/sipwise.pm b/FS/FS/part_export/sipwise.pm index 5cbe89ce0..9d4e3366e 100644 --- a/FS/FS/part_export/sipwise.pm +++ b/FS/FS/part_export/sipwise.pm @@ -5,6 +5,7 @@ use strict; use FS::Record qw(qsearch qsearchs dbh); use Tie::IxHash; +use IO::Socket::SSL; use LWP::UserAgent; use URI; use Cpanel::JSON::XS; @@ -27,7 +28,7 @@ tie my %options, 'Tie::IxHash', default => 'default', }, 'subscriber_profile_set' => { - label => 'Subscriber profile set name', + label => 'Subscriber profile set name (optional)', }, 'reseller_id' => { label => 'Reseller ID' }, 'ssl_no_verify' => { label => 'Skip SSL certificate validation', @@ -63,8 +64,6 @@ our %info = ( will receive calls at this number.

-

Export options: -

END ); @@ -803,7 +802,10 @@ sub ua { $self->{_ua} ||= do { my @opt; if ( $self->option('ssl_no_verify') ) { - push @opt, ssl_opts => { verify_hostname => 0 }; + push @opt, ssl_opts => { + verify_hostname => 0, + SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE, + }; } my $ua = LWP::UserAgent->new(@opt); $ua->credentials(