more work regarding the implementation of the new feature that allows to specify smtp auth credentials for alarms/notifications only (otherwise credentials of corrent user are used)

This commit is contained in:
Klaus Leithoff 2011-10-06 09:13:48 +00:00
parent e654d3fbfb
commit d2f4d36355
2 changed files with 11 additions and 3 deletions

View File

@ -235,6 +235,10 @@ function auth_type_activesync($config)
{
return _options_from(setup_cmd_config::auth_types(),$config['auth_type_activesync']);
}
function auth_type_smtp($config)
{
return _options_from(emailadmin_ui::getSMTPAuthConfig(),$config['smtpAuth']);
}
/**
* Returns options string

View File

@ -184,7 +184,7 @@
</select>
</td>
</tr>
<tr class="row_on"">
<tr class="row_on">
<td>{lang_Mail_server_login_type}:</td>
<td>
<select name="newsettings[mail_login_type]">{hook_mail_login_type}</select>
@ -203,14 +203,18 @@
<td><input name="newsettings[smtp_port]" value="{value_smtp_port}"></td>
</tr>
<tr class="row_on">
<td>{lang_SMTP-authentication_required}:</td>
<td><select name="newsettings[smtpAuth]"> {hook_auth_type_smtp}</select></td>
</tr>
<tr class="row_off">
<td>{lang_User_for_SMTP-authentication_(leave_it_empty_if_no_auth_required)}:</td>
<td><input name="newsettings[smtp_auth_user]" value="{value_smtp_auth_user}"></td>
</tr>
<tr class="row_off">
<tr class="row_on">
<td>{lang_Password_for_SMTP-authentication}:</td>
<td><input type="password" name="newsettings[smtp_auth_passwd]" value="{value_smtp_auth_passwd}"></td>
</tr>
<tr class="row_on">
<tr class="row_off">
<td colspan="2">&nbsp;</td>
</tr>