diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 250a258f1..137fa8524 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -1370,6 +1370,8 @@ function rcmail_settings_tabs($attrib) array('command' => 'responses', 'type' => 'link', 'label' => 'responses', 'title' => 'manageresponses'), ); + $disabled_actions = (array) $RCMAIL->config->get('disabled_actions'); + // get all identites from DB and define list of cols to be displayed $plugin = $RCMAIL->plugins->exec_hook('settings_actions', array( 'actions' => $default_actions, @@ -1381,6 +1383,11 @@ function rcmail_settings_tabs($attrib) $tabs = array(); foreach ($plugin['actions'] as $action) { + $task_action = $action['command'] ? $action['command'] : $action['action']; + if (in_array('settings.' . $task_action, $disabled_actions)) { + continue; + } + if (!$action['command'] && !$action['href'] && $action['action']) { $action['href'] = $RCMAIL->url(array('_action' => $action['action'])); }