29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
require_once('modules/Settings/MailScanner/core/MailScannerInfo.php');
|
|
require_once('Smarty_setup.php');
|
|
|
|
$scannername = $_REQUEST['scannername'];
|
|
$scannerinfo = new Vtiger_MailScannerInfo($scannername);
|
|
|
|
$folderinfo = Array();
|
|
foreach($_REQUEST as $key=>$value) {
|
|
$matches = Array();
|
|
if(preg_match("/folder_([0-9]+)/", $key, $matches)) {
|
|
$folderinfo[$value] = Array('folderid'=>$matches[1], 'enabled'=>1);
|
|
}
|
|
}
|
|
$scannerinfo->enableFoldersForScan($folderinfo);
|
|
|
|
include('modules/Settings/MailScanner/MailScannerInfo.php');
|
|
|
|
?>
|