diff --git a/php/class.pluginmdmmodule.php b/php/class.pluginmdmmodule.php index 4018eec..814f2a6 100755 --- a/php/class.pluginmdmmodule.php +++ b/php/class.pluginmdmmodule.php @@ -1,9 +1,6 @@ server = (PLUGIN_MDM_SERVER_SSL ? 'https://' : 'http://') . PLUGIN_MDM_SERVER; - // For backward compatibility we will check if the Encryption store exists. If not, - // we will fall back to the old way of retrieving the password from the session. - if ( class_exists('EncryptionStore') ) { - - // Get the username and password from the Encryption store - $encryptionStore = EncryptionStore::getInstance(); - $this->username = $encryptionStore->get('username'); - $this->password = $encryptionStore->get('password'); - } else { - $this->username = $GLOBALS['mapisession']->getUserName(); - - $this->password = $_SESSION['password']; - if(function_exists('openssl_decrypt')) { - // In PHP 5.3.3 the iv parameter was added - if(version_compare(phpversion(), "5.3.3", "<")) { - $this->password = openssl_decrypt($this->password, "des-ede3-cbc", PASSWORD_KEY, 0); - } else { - $this->password = openssl_decrypt($this->password, "des-ede3-cbc", PASSWORD_KEY, 0, PASSWORD_IV); - } - } - } + // Get the username and password from the Encryption store + $encryptionStore = EncryptionStore::getInstance(); + $this->username = $encryptionStore->get('username'); + $this->password = $encryptionStore->get('password'); $this->url = $this->server .'/Microsoft-Server-ActiveSync?Cmd=WebserviceDevice&DeviceId=webservice&DeviceType=webservice&User=' . $this->username; } diff --git a/php/plugin.mdm.php b/php/plugin.mdm.php index bc2e043..5126e29 100755 --- a/php/plugin.mdm.php +++ b/php/plugin.mdm.php @@ -3,8 +3,6 @@ * Handles plugin registration. */ class PluginMDM extends Plugin { - // Constructor - function PluginMDM(){} /** * Called to initialize the plugin and register for hooks.