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

📄 webadmin.asp

📁 蓝芒3.0A最新所有功能完整破解版
💻 ASP
📖 第 1 页 / 共 2 页
字号:
                <div>Enable Shared folders:&nbsp;</div>
              </td>
			<td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
				<input type="checkbox" name="Enable_ShareFolder" value="checkbox" <% if mam.Enable_ShareFolder = true then response.write "checked"%>>
			</td>
            </tr>
            <tr>
              <td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
    height=30>
	<a name="signhold"></a>
                <div>Use account reservation:&nbsp;</div>
              </td>
			<td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
				<input type="checkbox" name="Enable_SignHold" value="checkbox" <% if mam.Enable_SignHold = true then response.write "checked"%>>
				&nbsp;<a href="signhold.asp?<%=getGRSN() %>"><img src="images\ugo.gif" border="0" align="absbottom"></a>
			</td>
            </tr>
            <tr>
              <td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Allow public mailbox application:&nbsp;</div>
              </td>
			<td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
				<input type="checkbox" name="Enable_FreeSign" value="checkbox" <% if mam.Enable_FreeSign = true then response.write "checked"%>>
			</td>
            </tr>
            <tr>
              <td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Public applicable accounts contains domain name:&nbsp;</div>
              </td>
			<td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
				<input type="checkbox" name="Enable_SignWithDomainUser" value="checkbox" <% if mam.Enable_SignWithDomainUser = true then response.write "checked"%>>
			</td>
            <tr>
              <td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Only English mailbox is allowed for public application:&nbsp;</div>
              </td>
			<td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
				<input type="checkbox" name="Enable_SignEnglishName" value="checkbox" <% if mam.Enable_SignEnglishName = true then response.write "checked"%>>
			</td>
            </tr>
            <tr>
              <td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Activate application times limit:&nbsp;</div>
              </td>
			<td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
				<input type="checkbox" name="Enable_SignNumberLimit" value="checkbox" <% if mam.Enable_SignNumberLimit = true then response.write "checked"%>>&nbsp;Applied users are not allowed for re-application until <input type="text" name="SignNumberLimitDays" class='textbox' value="<%=mam.SignNumberLimitDays %>" size="3" maxlength="3"> day later.
			</td>
            </tr>
            <tr>
              <td valign=center style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Log file display:&nbsp;</div>
              </td>
              <td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>Display
        <select name="LogPageKSize" class="drpdwn">
<%
i = 10
if i <> Application("em_LogPageKSize") then
	response.write "<option value='" & i & "'>" & i & "K</option>"
else
	response.write "<option value='" & i & "' selected>" & i & "K</option>"
end if

i = 20
if i <> Application("em_LogPageKSize") then
	response.write "<option value='" & i & "'>" & i & "K</option>"
else
	response.write "<option value='" & i & "' selected>" & i & "K</option>"
end if

i = 50
do while i < 999
	if i <> Application("em_LogPageKSize") then
		response.write "<option value='" & i & "'>" & i & "K</option>" & Chr(10)
	else
		response.write "<option value='" & i & "' selected>" & i & "K</option>" & Chr(10)
	end if

	i = i + 50
loop
%>
        </select> per page when view log file.
				</td>
            </tr>
            <tr>
              <td valign=center height=30 style='border-bottom:1px #8CA5B5 solid;'>
                <div>Set public test account as test:&nbsp;</div>
              </td>
              <td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
		<select name="TestAccounts" class="drpdwn">
		<option value="">[Null]</option>
<%
i = 0
allnum = eu.GetUsersCount

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

	if name <> mam.TestAccounts 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 valign=center style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Select mailbox activation mode:&nbsp;</div>
              </td>
              <td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
        <select name="SignMode" class="drpdwn">
<%
i = 0

do while i < 3
	if i <> mam.SignMode then
		response.write "<option value='" & i & "'>"
	else
		response.write "<option value='" & i & "' selected>"
	end if

	if i = 0 then
		response.write "Activate immediately after application"
	elseif i = 1 then
		response.write "Activate by administrator"
	elseif i = 2 then
		response.write "Activate by administrator or mail from user"
	end if

	response.write "</option>" & Chr(10)

	i = i + 1
loop
%>
        </select>
				</td>
            </tr>
            <tr>
              <td valign=center style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Number of days preserved for account application:&nbsp;</div>
              </td>
              <td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
                <input type="text" name="SignWaitDays" class='textbox' value="<%=mam.SignWaitDays %>" size="10" maxlength="2">
				</td>
            </tr>
            <tr>
              <td valign=center style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Sender name of activation mail:&nbsp;</div>
              </td>
              <td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
                <input type="text" name="am_Name" class='textbox' value="<%=mam.am_Name %>" maxlength="64">
				</td>
            </tr>
            <tr>
              <td valign=center style='border-bottom:1px #8CA5B5 solid;'
    height=30>
                <div>Sender account of activation mail:&nbsp;</div>
              </td>
              <td align=left bgcolor="#EFF7FF" style='border-bottom:1px #8CA5B5 solid;'>
        <select name="am_Accounts" class="drpdwn">
<%
i = 0
allnum = eu.GetUsersCount

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

	if name <> mam.am_Accounts 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 colspan="2" align="center">
	<table><tr>
		<td width="40%" height="24">
		<div align="center"><br>Subject of activation mail:</div>
	</td>
	<td width="60%"><br>
		<input name="acSubject" type="text" value="<%=pr.acSubject %>" size="35" class='textbox'>
	</td>
	</tr>
	<tr>
	<td colspan="2">
	<div align="center">
	<textarea name="acText" cols="60" rows="7" class='textbox'><%=pr.acText %></textarea>
	</div>
	</td>
	</tr></table><br></td></tr>
            <tr>
              <td valign=center bgcolor=#ffffff
    height=40 colspan="2">
                <div align="right">
				<input type="button" value=" Save " onclick="javascript:ischangeAdmin();" class="Bsbttn">&nbsp;&nbsp;
				<input type="button" value="Cancel" onclick="javascript:location.href='right.asp?<%=getGRSN() %>';" class="Bsbttn">
                </div>
              </td>
            </tr>
          </table>
        </div>
      </td>
    </tr>
  </table><br><br><br>
  <div align="center">
    <table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
      <tr>
        <td colspan="2" height="10">
        </td>
      </tr>
      <tr>
        <td width="30%" valign="top"><font color="#FF3333">1. Webmail system administrator:</font></td>
        <td width="70%"> For security considerations, it is recommended that the system administrator be set to a
        non-admin account (and be kept secret from others) to prevent attacks oriented to this account and password.
        Notice, however, if the automatic account purging function is enabled, this non-admin account may be deleted
        after long period of not logging on.  The account can be modified manually too: open the \adminmsg\webadmin.ini
        file and set specified account at systemadmin entry, then restart IIS.<br>
          <br>
        </td>
      </tr>
      <tr>
		<td width="30%" valign="top"><font color="#FF3333">2. Test Account:</font></td>
		<td width="70%"> When a user is selected as public test account, the password of it cannot be modified.<br>
          <br>
        </td>
      </tr>
      <tr>
		<td width="30%" valign="top"><font color="#FF3333">3. Number of days preserved for account application:</font></td>
		<td width="70%"> When a mailbox is applied for, the system will preserve it from being occupied by other users, until it is activated or deleted due to exceeding the number of preservation days.<br>
          <br>
        </td>
      </tr>
      <tr>
        <td width="30%" valign="top"><font color="#FF3333">4. Activation Mail:</font></td>
		<td width="70%"> When the activation mode of the mailbox is set as "Activate by administrator or mail from user", an "activation mail" will be sent to a mailbox specified by the user right after the application. When the user clicks the hyperlink included in the mail, the account will be activated.<br>
		<br>
		<font color="#FF3333">%time%</font> : shall be replaced with the time of user application.
		<br>
		<font color="#FF3333">%signmail%</font> : shall be replaced by the email address applied.
		<br>
		<font color="#FF3333">%username%</font> : shall be replaced by the login name of the user.
		<br>
		<font color="#FF3333">%ip%</font> : shall be replaced with the IP address at user application.
		<br>
		<font color="#FF3333">%accode%</font> : shall be replaced with the serial number for activation.
		<br><br>
		Special notice: "http://localhost/actionit.asp" must be replaced with valid http address on your server to enable activation.<br>
		Eg: if your domain name is: <font color="#FF3333">www.mydomain.com</font>, and the virtual folder of WebMail is <font color="#FF3333">webeasymail</font>, you will need to change the hyperlink to: <br>
		http://<font color="#FF3333">www.mydomain.com</font>/<font color="#FF3333">webeasymail</font>/actionit.asp?accode=%accode%
		<br>
        </td>
      </tr>
    </table>
  </div>
</Form>
<br>
</BODY>
</HTML>

<%
set mam = nothing
set eu = nothing
set pr = nothing
%>

⌨️ 快捷键说明

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