📄 showsysinfo.asp
字号:
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="useDayTime" <% if ei.useDayTime = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">DayTime port</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="daytimeport" class="textbox" size="10" maxlength="5" value="<%=ei.daytimeport %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Limit SMTP service (<font color="#FF3333">Generally not activated</font>)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="EnableLimitSmtp" <% if ei.EnableLimitSmtp = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Limit POP3 service (<font color="#FF3333">Generally not activated</font>)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="EnableLimitPop3" <% if ei.EnableLimitPop3 = true then response.write "checked"%>>
</td>
</tr>
</table><br>
<table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Multi-POP3 mail collection interval (Min)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="POP3DownSleepTime" class="textbox" size="10" maxlength="3" value="<%=ei.POP3DownSleepTime %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">ISP mail collection interval (Min)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="IspDownSleepTime" class="textbox" size="10" maxlength="3" value="<%=ei.IspDownSleepTime %>">
</td>
</tr>
</table><br>
<a name="showmisp"></a>
<table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable ISP mail collection <a href="showmisp.asp?<%=getGRSN() %>"><img src="images\ugo.gif" border="0" align="absbottom"></a></div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="canUseIsp" <% if ei.canUseIsp = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">ISP server</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="ispServerName" class="textbox" size="20" maxlength="64" value="<%=ei.ispServerName %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">ISP port</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="ispPop3Port" class="textbox" size="10" maxlength="5" value="<%=ei.ispPop3Port %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">ISP account</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="ispUserName" class="textbox" size="20" maxlength="64" value="<%=ei.ispUserName %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">ISP password</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="password" name="ispPassword" class="textbox" size="20" maxlength="32" value="<%=ei.ispPassword %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Handling of undirected or misdirected ISP mail</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<select name="manageisp" class="drpdwn">
<%
if ei.manageisp = 0 then
response.write "<option value='0' selected>Accept and forward to mail manager</option>"
response.write "<option value='1'>Reject</option>"
else
response.write "<option value='0'>Accept and forward to mail manager</option>"
response.write "<option value='1' selected>Reject</option>"
end if
%>
</select>
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable ISP mails distribute</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="useDistributeISPMail" <% if ei.useDistributeISPMail = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Selete mailing list for ISP mails distribute</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<select name="distributeISPMailinglist" class="drpdwn">
<option value=''>All Users</option>
<%
dim ml
set ml = server.createobject("easymail.mailinglist")
ml.Load ""
i = 0
allnum = ml.MailingListCount
do while i < allnum
mlname = ml.GetMailingListNameByIndex(i)
if mlname = ei.distributeISPMailinglist then
response.write "<option value='" & mlname & "' selected>" & server.htmlencode(mlname) & "</option>"
else
response.write "<option value='" & mlname & "'>" & server.htmlencode(mlname) & "</option>"
end if
mlname = NULL
i = i + 1
loop
set ml = nothing
%>
</select>
</td>
</tr>
</table><br>
<a name="browmailinglist"></a>
<table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable mailing list <a href="browmailinglist.asp?<%=getGRSN() %>"><img src="images\ugo.gif" border="0" align="absbottom"></a></div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="useMailList" <% if ei.useMailList = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">DNS server ip</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="DNS" class="textbox" size="30" maxlength="64" value="<%=ei.DNS %>">
</td>
</tr>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable client-end password verification</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="useLogonPass" <% if ei.useLogonPass = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Max. Attachments size (1 - 99,999K)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="webMailMaxLen" class="textbox" size="10" maxlength="5" value="<%=ei.webMailMaxLen %>"> K
</td>
</tr>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Time zone setting</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="timeZone" class="textbox" size="5" maxlength="5" value="<%=ei.timeZone %>">
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable SMS data save support (Generally not activated)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="EnableSMS" <% if ei.EnableSMS = true then response.write "checked"%>>
</td>
</tr>
<tr>
<a name="keywords"></a>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable KeyWords filtering <a href="keywords.asp?<%=getGRSN() %>"><img src="images\ugo.gif" border="0" align="absbottom"></a></div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="EnableKeywordFilter" <% if ei.EnableKeywordFilter = true then response.write "checked"%>>
</td>
</tr>
</table><br>
<table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable group mail (Generally not activated)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="useList" <% if ei.useList = true then response.write "checked"%>> (Deactivate immediately after group mail sending)
</td>
</tr>
<tr>
<td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Group mail sender</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<select name="listSender" class="drpdwn">
<%
i = 0
allnum = eu.GetUsersCount
do while i < allnum
eu.GetUserByIndex i, name, domain, comment
if name <> ei.listSender then
response.write "<option value='" & name & "'>" & name & "</option>"
else
response.write "<option value='" & name & "' selected>" & name & "</option>"
end if
name = NULL
domain = NULL
comment = NULL
i = i + 1
loop
%>
</select>
</td>
</tr>
</table><br>
<table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr>
<td height="25" width="55%" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
<div align="left">Enable Telnet logging (Generally not activated)</div>
</td>
<td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="canhandlogon" <% if ei.canhandlogon = true then response.write "checked"%>>
</td>
</tr>
<tr>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -