diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-03-22 16:07:21 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-03-22 16:07:21 -0700 |
commit | 56c9f718c7eb0bfc81ee848f1b4ed2b823612a42 (patch) | |
tree | 8df44b0b9da82f4974e14adb91bfe1e3fcea90f9 | |
parent | bffe94d18041de995907fb8cc3fade4e8b20c241 (diff) |
fix connection errors to print service under deb 8 ? RT#75293
-rw-r--r-- | FS/FS/Template_Mixin.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index 7eae34a14..9a576bbb9 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -2431,6 +2431,7 @@ sub postal_mail_fsinc { 'ssl_opts' => { verify_hostname => 0, SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE, + SSL_version => 'SSLv3', } ); my $response = $ua->request( POST $url, [ @@ -2461,7 +2462,8 @@ sub postal_mail_fsinc { 'country' => $bill_location->country, ]); - die "Print connection error: ". $response->message. "\n" + die "Print connection error: ". $response->message. + ' ('. $response->as_string. ")\n" unless $response->is_success; local $@; |