From ccb70b2e8e2b536d0f6c9126c4b707e42df805be Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 28 Jul 2014 16:57:23 -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 fa44e5404..662f201ef 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 2d70ccf6f..cecac273d 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 e8b677be2..0ff825590 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