[freeside-commits] branch FREESIDE_4_BRANCH updated. fbfed2a457704aaff64a12a40eef04aade869548
Ivan
ivan at 420.am
Wed Mar 22 16:07:50 PDT 2017
The branch, FREESIDE_4_BRANCH has been updated
via fbfed2a457704aaff64a12a40eef04aade869548 (commit)
from 801466230917cc64c943f628d76d2ada32f15474 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit fbfed2a457704aaff64a12a40eef04aade869548
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Mar 22 16:07:31 2017 -0700
fix connection errors to print service under deb 8 ? RT#75293
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm
index 3e027d3..bde7a9c 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 $@;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/Template_Mixin.pm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
More information about the freeside-commits
mailing list