44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Functions
|
|
*
|
|
*/
|
|
|
|
function storeSettingResetCatchall($fieldname, $fielddata, $newfieldvalue)
|
|
{
|
|
$returnvalue = storeSettingField($fieldname, $fielddata, $newfieldvalue);
|
|
|
|
if($returnvalue !== false
|
|
&& is_array($fielddata)
|
|
&& isset($fielddata['settinggroup'])
|
|
&& $fielddata['settinggroup'] == 'catchall'
|
|
&& isset($fielddata['varname'])
|
|
&& $fielddata['varname'] == 'catchall_enabled'
|
|
&& $newfieldvalue == '0')
|
|
{
|
|
global $db;
|
|
$result = $db->query("SELECT `id`, `email`, `email_full`, `iscatchall` FROM `" . TABLE_MAIL_VIRTUAL . "` WHERE `iscatchall`='1'");
|
|
|
|
while($result_row = $db->fetch_array($result))
|
|
{
|
|
$db->query("UPDATE `" . TABLE_MAIL_VIRTUAL . "` SET `email` = '" . $db->escape($result_row['email_full']) . "', `iscatchall` = '0' WHERE `id`='" . (int)$result_row['id'] . "'");
|
|
}
|
|
}
|
|
|
|
return $returnvalue;
|
|
}
|
|
|
|
?>
|