home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD>
- <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
- <META HTTP-EQUIV="Expires" CONTENT="-1">
- </HEAD>
- <BODY bgcolor=#ffffff>
- <CENTER><FONT SIZE=6>Create a New User</FONT></CENTER>
- <BR>
- <SCRIPT language="JavaScript">
- <!--
-
- var inValid = ":|/ ";
-
- function Form_Validator(theForm)
- {
- var alertstr = "Please correct the following\n";
-
- if (theForm.username.value == "")
- {
- alert(alertstr + "Enter a value for the \"Username\" field.");
- theForm.username.focus();
- return (false);
- }
-
- for (j = 0; j < theForm.username.value.length; j++)
- {
- if (inValid.indexOf(theForm.username.value.charAt(j)) != -1)
- {
- alert(alertstr + "The \"Username\" contains invalid characters (:| )");
- theForm.username.focus();
- return (false);
- }
- }
- }
- //-->
- </SCRIPT>
- <BR>
- <FORM METHOD="POST" ACTION="/session/adduser" TARGET="_top" onsubmit="return Form_Validator(this)">
- <INPUT TYPE="hidden" NAME="RCpage" VALUE="/sysadmin/usermgmt/users.htm">
-
- <TABLE border=0 cellpadding=5 cellspacing=2 width=550>
- <TR valign=top>
- <TD align=right><B>Username</B></TD>
- <TD><INPUT TYPE="text" NAME="username" VALUE="" SIZE=40 MAXLENGTH=40>
- <BR>
- <I>The Account name can have any characters from the <B>Valid Characters</B>
- list with the exception of spaces. For machines hosting multiple domains,
- the username can include the domain to allow for host-specific email
- addresses. For example, users <CODE>stacia@sambar.com</CODE> and
- <CODE>stacia@sambar.org</CODE> are both hosted on the same machine
- but are separate user and email accounts, whereas the user <CODE>tod</CODE>
- results in mail to either domain being deposited in a single mailbox.
- <RCif RCEntauth = true>
- <BR>
- <B>NT Domain authentication is enabled.</B> User accounts configured
- with this interface will only be used for configuring mailboxes;
- the password and group entries will be ignored by the system.
- <RCendif>
- </TD>
- </TR>
- <TR VALIGN=top>
- <TD align=right><B>Password</B></TD>
- <TD><INPUT TYPE="password" NAME="password" VALUE="" SIZE=40 MAXLENGTH=40></TD>
- </TR>
- <TR VALIGN=top>
- <TD align=right><B>Group</B></TD>
- <TD>
- <SELECT NAME="group">
- <RCXselectgroup>
- </SELECT>
- </TR>
- <TR VALIGN=top>
- <TD align=right><B>Account Name</B></TD>
- <TD><INPUT TYPE="text" NAME="name" VALUE="" SIZE=40 MAXLENGTH=40></TD>
- </TR>
- <TR VALIGN=top>
- <TD align=right><B>Root Directory</B></TD>
- <TD>
- <INPUT TYPE="text" NAME="dir" VALUE="<RCEdocsdir>" SIZE=40 MAXLENGTH=40><BR>
- <I>Relative to '<RCErootdir>' unless a drive is give (i.e. d:/wwwroot).
- To allow FTP access to <B>all</B> drives and directories on the machine,
- set the Root Directory to the single star (*) character.</I>
- <BR>
- Note: The <B>Document Manager</B> makes use of this directive to restrict
- user access. If the path specified is outside the document directory, the
- Document Manager will disallow uploads by this user.
- In addition, if <B>User Directories</B> are enabled, this path can be
- accessed via the URL: http://<RCEservername>/~<I>username</I>/
- (the <B>UserDir</B> facility must be disabled/enabled for user changes to
- take effect subsequent to startup.)
- <BR>
- <INPUT TYPE="radio" NAME="makedir" VALUE="true"> Create
- <INPUT TYPE="radio" NAME="makedir" VALUE="false" CHECKED> Don't Create
- </TD>
- </TR>
- <TR VALIGN=top>
- <TD align=right><B>Access</B></TD>
- <TD>
- <INPUT TYPE="radio" NAME="ftpprivs" VALUE="0" CHECKED> None<BR>
- <INPUT TYPE="radio" NAME="ftpprivs" VALUE="1"> Read Only<BR>
- <INPUT TYPE="radio" NAME="ftpprivs" VALUE="2"> Read/Write<BR>
- </TD>
- </TR>
- <TR VALIGN=top>
- <TD align=right><B>FTP Maximum Upload</B></TD>
- <TD>
- <INPUT TYPE="text" NAME="ftpmax" VALUE="0"><BR>
- The maximum upload space (in mega-bytes) permitted for this user account.
- A value of zero (0) indicates unlimited capacity (the minimum capacity is 5MB).
- All directories below the FTP Root Directory are included in the capacity
- calculation.
- </TD>
- </TR>
- <RCif RCEmailserver=true>
- <TR VALIGN=top>
- <TD align=right><B>Mailbox</B></TD>
- <TD>
- <INPUT TYPE="checkbox" NAME="mbox"> Create a local mailbox for this user.
- </TD>
- </TR>
- <RCendif>
- <TR>
- <TD></TD><TD><INPUT TYPE="submit" VALUE="Create New User"></TD>
- </TR>
- </TABLE>
- </FORM>
- </CENTER>
- </BODY>
- </HTML>
-