Skip to content
Snippets Groups Projects
Commit a8ac8563 authored by Florian Schaal's avatar Florian Schaal
Browse files

readd missing code

parent dadfb45a
No related branches found
No related tags found
1 merge request!202add mailfilter to resync
......@@ -145,6 +145,7 @@ class page_action extends tform_actions {
'web_domain' => array (
'index_field' => 'domain_id',
'server_type' => 'web',
'server_id' => $server_id,
),
'shell_user' => array (
'index_field' => 'shell_user_id',
......@@ -263,6 +264,17 @@ class page_action extends tform_actions {
unset($options_servers);
}
//* mailinglist
$server_list = $this->create_list($mail_server_rec, 'mail', 'mail_mailinglist');
$options_servers = $server_list[0];$server_count = $server_list[1];
unset($server_list);
if (isset($options_servers)) { //* server with data found
if ($server_count > 1) $options_servers = "<option value='0'>".$app->tform->wordbook['all_active_mail_txt']."</option>" . $options_servers;
$app->tpl->setVar('mailinglist_server_id', $options_servers);
$app->tpl->setVar('mailinglist_found', 1);
unset($options_servers);
}
}
//* fetch web-server
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment