* @copyright Since 2013 Ovidiu Cimpean * @license Do not edit, modify or copy this file * * @version Release: 4 */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_1_8_0($module) { $upgrade = $module->upgrade; // hooks update (no) // configuration update (no) $upgrade->updateConfiguration('SMTP_ACTIVE', 0); $upgrade->updateConfiguration('SMTP', [ 'PS_MAIL_DOMAIN' => '', 'PS_MAIL_SERVER' => '', 'PS_MAIL_USER' => '', 'PS_MAIL_PASSWD' => '', 'PS_MAIL_SMTP_ENCRYPTION' => '', 'PS_MAIL_SMTP_PORT' => '', ]); // database update (no) return $upgrade->success(); }