⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showsysinfo.asp

📁 蓝芒3.0A最新所有功能完整破解版
💻 ASP
📖 第 1 页 / 共 3 页
字号:
<a name="showkill"></a>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Enable reject connection from specified IP/server&nbsp;&nbsp;&nbsp;<a href="showkill.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="startKill" <% if ei.startKill = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Enable logging</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="LogSave" <% if ei.LogSave = 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">Backup settings (Generally set as "incremental backup")</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <select name="backupmode" class="drpdwn">
<%
if ei.backupmode = 0 then
	response.write "<option value='0' selected>Refreshment Backup</option>"
	response.write "<option value='1'>Incremental Backup</option>"
	response.write "<option value='2'>No Backup</option>"
elseif ei.backupmode = 1 then
	response.write "<option value='0'>Refreshment Backup</option>"
	response.write "<option value='1' selected>Incremental Backup</option>"
	response.write "<option value='2'>No Backup</option>"
elseif ei.backupmode = 2 then
	response.write "<option value='0'>Refreshment Backup</option>"
	response.write "<option value='1'>Incremental Backup</option>"
	response.write "<option value='2' selected>No Backup</option>"
end if
%>
        </select>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Backup Interval (Day)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="backupdate" class="textbox" size="10" maxlength="3" value="<%=ei.backupdate %>">
        </td>
    </tr>
	</table><br>
<a name="showstakeout"></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 mail monitoring&nbsp;&nbsp;&nbsp;<a href="showstakeout.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="useStakeOut" <% if ei.useStakeOut = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Monitored mails carbon copied to</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <select name="stakeOutTo" class="drpdwn">
<%
i = 0
allnum = eu.GetUsersCount

do while i < allnum
	eu.GetUserByIndex i, name, domain, comment

	if name <> ei.stakeOutTo 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 mail auto purging</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="useAutoMailClean" <% if ei.useAutoMailClean = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Maximum number of days for mail relocation in automatic purging (10 - 9999)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="mailMoveDays" class="textbox" size="10" maxlength="4" value="<%=ei.mailMoveDays %>">
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">In automatic purging, expired mail move to</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <select name="mailMoveTo" class="drpdwn">
<%
i = 0
allnum = eu.GetUsersCount

do while i < allnum
	eu.GetUserByIndex i, name, domain, comment

	if name <> ei.mailMoveTo 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>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Maximum number of days for mail deletion in automatic purging (10 - 9999)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="mailDeleteDays" class="textbox" size="10" maxlength="4" value="<%=ei.mailDeleteDays %>">
        </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 account auto purging</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="useAutoUserClean" <% if ei.useAutoUserClean = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Maximum number of days tolerated for no logging before account forbidden (1 - 9999)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="forbidUserDays" class="textbox" size="10" maxlength="4" value="<%=ei.forbidUserDays %>">
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Maximum number of days waited in forbidden mode before account deleted (1 - 9999)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="deleteUserDays" class="textbox" size="10" maxlength="4" value="<%=ei.deleteUserDays %>">
        </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 Auto-Spam guard</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="EnableAutoSpam" <% if ei.EnableAutoSpam = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Determined by system (Activation recommended)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="AutoSpamEnableAdd" <% if ei.AutoSpamEnableAdd = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Considered spamming when mails are sent per day more than</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="MaxMailForSpam" class="textbox" size="10" maxlength="3" value="<%=ei.MaxMailForSpam %>">
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Cleared from filter list without spamming after</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="CleanSpamDays" class="textbox" size="10" maxlength="3" value="<%=ei.CleanSpamDays %>">&nbsp;days
        </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 password protection</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="EnablePreHacker" <% if ei.EnablePreHacker = true then response.write "checked"%>>
        </td>
    </tr>
    <tr>
      <td height="25" bgcolor="#dbeaf5" align="right" style='border-bottom:1px #8CA5B5 solid;'>
        <div align="left">Suspend time after password protection activated (1 - 999)</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="text" name="bWaitMinute" class="textbox" size="5" maxlength="3" value="<%=ei.bWaitMinute %>">&nbsp;Min
        </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 virus protection</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="enableScanVirus" <% if ei.enableScanVirus = 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">Notify sender when virus detected</div>
      </td>
      <td align="left" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'>
        <input type="checkbox" name="EnableNotifyForVirus" <% if ei.EnableNotifyForVirus = true then response.write "checked"%>>
        </td>
    </tr>
    <tr bgcolor="#ffffff">
      <td colspan="3" align="center">
        <div align="right"><br>
		<input type="button" value=" Save " onclick="javascript:sub()" class="Bsbttn">&nbsp;&nbsp;
		<input type="button" value="Cancel" onclick="javascript:location.href='right.asp?<%=getGRSN() %>';" class="Bsbttn">
        </div>
      </td>
    </tr>
  </table>
  </FORM>
  <br>
</BODY>
</HTML>

<%
set ei = nothing
set eu = nothing
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -