diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-05 11:28:32 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-05 11:28:32 +0200 |
commit | f86ecb3bf7af9e41d5d3b041ea5ee1bf4fbeb634 (patch) | |
tree | 10e15bf0ee3e7b093693802844796140d9543f2f /3rdparty/Sabre | |
parent | 9d00f4d2fb0c881eadfedc5de6537da4133eda7b (diff) | |
download | nextcloud-server-f86ecb3bf7af9e41d5d3b041ea5ee1bf4fbeb634.tar.gz nextcloud-server-f86ecb3bf7af9e41d5d3b041ea5ee1bf4fbeb634.zip |
send ca cert path to sabredav client
Diffstat (limited to '3rdparty/Sabre')
-rw-r--r-- | 3rdparty/Sabre/DAV/Client.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/Sabre/DAV/Client.php b/3rdparty/Sabre/DAV/Client.php index 23bd7c05394..d257c86da10 100644 --- a/3rdparty/Sabre/DAV/Client.php +++ b/3rdparty/Sabre/DAV/Client.php @@ -22,6 +22,7 @@ class Sabre_DAV_Client { protected $userName; protected $password; protected $proxy; + protected $capath; /** * Constructor @@ -49,6 +50,11 @@ class Sabre_DAV_Client { 'proxy' ); + $this->capath = ''; + if (isset($settings['capath'])) { + $this->capath = $settings['capath']; + } + foreach($validSettings as $validSetting) { if (isset($settings[$validSetting])) { $this->$validSetting = $settings[$validSetting]; @@ -249,9 +255,12 @@ class Sabre_DAV_Client { // Automatically follow redirects CURLOPT_FOLLOWLOCATION => true, CURLOPT_MAXREDIRS => 5, + CURLOPT_SSL_VERIFYPEER => true, //CURLOPT_SSL_VERIFYPEER => false, ); + if ($this->capath != '') $curlSettings[CURLOPT_CAPATH] = $this->capath; + switch ($method) { case 'PUT': $curlSettings[CURLOPT_PUT] = true; |