From 8fcfaab8b0a383d8fdce74af5f88cc8f86a36a1d Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 28 Jul 2014 16:57:20 -0700 Subject: [PATCH] add ssl_no_verify option to all http exports, RT#29298 --- FS/FS/part_export/acct_http.pm | 3 +++ FS/FS/part_export/broadband_http.pm | 3 +++ FS/FS/part_export/cust_http.pm | 3 +++ 3 files changed, 9 insertions(+) diff --git a/FS/FS/part_export/acct_http.pm b/FS/FS/part_export/acct_http.pm index af358997e..414350bba 100644 --- a/FS/FS/part_export/acct_http.pm +++ b/FS/FS/part_export/acct_http.pm @@ -13,6 +13,9 @@ tie %options, 'Tie::IxHash', options =>[qw(POST)], default =>'POST' }, 'url' => { label => 'URL', default => 'http://', }, + 'ssl_no_verify' => { label => 'Skip SSL certificate validation', + type => 'checkbox', + }, 'insert_data' => { label => 'Insert data', type => 'textarea', diff --git a/FS/FS/part_export/broadband_http.pm b/FS/FS/part_export/broadband_http.pm index 5be8b6851..097ff34c3 100644 --- a/FS/FS/part_export/broadband_http.pm +++ b/FS/FS/part_export/broadband_http.pm @@ -13,6 +13,9 @@ tie %options, 'Tie::IxHash', options =>[qw(POST)], default =>'POST' }, 'url' => { label => 'URL', default => 'http://', }, + 'ssl_no_verify' => { label => 'Skip SSL certificate validation', + type => 'checkbox', + }, 'insert_data' => { label => 'Insert data', type => 'textarea', diff --git a/FS/FS/part_export/cust_http.pm b/FS/FS/part_export/cust_http.pm index 5ccb4035a..f72d00698 100644 --- a/FS/FS/part_export/cust_http.pm +++ b/FS/FS/part_export/cust_http.pm @@ -13,6 +13,9 @@ tie %options, 'Tie::IxHash', options =>[qw(POST)], default =>'POST' }, 'url' => { label => 'URL', default => 'http://', }, + 'ssl_no_verify' => { label => 'Skip SSL certificate validation', + type => 'checkbox', + }, 'insert_data' => { label => 'Insert data', type => 'textarea', -- 2.11.0