Merge branch 'ent-6985-cambios-visuales-en-setting-de-correo' into 'develop'
changed ssl/tls to ssl See merge request artica/pandorafms!3808
This commit is contained in:
commit
8d5a950be2
|
@ -110,56 +110,147 @@ $table->data[$i++][1] = html_print_select_from_sql(
|
|||
);
|
||||
|
||||
$table->data[$i][0] = __('Remote config directory');
|
||||
$table->data[$i++][1] = html_print_input_text('remote_config', io_safe_output($config['remote_config']), '', 30, 100, true);
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
'remote_config',
|
||||
io_safe_output($config['remote_config']),
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Phantomjs bin directory');
|
||||
$table->data[$i++][1] = html_print_input_text('phantomjs_bin', io_safe_output($config['phantomjs_bin']), '', 30, 100, true);
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
'phantomjs_bin',
|
||||
io_safe_output(
|
||||
$config['phantomjs_bin']
|
||||
),
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Auto login (hash) password');
|
||||
$table->data[$i][1] = html_print_input_password('loginhash_pwd', io_output_password($config['loginhash_pwd']), '', 15, 15, true);
|
||||
$table->data[$i++][1] .= ui_print_reveal_password('loginhash_pwd', true);
|
||||
$table->data[$i][1] = html_print_input_password(
|
||||
'loginhash_pwd',
|
||||
io_output_password($config['loginhash_pwd']),
|
||||
'',
|
||||
15,
|
||||
15,
|
||||
true
|
||||
);
|
||||
$table->data[$i++][1] .= ui_print_reveal_password(
|
||||
'loginhash_pwd',
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Time source');
|
||||
$sources['system'] = __('System');
|
||||
$sources['sql'] = __('Database');
|
||||
$table->data[$i++][1] = html_print_select($sources, 'timesource', $config['timesource'], '', '', '', true);
|
||||
$table->data[$i++][1] = html_print_select(
|
||||
$sources,
|
||||
'timesource',
|
||||
$config['timesource'],
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Automatic check for updates');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('autoupdate', 1, $config['autoupdate'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'autoupdate',
|
||||
1,
|
||||
$config['autoupdate'],
|
||||
true
|
||||
);
|
||||
|
||||
echo "<div id='dialog' title='".__('Enforce https Information')."' style='display:none;'>";
|
||||
echo "<p style='text-align: center;'>".__('If SSL is not properly configured you will lose access to ').get_product_name().__(' Console').'</p>';
|
||||
echo '</div>';
|
||||
|
||||
$table->data[$i][0] = __('Enforce https');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch_extended('https', 1, $config['https'], false, '', '', true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch_extended(
|
||||
'https',
|
||||
1,
|
||||
$config['https'],
|
||||
false,
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Use cert of SSL');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch_extended('use_cert', 1, $config['use_cert'], false, '', '', true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch_extended(
|
||||
'use_cert',
|
||||
1,
|
||||
$config['use_cert'],
|
||||
false,
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
|
||||
$table->rowstyle[$i] = 'display: none;';
|
||||
$table->rowid[$i] = 'ssl-path-tr';
|
||||
$table->data[$i][0] = __('Path of SSL Cert.');
|
||||
$table->data[$i++][1] = html_print_input_text('cert_path', io_safe_output($config['cert_path']), '', 50, 255, true);
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
'cert_path',
|
||||
io_safe_output($config['cert_path']),
|
||||
'',
|
||||
50,
|
||||
255,
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Attachment store');
|
||||
$table->data[$i++][1] = html_print_input_text('attachment_store', io_safe_output($config['attachment_store']), '', 50, 255, true);
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
'attachment_store',
|
||||
io_safe_output($config['attachment_store']),
|
||||
'',
|
||||
50,
|
||||
255,
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('IP list with API access');
|
||||
if (isset($_POST['list_ACL_IPs_for_API'])) {
|
||||
$list_ACL_IPs_for_API = get_parameter_post('list_ACL_IPs_for_API');
|
||||
} else {
|
||||
$list_ACL_IPs_for_API = get_parameter_get('list_ACL_IPs_for_API', implode("\n", $config['list_ACL_IPs_for_API']));
|
||||
$list_ACL_IPs_for_API = get_parameter_get(
|
||||
'list_ACL_IPs_for_API',
|
||||
implode("\n", $config['list_ACL_IPs_for_API'])
|
||||
);
|
||||
}
|
||||
|
||||
$table->data[$i++][1] = html_print_textarea('list_ACL_IPs_for_API', 2, 25, $list_ACL_IPs_for_API, 'style="height: 50px; width: 300px"', true);
|
||||
$table->data[$i++][1] = html_print_textarea(
|
||||
'list_ACL_IPs_for_API',
|
||||
2,
|
||||
25,
|
||||
$list_ACL_IPs_for_API,
|
||||
'style="height: 50px; width: 300px"',
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('API password');
|
||||
$table->data[$i][1] = html_print_input_password('api_password', io_output_password($config['api_password']), '', 25, 255, true);
|
||||
$table->data[$i][1] = html_print_input_password(
|
||||
'api_password',
|
||||
io_output_password($config['api_password']),
|
||||
'',
|
||||
25,
|
||||
255,
|
||||
true
|
||||
);
|
||||
$table->data[$i++][1] .= ui_print_reveal_password('api_password', true);
|
||||
|
||||
$table->data[$i][0] = __('Enable GIS features');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('activate_gis', 1, $config['activate_gis'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'activate_gis',
|
||||
1,
|
||||
$config['activate_gis'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Enable Netflow');
|
||||
$rbt_disabled = false;
|
||||
|
@ -167,7 +258,15 @@ if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') {
|
|||
$rbt_disabled = true;
|
||||
}
|
||||
|
||||
$table->data[$i++][1] = html_print_checkbox_switch_extended('activate_netflow', 1, $config['activate_netflow'], $rbt_disabled, '', '', true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch_extended(
|
||||
'activate_netflow',
|
||||
1,
|
||||
$config['activate_netflow'],
|
||||
$rbt_disabled,
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Enable Network Traffic Analyzer');
|
||||
$table->data[$i++][1] = html_print_switch(
|
||||
|
@ -222,28 +321,106 @@ $table->data[$i][1] = html_print_input_text_extended(
|
|||
'readonly',
|
||||
true
|
||||
);
|
||||
$table->data[$i][1] .= '<a id="change_timezone">'.html_print_image('images/pencil.png', true, ['title' => __('Change timezone')]).'</a>';
|
||||
$table->data[$i][1] .= ' '.html_print_select($zone_name, 'zone', $zone_selected, 'show_timezone();', '', '', true);
|
||||
$table->data[$i++][1] .= ' '.html_print_select($timezone_n, 'timezone', $config['timezone'], '', '', '', true);
|
||||
$table->data[$i][1] .= '<a id="change_timezone">'.html_print_image(
|
||||
'images/pencil.png',
|
||||
true,
|
||||
['title' => __('Change timezone')]
|
||||
).'</a>';
|
||||
$table->data[$i][1] .= ' '.html_print_select(
|
||||
$zone_name,
|
||||
'zone',
|
||||
$zone_selected,
|
||||
'show_timezone();',
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
$table->data[$i++][1] .= ' '.html_print_select(
|
||||
$timezone_n,
|
||||
'timezone',
|
||||
$config['timezone'],
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
|
||||
$sounds = get_sounds();
|
||||
$table->data[$i][0] = __('Sound for Alert fired');
|
||||
$table->data[$i][1] = html_print_select($sounds, 'sound_alert', $config['sound_alert'], 'replaySound(\'alert\');', '', '', true);
|
||||
$table->data[$i][1] .= ' <a href="javascript: toggleButton(\'alert\');">'.html_print_image('images/control_play_col.png', true, ['id' => 'button_sound_alert', 'style' => 'vertical-align: middle;', 'width' => '16', 'title' => __('Play sound')]).'</a>';
|
||||
$table->data[$i][1] = html_print_select(
|
||||
$sounds,
|
||||
'sound_alert',
|
||||
$config['sound_alert'],
|
||||
'replaySound(\'alert\');',
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
$table->data[$i][1] .= ' <a href="javascript: toggleButton(\'alert\');">'.html_print_image(
|
||||
'images/control_play_col.png',
|
||||
true,
|
||||
[
|
||||
'id' => 'button_sound_alert',
|
||||
'style' => 'vertical-align: middle;',
|
||||
'width' => '16',
|
||||
'title' => __('Play sound'),
|
||||
]
|
||||
).'</a>';
|
||||
$table->data[$i++][1] .= '<div id="layer_sound_alert"></div>';
|
||||
|
||||
$table->data[$i][0] = __('Sound for Monitor critical');
|
||||
$table->data[$i][1] = html_print_select($sounds, 'sound_critical', $config['sound_critical'], 'replaySound(\'critical\');', '', '', true);
|
||||
$table->data[$i][1] .= ' <a href="javascript: toggleButton(\'critical\');">'.html_print_image('images/control_play_col.png', true, ['id' => 'button_sound_critical', 'style' => 'vertical-align: middle;', 'width' => '16', 'title' => __('Play sound')]).'</a>';
|
||||
$table->data[$i][1] = html_print_select(
|
||||
$sounds,
|
||||
'sound_critical',
|
||||
$config['sound_critical'],
|
||||
'replaySound(\'critical\');',
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
$table->data[$i][1] .= ' <a href="javascript: toggleButton(\'critical\');">'.html_print_image(
|
||||
'images/control_play_col.png',
|
||||
true,
|
||||
[
|
||||
'id' => 'button_sound_critical',
|
||||
'style' => 'vertical-align: middle;',
|
||||
'width' => '16',
|
||||
'title' => __('Play sound'),
|
||||
]
|
||||
).'</a>';
|
||||
$table->data[$i++][1] .= '<div id="layer_sound_critical"></div>';
|
||||
|
||||
$table->data[$i][0] = __('Sound for Monitor warning');
|
||||
$table->data[$i][1] = html_print_select($sounds, 'sound_warning', $config['sound_warning'], 'replaySound(\'warning\');', '', '', true);
|
||||
$table->data[$i][1] .= ' <a href="javascript: toggleButton(\'warning\');">'.html_print_image('images/control_play_col.png', true, ['id' => 'button_sound_warning', 'style' => 'vertical-align: middle;', 'width' => '16', 'title' => __('Play sound')]).'</a>';
|
||||
$table->data[$i][1] = html_print_select(
|
||||
$sounds,
|
||||
'sound_warning',
|
||||
$config['sound_warning'],
|
||||
'replaySound(\'warning\');',
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
$table->data[$i][1] .= ' <a href="javascript: toggleButton(\'warning\');">'.html_print_image(
|
||||
'images/control_play_col.png',
|
||||
true,
|
||||
[
|
||||
'id' => 'button_sound_warning',
|
||||
'style' => 'vertical-align: middle;',
|
||||
'width' => '16',
|
||||
'title' => __('Play sound'),
|
||||
]
|
||||
).'</a>';
|
||||
$table->data[$i++][1] .= '<div id="layer_sound_warning"></div>';
|
||||
|
||||
$table->data[$i][0] = __('Public URL');
|
||||
$table->data[$i++][1] = html_print_input_text('public_url', $config['public_url'], '', 40, 255, true);
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
'public_url',
|
||||
$config['public_url'],
|
||||
'',
|
||||
40,
|
||||
255,
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Force use Public URL');
|
||||
$table->data[$i++][1] = html_print_switch(
|
||||
|
@ -253,25 +430,54 @@ $table->data[$i++][1] = html_print_switch(
|
|||
]
|
||||
);
|
||||
|
||||
echo "<div id='force_public_url_dialog' title='".__('Enforce public URL usage information')."' style='display:none;'>";
|
||||
echo "<div id='force_public_url_dialog' title='".__(
|
||||
'Enforce public URL usage information'
|
||||
)."' style='display:none;'>";
|
||||
echo "<p style='text-align: center;'>".__('If public URL is not properly configured you will lose access to ').get_product_name().__(' Console').'</p>';
|
||||
echo '</div>';
|
||||
|
||||
$table->data[$i][0] = __('Public URL host exclusions');
|
||||
$table->data[$i++][1] = html_print_textarea('public_url_exclusions', 2, 25, $config['public_url_exclusions'], 'style="height: 50px; width: 300px"', true);
|
||||
$table->data[$i++][1] = html_print_textarea(
|
||||
'public_url_exclusions',
|
||||
2,
|
||||
25,
|
||||
$config['public_url_exclusions'],
|
||||
'style="height: 50px; width: 300px"',
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Referer security');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('referer_security', 1, $config['referer_security'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'referer_security',
|
||||
1,
|
||||
$config['referer_security'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Event storm protection');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('event_storm_protection', 1, $config['event_storm_protection'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'event_storm_protection',
|
||||
1,
|
||||
$config['event_storm_protection'],
|
||||
true
|
||||
);
|
||||
|
||||
|
||||
$table->data[$i][0] = __('Command Snapshot');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('command_snapshot', 1, $config['command_snapshot'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'command_snapshot',
|
||||
1,
|
||||
$config['command_snapshot'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Change remote config encoding');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('use_custom_encoding', 1, $config['use_custom_encoding'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'use_custom_encoding',
|
||||
1,
|
||||
$config['use_custom_encoding'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Server logs directory');
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
|
@ -309,9 +515,16 @@ $table->data[$i++][1] = html_print_select(
|
|||
true
|
||||
);
|
||||
|
||||
$config['past_planned_downtimes'] = isset($config['past_planned_downtimes']) ? $config['past_planned_downtimes'] : 1;
|
||||
$config['past_planned_downtimes'] = isset(
|
||||
$config['past_planned_downtimes']
|
||||
) ? $config['past_planned_downtimes'] : 1;
|
||||
$table->data[$i][0] = __('Allow create planned downtimes in the past');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('past_planned_downtimes', 1, $config['past_planned_downtimes'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'past_planned_downtimes',
|
||||
1,
|
||||
$config['past_planned_downtimes'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Limit for bulk operations');
|
||||
$table->data[$i++][1] = html_print_input_text(
|
||||
|
@ -324,22 +537,61 @@ $table->data[$i++][1] = html_print_input_text(
|
|||
);
|
||||
|
||||
$table->data[$i][0] = __('Include agents manually disabled');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('include_agents', 1, $config['include_agents'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'include_agents',
|
||||
1,
|
||||
$config['include_agents'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Set alias as name by default in agent creation');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('alias_as_name', 1, $config['alias_as_name'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'alias_as_name',
|
||||
1,
|
||||
$config['alias_as_name'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Unique IP');
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('unique_ip', 1, $config['unique_ip'], true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'unique_ip',
|
||||
1,
|
||||
$config['unique_ip'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Enable console log').ui_print_help_tip(__('Log location').': pandora_console/log/console.log', true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('console_log_enabled', 1, $config['console_log_enabled'], true);
|
||||
$table->data[$i][0] = __('Enable console log').ui_print_help_tip(
|
||||
__('Log location').': pandora_console/log/console.log',
|
||||
true
|
||||
);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'console_log_enabled',
|
||||
1,
|
||||
$config['console_log_enabled'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Enable audit log').ui_print_help_tip(__('Log location').': pandora_console/log/audit.log', true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('audit_log_enabled', 1, $config['audit_log_enabled'], true);
|
||||
$table->data[$i][0] = __('Enable audit log').ui_print_help_tip(
|
||||
__('Log location').': pandora_console/log/audit.log',
|
||||
true
|
||||
);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'audit_log_enabled',
|
||||
1,
|
||||
$config['audit_log_enabled'],
|
||||
true
|
||||
);
|
||||
|
||||
$table->data[$i][0] = __('Module custom ID readonly').ui_print_help_tip(__('Useful for integrations'), true);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch('module_custom_id_ro', 1, $config['module_custom_id_ro'], true);
|
||||
$table->data[$i][0] = __('Module custom ID readonly').ui_print_help_tip(
|
||||
__('Useful for integrations'),
|
||||
true
|
||||
);
|
||||
$table->data[$i++][1] = html_print_checkbox_switch(
|
||||
'module_custom_id_ro',
|
||||
1,
|
||||
$config['module_custom_id_ro'],
|
||||
true
|
||||
);
|
||||
|
||||
echo '<form id="form_setup" method="post" action="index.php?sec=gsetup&sec2=godmode/setup/setup&section=general&pure='.$config['pure'].'">';
|
||||
|
||||
|
@ -350,7 +602,7 @@ echo '<legend>'.__('General options').'</legend>';
|
|||
html_print_table($table);
|
||||
|
||||
$encryption = [
|
||||
'ssl' => 'SSL/TLS',
|
||||
'ssl' => 'SSL',
|
||||
'sslv2' => 'SSLv2',
|
||||
'sslv3' => 'SSLv3',
|
||||
'tls' => 'STARTTLS',
|
||||
|
@ -361,75 +613,159 @@ echo '</fieldset>';
|
|||
echo '<fieldset>';
|
||||
echo '<legend>'.__('Mail configuration').'</legend>';
|
||||
|
||||
$table_mail_conf->data[0][0] = __('From address');
|
||||
$table_mail_conf->data[0][1] = html_print_input_text('email_from_dir', $config['email_from_dir'], '', 30, 100, true);
|
||||
$table_mail_conf->data[0][0] = ui_print_warning_message(
|
||||
__(
|
||||
'Please notice that some providers like Gmail or Office365 need to setup/enable manually external connections using SMTP and you need to use STARTTLS on port 587.
|
||||
|
||||
$table_mail_conf->data[1][0] = __('From name');
|
||||
$table_mail_conf->data[1][2] = html_print_input_text('email_from_name', $config['email_from_name'], '', 30, 100, true);
|
||||
If you have manual settings in your pandora_server.conf, please note these settings will ignore this console setup.'
|
||||
)
|
||||
);
|
||||
|
||||
$table_mail_conf->data[2][0] = __('SMTP Server');
|
||||
$table_mail_conf->data[2][1] = html_print_input_text('email_smtpServer', $config['email_smtpServer'], '', 30, 100, true);
|
||||
$table_mail_conf->data[1][0] = __('From address');
|
||||
$table_mail_conf->data[1][1] = html_print_input_text(
|
||||
'email_from_dir',
|
||||
$config['email_from_dir'],
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table_mail_conf->data[3][0] = __('SMTP Port');
|
||||
$table_mail_conf->data[3][1] = html_print_input_text('email_smtpPort', $config['email_smtpPort'], '', 30, 100, true);
|
||||
$table_mail_conf->data[2][0] = __('From name');
|
||||
$table_mail_conf->data[2][1] = html_print_input_text(
|
||||
'email_from_name',
|
||||
$config['email_from_name'],
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table_mail_conf->data[4][0] = __('Encryption');
|
||||
$table_mail_conf->data[4][1] = html_print_select($encryption, 'email_encryption', $config['email_encryption'], '', __('none'), 0, true);
|
||||
$table_mail_conf->data[3][0] = __('SMTP Server');
|
||||
$table_mail_conf->data[3][1] = html_print_input_text(
|
||||
'email_smtpServer',
|
||||
$config['email_smtpServer'],
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table_mail_conf->data[5][0] = __('Email user');
|
||||
$table_mail_conf->data[5][1] = html_print_input_text('email_username', $config['email_username'], '', 30, 100, true);
|
||||
$table_mail_conf->data[4][0] = __('SMTP Port');
|
||||
$table_mail_conf->data[4][1] = html_print_input_text(
|
||||
'email_smtpPort',
|
||||
$config['email_smtpPort'],
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table_mail_conf->data[6][0] = __('Email password');
|
||||
$table_mail_conf->data[6][1] = html_print_input_password('email_password', io_output_password($config['email_password']), '', 30, 100, true);
|
||||
$table_mail_conf->data[6][1] .= ui_print_reveal_password('email_password', true);
|
||||
$table_mail_conf->data[5][0] = __('Encryption');
|
||||
$table_mail_conf->data[5][1] = html_print_select(
|
||||
$encryption,
|
||||
'email_encryption',
|
||||
$config['email_encryption'],
|
||||
'',
|
||||
__('none'),
|
||||
0,
|
||||
true
|
||||
);
|
||||
|
||||
$uniqid = uniqid();
|
||||
$table_mail_conf->data[6][0] = __('Email user');
|
||||
$table_mail_conf->data[6][1] = html_print_input_text(
|
||||
'email_username',
|
||||
$config['email_username'],
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table_mail_conf->data[7][0] = html_print_button(__('Email test'), 'email_test_dialog', false, "show_email_test('".$uniqid."');", 'class="sub next"', true);
|
||||
$table_mail_conf->data[7][0] = __('Email password');
|
||||
$table_mail_conf->data[7][1] = html_print_input_password(
|
||||
'email_password',
|
||||
io_output_password(
|
||||
$config['email_password']
|
||||
),
|
||||
'',
|
||||
30,
|
||||
100,
|
||||
true
|
||||
);
|
||||
$table_mail_conf->data[7][1] .= ui_print_reveal_password(
|
||||
'email_password',
|
||||
true
|
||||
);
|
||||
|
||||
print_email_test_modal_window($uniqid);
|
||||
$uniqid = uniqid();
|
||||
|
||||
html_print_input_hidden('update_config', 1);
|
||||
html_print_table($table_mail_conf);
|
||||
$table_mail_conf->data[8][0] = html_print_button(
|
||||
__('Email test'),
|
||||
'email_test_dialog',
|
||||
false,
|
||||
"show_email_test('".$uniqid."');",
|
||||
'class="sub next"',
|
||||
true
|
||||
);
|
||||
|
||||
print_email_test_modal_window($uniqid);
|
||||
|
||||
html_print_input_hidden('update_config', 1);
|
||||
html_print_table($table_mail_conf);
|
||||
|
||||
|
||||
echo '</fieldset>';
|
||||
echo '</fieldset>';
|
||||
|
||||
echo '<fieldset>';
|
||||
echo '<fieldset>';
|
||||
|
||||
echo '<div class="action-buttons" style="width: '.$table->width.'">';
|
||||
html_print_submit_button(__('Update'), 'update_button', false, 'class="sub upd"');
|
||||
echo '</div>';
|
||||
echo '</form>';
|
||||
echo '<div class="action-buttons" style="width: '.$table->width.'">';
|
||||
html_print_submit_button(__('Update'), 'update_button', false, 'class="sub upd"');
|
||||
echo '</div>';
|
||||
echo '</form>';
|
||||
|
||||
|
||||
/**
|
||||
* Print the modal window for the summary of each alerts group
|
||||
*
|
||||
* @param string $id Id.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function print_email_test_modal_window($id)
|
||||
{
|
||||
// Email config table.
|
||||
$table_mail_test = new stdClass();
|
||||
$table_mail_test->width = '100%';
|
||||
$table_mail_test->class = 'databox filters';
|
||||
$table_mail_test->data = [];
|
||||
$table_mail_test->style[0] = 'font-weight: bold';
|
||||
$table_mail_test->colspan[1][0] = 2;
|
||||
/**
|
||||
* Print the modal window for the summary of each alerts group
|
||||
*
|
||||
* @param string $id Id.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function print_email_test_modal_window($id)
|
||||
{
|
||||
// Email config table.
|
||||
$table_mail_test = new stdClass();
|
||||
$table_mail_test->width = '100%';
|
||||
$table_mail_test->class = 'databox filters';
|
||||
$table_mail_test->data = [];
|
||||
$table_mail_test->style[0] = 'font-weight: bold';
|
||||
$table_mail_test->colspan[1][0] = 2;
|
||||
|
||||
$table_mail_test->data[0][0] = __('Address');
|
||||
$table_mail_test->data[0][1] = html_print_input_text('email_test_address', '', '', 40, 100, true);
|
||||
$table_mail_test->data[0][0] = __('Address');
|
||||
$table_mail_test->data[0][1] = html_print_input_text(
|
||||
'email_test_address',
|
||||
'',
|
||||
'',
|
||||
40,
|
||||
100,
|
||||
true
|
||||
);
|
||||
|
||||
$table_mail_test->data[1][0] = html_print_button(__('Send'), 'email_test', false, '', 'class="sub next"', true).'  <span id="email_test_sent_message" style="display:none;">Email sent</span><span id="email_test_failure_message" style="display:none;">Email could not been sent</span>';
|
||||
$table_mail_test->data[1][0] = html_print_button(
|
||||
__('Send'),
|
||||
'email_test',
|
||||
false,
|
||||
'',
|
||||
'class="sub next"',
|
||||
true
|
||||
).'  <span id="email_test_sent_message" style="display:none;">Email sent</span><span id="email_test_failure_message" style="display:none;">Email could not been sent</span>';
|
||||
|
||||
echo '<div id="email_test_'.$id.'" title="'.__('Check mail configuration').'" style="display:none">'.html_print_table($table_mail_test, true).'</div>';
|
||||
}
|
||||
echo '<div id="email_test_'.$id.'" title="'.__('Check mail configuration').'" style="display:none">'.html_print_table($table_mail_test, true).'</div>';
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
function toggleButton(type) {
|
||||
if ($("#button_sound_" + type).attr('src') == 'images/control_pause_col.png') {
|
||||
|
|
Loading…
Reference in New Issue