diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-07-28 16:57:20 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-07-28 16:57:20 -0700 |
commit | 8fcfaab8b0a383d8fdce74af5f88cc8f86a36a1d (patch) | |
tree | e52353024db9aba997658afa78fc12d5c4edb32a /FS | |
parent | 3804f9a99c6fc77ae36db0cdedd3ddbcff66f1cd (diff) |
add ssl_no_verify option to all http exports, RT#29298
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_export/acct_http.pm | 3 | ||||
-rw-r--r-- | FS/FS/part_export/broadband_http.pm | 3 | ||||
-rw-r--r-- | FS/FS/part_export/cust_http.pm | 3 |
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 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', |