summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-07-28 16:57:23 -0700
committerIvan Kohler <ivan@freeside.biz>2014-07-28 16:57:23 -0700
commitccb70b2e8e2b536d0f6c9126c4b707e42df805be (patch)
tree173dc4ce95003de028afecdce59e2a952184e677
parent15bbb00a7a2a4e3e3cf90c008142f97083cd9b1c (diff)
add ssl_no_verify option to all http exports, RT#29298FREESIDE_2_3_BRANCH
-rw-r--r--FS/FS/part_export/acct_http.pm3
-rw-r--r--FS/FS/part_export/broadband_http.pm3
-rw-r--r--FS/FS/part_export/cust_http.pm3
3 files changed, 9 insertions, 0 deletions
diff --git a/FS/FS/part_export/acct_http.pm b/FS/FS/part_export/acct_http.pm
index fa44e54..662f201 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 2d70ccf..cecac27 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 e8b677b..0ff8255 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',