Implement *deactivate-catchall*-feature, refs #fixes 1114
Signed-off-by: Arnold Bechtoldt <mail@arnoldbechtoldt.com>
This commit is contained in:
@@ -99,6 +99,14 @@ return array(
|
|||||||
'type' => 'hidden',
|
'type' => 'hidden',
|
||||||
'default' => 0,
|
'default' => 0,
|
||||||
),
|
),
|
||||||
|
'system_catchall_enabled' => array(
|
||||||
|
'label' => $lng['serversettings']['catchall_enabled'],
|
||||||
|
'settinggroup' => 'catchall',
|
||||||
|
'varname' => 'catchall_enabled',
|
||||||
|
'type' => 'bool',
|
||||||
|
'default' => true,
|
||||||
|
'save_method' => 'storeSettingResetCatchall',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -284,6 +284,12 @@ elseif($page == 'emails')
|
|||||||
//$iscatchall = makeyesno('iscatchall', '1', '0', '0');
|
//$iscatchall = makeyesno('iscatchall', '1', '0', '0');
|
||||||
|
|
||||||
$email_add_data = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_add.php';
|
$email_add_data = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_add.php';
|
||||||
|
|
||||||
|
if ( $settings['catchall']['catchall_enabled'] != '1' )
|
||||||
|
{
|
||||||
|
unset($email_add_data['emails_add']['sections']['section_a']['fields']['iscatchall']);
|
||||||
|
}
|
||||||
|
|
||||||
$email_add_form = htmlform::genHTMLForm($email_add_data);
|
$email_add_form = htmlform::genHTMLForm($email_add_data);
|
||||||
|
|
||||||
$title = $email_add_data['emails_add']['title'];
|
$title = $email_add_data['emails_add']['title'];
|
||||||
@@ -330,6 +336,12 @@ elseif($page == 'emails')
|
|||||||
$result = htmlentities_array($result);
|
$result = htmlentities_array($result);
|
||||||
|
|
||||||
$email_edit_data = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_edit.php';
|
$email_edit_data = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_edit.php';
|
||||||
|
|
||||||
|
if ( $settings['catchall']['catchall_enabled'] != '1' )
|
||||||
|
{
|
||||||
|
unset($email_edit_data['emails_edit']['sections']['section_a']['fields']['mail_catchall']);
|
||||||
|
}
|
||||||
|
|
||||||
$email_edit_form = htmlform::genHTMLForm($email_edit_data);
|
$email_edit_form = htmlform::genHTMLForm($email_edit_data);
|
||||||
|
|
||||||
$title = $email_edit_data['emails_edit']['title'];
|
$title = $email_edit_data['emails_edit']['title'];
|
||||||
@@ -340,6 +352,8 @@ elseif($page == 'emails')
|
|||||||
}
|
}
|
||||||
elseif($action == 'togglecatchall'
|
elseif($action == 'togglecatchall'
|
||||||
&& $id != 0)
|
&& $id != 0)
|
||||||
|
{
|
||||||
|
if ( $settings['catchall']['catchall_enabled'] == '1' )
|
||||||
{
|
{
|
||||||
$result = $db->query_first("SELECT `id`, `email`, `email_full`, `iscatchall`, `destination`, `customerid`, `popaccountid` FROM `" . TABLE_MAIL_VIRTUAL . "` WHERE `customerid`='" . (int)$userinfo['customerid'] . "' AND `id`='" . (int)$id . "'");
|
$result = $db->query_first("SELECT `id`, `email`, `email_full`, `iscatchall`, `destination`, `customerid`, `popaccountid` FROM `" . TABLE_MAIL_VIRTUAL . "` WHERE `customerid`='" . (int)$userinfo['customerid'] . "' AND `id`='" . (int)$id . "'");
|
||||||
|
|
||||||
@@ -371,6 +385,11 @@ elseif($page == 'emails')
|
|||||||
redirectTo($filename, Array('page' => $page, 'action' => 'edit', 'id' => $id, 's' => $s));
|
redirectTo($filename, Array('page' => $page, 'action' => 'edit', 'id' => $id, 's' => $s));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
standard_error(array('operationnotpermitted', 'featureisdisabled'), 'Catchall');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
elseif($page == 'accounts')
|
elseif($page == 'accounts')
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -337,6 +337,7 @@ CREATE TABLE `panel_settings` (
|
|||||||
|
|
||||||
|
|
||||||
INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
||||||
|
('catchall', 'catchall_enabled', '1'),
|
||||||
('session', 'allow_multiple_login', '0'),
|
('session', 'allow_multiple_login', '0'),
|
||||||
('session', 'sessiontimeout', '600'),
|
('session', 'sessiontimeout', '600'),
|
||||||
('customer', 'accountprefix', 'web'),
|
('customer', 'accountprefix', 'web'),
|
||||||
@@ -530,7 +531,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
|
|||||||
('panel', 'allow_preset', '1'),
|
('panel', 'allow_preset', '1'),
|
||||||
('panel', 'allow_preset_admin', '0'),
|
('panel', 'allow_preset_admin', '0'),
|
||||||
('panel', 'password_regex', ''),
|
('panel', 'password_regex', ''),
|
||||||
('panel', 'version', '0.9.28-svn4');
|
('panel', 'version', '0.9.28-svn5');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1951,3 +1951,14 @@ if(isFroxlorVersion('0.9.28-svn3'))
|
|||||||
|
|
||||||
updateToVersion('0.9.28-svn4');
|
updateToVersion('0.9.28-svn4');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(isFroxlorVersion('0.9.28-svn4')) {
|
||||||
|
showUpdateStep("Updating from 0.9.28-svn4 to 0.9.28-svn5");
|
||||||
|
|
||||||
|
// Catchall functionality (enabled by default) see #1114
|
||||||
|
$db->query("INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES ('catchall', 'catchall_enabled', '1');");
|
||||||
|
|
||||||
|
lastStepStatus(0);
|
||||||
|
|
||||||
|
updateToVersion('0.9.28-svn5');
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
<?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;
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
@@ -73,6 +73,6 @@ define('PACKAGE_ENABLED', 2);
|
|||||||
|
|
||||||
// VERSION INFO
|
// VERSION INFO
|
||||||
|
|
||||||
$version = '0.9.28-svn4';
|
$version = '0.9.28-svn5';
|
||||||
$dbversion = '2';
|
$dbversion = '2';
|
||||||
$branding = '';
|
$branding = '';
|
||||||
|
|||||||
@@ -1921,3 +1921,10 @@ $lng['admin']['speciallogwarning'] = 'WARNING: By changing this setting you will
|
|||||||
$lng['serversettings']['vmail_maildirname']['title'] = 'Maildir name';
|
$lng['serversettings']['vmail_maildirname']['title'] = 'Maildir name';
|
||||||
$lng['serversettings']['vmail_maildirname']['description'] = 'Maildir directory into user\'s account. Normally \'Maildir\', in some implementations \'.maildir\', and directly into user\'s directory if left blank.';
|
$lng['serversettings']['vmail_maildirname']['description'] = 'Maildir directory into user\'s account. Normally \'Maildir\', in some implementations \'.maildir\', and directly into user\'s directory if left blank.';
|
||||||
$lng['tasks']['remove_emailacc_files'] = 'Delete customer e-mail data.';
|
$lng['tasks']['remove_emailacc_files'] = 'Delete customer e-mail data.';
|
||||||
|
|
||||||
|
// ADDED IN 0.9.28-svn5
|
||||||
|
$lng['error']['operationnotpermitted'] = 'Operation not permitted!';
|
||||||
|
$lng['error']['featureisdisabled'] = 'Feature %s is disabled. Please contact your service provider.';
|
||||||
|
$lng['serversettings']['catchall_enabled']['title'] = 'Use Catchall';
|
||||||
|
$lng['serversettings']['catchall_enabled']['description'] = 'Do you want to provide your customers the catchall-feature?';
|
||||||
|
|
||||||
|
|||||||
@@ -1646,3 +1646,10 @@ $lng['serversettings']['phpfpm_settings']['idle_timeout']['description'] = 'Time
|
|||||||
$lng['panel']['cancel'] = 'abbrechen';
|
$lng['panel']['cancel'] = 'abbrechen';
|
||||||
$lng['admin']['delete_statistics'] = 'Statistiken Löschen';
|
$lng['admin']['delete_statistics'] = 'Statistiken Löschen';
|
||||||
$lng['admin']['speciallogwarning'] = 'ACHTUNG: Durch diese Einstellungen werden Sie alle bisherige Statistiken dieser Domain verlieren. Wenn Sie dabei wirklich sicher sind, geben Sie bitte folgenden Text in das nachfolgende Textfeld ein: "'.$lng['admin']['delete_statistics'].'" und bestätigen Sie mit "'.$lng['panel']['delete'].'".<br /><br />';
|
$lng['admin']['speciallogwarning'] = 'ACHTUNG: Durch diese Einstellungen werden Sie alle bisherige Statistiken dieser Domain verlieren. Wenn Sie dabei wirklich sicher sind, geben Sie bitte folgenden Text in das nachfolgende Textfeld ein: "'.$lng['admin']['delete_statistics'].'" und bestätigen Sie mit "'.$lng['panel']['delete'].'".<br /><br />';
|
||||||
|
|
||||||
|
// ADDED IN 0.9.28-svn5
|
||||||
|
$lng['error']['operationnotpermitted'] = 'Diese Aktion ist nicht erlaubt!';
|
||||||
|
$lng['error']['featureisdisabled'] = 'Die Funktion %s wurde deaktiviert. Kontaktieren Sie bitte Ihren Dienstleister.';
|
||||||
|
$lng['serversettings']['catchall_enabled']['title'] = 'Catchall verwenden';
|
||||||
|
$lng['serversettings']['catchall_enabled']['description'] = 'Möchten Sie Ihren Kunden die Funktion Catchall zur Verfügung stellen?';
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
<th>{$lng['emails']['emailaddress']} {$arrowcode['m.email_full']}</th>
|
<th>{$lng['emails']['emailaddress']} {$arrowcode['m.email_full']}</th>
|
||||||
<th>{$lng['emails']['forwarders']} {$arrowcode['m.destination']}</th>
|
<th>{$lng['emails']['forwarders']} {$arrowcode['m.destination']}</th>
|
||||||
<th>{$lng['emails']['account']}</th>
|
<th>{$lng['emails']['account']}</th>
|
||||||
<th>{$lng['emails']['catchall']}</th>
|
<if $settings['catchall']['catchall_enabled'] == '1'><th>{$lng['emails']['catchall']}</th></if>
|
||||||
<if $settings['system']['mail_quota_enabled'] == '1'>
|
<if $settings['system']['mail_quota_enabled'] == '1'>
|
||||||
<th>{$lng['emails']['quota']}</th>
|
<th>{$lng['emails']['quota']}</th>
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<td>{$row['email_full']}</td>
|
<td>{$row['email_full']}</td>
|
||||||
<td><if $row['destination'] == ''> <else>{$row['destination']}</if></td>
|
<td><if $row['destination'] == ''> <else>{$row['destination']}</if></td>
|
||||||
<td><if $row['popaccountid'] != 0>{$lng['panel']['yes']}</if><if $row['popaccountid'] == 0>{$lng['panel']['no']}</if></td>
|
<td><if $row['popaccountid'] != 0>{$lng['panel']['yes']}</if><if $row['popaccountid'] == 0>{$lng['panel']['no']}</if></td>
|
||||||
<td><if $row['iscatchall'] != 0>{$lng['panel']['yes']}</if><if $row['iscatchall'] == 0>{$lng['panel']['no']}</if></td>
|
<if $settings['catchall']['catchall_enabled'] == '1'><td><if $row['iscatchall'] != 0>{$lng['panel']['yes']}</if><if $row['iscatchall'] == 0>{$lng['panel']['no']}</if></td></if>
|
||||||
<if $settings['system']['mail_quota_enabled'] == '1'><td><if $row['quota'] == 0>{$lng['emails']['noquota']}<else>{$row['quota']} MB</if></if></td>
|
<if $settings['system']['mail_quota_enabled'] == '1'><td><if $row['quota'] == 0>{$lng['emails']['noquota']}<else>{$row['quota']} MB</if></if></td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{$linker->getLink(array('section' => 'email', 'page' => $page, 'action' => 'edit', 'id' => $row['id']))}" style="text-decoration:none;">
|
<a href="{$linker->getLink(array('section' => 'email', 'page' => $page, 'action' => 'edit', 'id' => $row['id']))}" style="text-decoration:none;">
|
||||||
|
|||||||
Reference in New Issue
Block a user