No longer used

This commit is contained in:
Miles Lott 2001-12-23 15:42:07 +00:00
parent dba63c65d9
commit 093e6d006b
4 changed files with 0 additions and 330 deletions

View File

@ -1,42 +0,0 @@
<!-- BEGIN addressbook/setup/config.inc.php -->
<tr bgcolor="FFFFFF">
<td colspan="2">&nbsp;</td>
</tr>
<tr bgcolor="486591">
<td colspan="2"><font color="fefefe">&nbsp;<b>Addressbook/Contact settings</b></font></td>
</tr>
<tr bgcolor="e6e6e6">
<td>Contact application:</td>
<?php if (!$current_config["contact_application"]) { $current_config["contact_application"] = "addressbook"; } ?>
<td><input name="newsettings[contact_application]" value="<?php echo $current_config["contact_application"]; ?>"></td>
</tr>
<?php $selected[$current_config["contact_repository"]] = " selected"; ?>
<tr bgcolor="e6e6e6">
<td>Select where you want to store/retrieve contacts.</td>
<td>
<select name="newsettings[contact_repository]">
<option value="sql"<?php echo $selected["sql"]; ?>>SQL</option>
<option value="ldap"<?php echo $selected["ldap"]; ?>>LDAP</option>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP host for contacts:</td>
<?php if (!$current_config["ldap_contact_host"]) { $current_config["ldap_contact_host"] = $current_config["ldap_host"]; } ?>
<td><input name="newsettings[ldap_contact_host]" value="<?php echo $current_config["ldap_contact_host"]; ?>"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP context for contacts:</td>
<td><input name="newsettings[ldap_contact_context]" value="<?php echo $current_config["ldap_contact_context"]; ?>" size="40"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP root dn for contacts:</td>
<?php if (!$current_config["ldap_contact_dn"]) { $current_config["ldap_contact_dn"] = $current_config["ldap_root_dn"]; } ?>
<td><input name="newsettings[ldap_contact_dn]" value="<?php echo $current_config["ldap_contact_dn"]; ?>"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP root pw for contacts:</td>
<?php if (!$current_config["ldap_contact_pw"]) { $current_config["ldap_contact_pw"] = $current_config["ldap_root_pw"]; } ?>
<td><input name="newsettings[ldap_contact_pw]" type="password" value="<?php echo $current_config["ldap_contact_pw"]; ?>"></td>
</tr>

View File

@ -1,150 +0,0 @@
<tr bgcolor="FFFFFF">
<td colspan="2">&nbsp;</td>
</tr>
<tr bgcolor="486591">
<td colspan="2"><font color="fefefe">&nbsp;<b>Authentication / Accounts</b></font></td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['auth_type']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Select which type of authentication you are using.</td>
<td>
<select name="newsettings[auth_type]">
<option value="sql"<?php echo $selected['sql']; ?>>SQL</option>
<option value="sqlssl"<?php echo $selected['sqlssl']; ?>>SQL / SSL</option>
<option value="ldap"<?php echo $selected['ldap']; ?>>LDAP</option>
<option value="mail"<?php echo $selected['mail']; ?>>Mail</option>
<option value="http"<?php echo $selected['http']; ?>>HTTP</option>
<option value="pam"<?php echo $selected['pam']; ?>>PAM (Not Ready)</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['account_repository']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Select where you want to store/retrieve user accounts.</td>
<td>
<select name="newsettings[account_repository]">
<option value="sql"<?php echo $selected['sql']; ?>>SQL</option>
<option value="ldap"<?php echo $selected['ldap']; ?>>LDAP</option>
<option value="contacts"<?php echo $selected['contacts']; ?>>Contacts - EXPERIMENTAL</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['file_repository']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Select where you want to store/retrieve filesystem information.</td>
<td>
<select name="newsettings[file_repository]">
<option value="sql"<?php echo $selected['sql']; ?>>SQL</option>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td>Minimum account id (e.g. 500 or 100, etc.):</td>
<td><input name="newsettings[account_min_id]" value="<?php echo $GLOBALS['current_config']['account_min_id']; ?>"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>Maximum account id (e.g. 65535 or 1000000):</td>
<td><input name="newsettings[account_max_id]" value="<?php echo $GLOBALS['current_config']['account_max_id']; ?>"></td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['ldap_extra_attributes']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>If using LDAP, do you want to manage homedirectory and loginshell attributes?:</td>
<td>
<select name="newsettings[ldap_extra_attributes]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td>&nbsp;&nbsp;&nbsp;LDAP Default homedirectory prefix (e.g. /home for /home/username):</td>
<td><input name="newsettings[ldap_account_home]" value="<?php echo $GLOBALS['current_config']['ldap_account_home']; ?>"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>&nbsp;&nbsp;&nbsp;LDAP Default shell (e.g. /bin/bash):</td>
<td><input name="newsettings[ldap_account_shell]" value="<?php echo $GLOBALS['current_config']['ldap_account_shell']; ?>"></td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['auto_create_acct']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Auto create account records for authenticated users:</td>
<td>
<select name="newsettings[auto_create_acct]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td>Add auto-created users to this group ('Default' will be attempted if this is empty.):</td>
<td><input name="newsettings[default_group_lid]" value="<?php echo $GLOBALS['current_config']['default_group_lid']; ?>"></td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['acl_default']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>If no ACL records for user or any group the user is a member of: </td>
<td>
<select name="newsettings[acl_default]">
<option value="deny"<?php echo $selected['deny']; ?>>Deny Access</option>
<option value="grant"<?php echo $selected['grant']; ?>>Grant Access</option>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP host:</td>
<td><input name="newsettings[ldap_host]" value="<?php echo $GLOBALS['current_config']['ldap_host']; ?>"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP accounts context:</td>
<td><input name="newsettings[ldap_context]" value="<?php echo $GLOBALS['current_config']['ldap_context']; ?>" size="40"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP groups context:</td>
<td><input name="newsettings[ldap_group_context]" value="<?php echo $GLOBALS['current_config']['ldap_group_context']; ?>" size="40"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP root dn:</td>
<td><input name="newsettings[ldap_root_dn]" value="<?php echo $GLOBALS['current_config']['ldap_root_dn']; ?>" size="40"></td>
</tr>
<tr bgcolor="e6e6e6">
<td>LDAP root password:</td>
<td><input name="newsettings[ldap_root_pw]" type="password" value="<?php echo $GLOBALS['current_config']['ldap_root_pw']; ?>"></td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['ldap_encryption_type']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>LDAP encryption type</td>
<td>
<select name="newsettings[ldap_encryption_type]">
<option value="DES"<?php echo $selected['DES']; ?>>DES</option>
<option value="MD5"<?php echo $selected['MD5']; ?>>MD5</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<tr bgcolor="e6e6e6">
<td>Enter some random text for app_session <br>encryption (requires mcrypt)</td>
<td><input name="newsettings[encryptkey]" value="<?php echo $GLOBALS['current_config']['encryptkey']; ?>" size="40"></td>
</tr>

View File

@ -1,22 +0,0 @@
<!-- BEGIN calendar/setup/config.inc.php -->
<tr bgcolor="FFFFFF">
<td colspan="2">&nbsp;</td>
</tr>
<tr bgcolor="486591">
<td colspan="2"><font color="fefefe">&nbsp;<b>Calendar settings</b></font></td>
</tr>
<tr bgcolor="e6e6e6">
<td>Do you wish to autoload calendar holidays files dynamically?</td>
<td><input type="checkbox" name="newsettings[auto_load_holidays]" value="True"<?php echo ($current_config['auto_load_holidays']?" checked":""); ?>></td>
</tr>
<tr bgcolor="e6e6e6">
<td>Location to autoload from:</td>
<td>
<select name="newsettings[holidays_url_path]">
<option value="localhost"<?php echo ($current_config['holidays_url_path']=='localhost'?' selected':''); ?>>localhost</option>
<option value="http://www.phpgroupware.org/cal"<?php echo ($current_config['holidays_url_path']=='http://www.phpgroupware.org/cal'?' selected':''); ?>>www.phpgroupware.org</option>
</select>
</td>
</tr>

View File

@ -1,116 +0,0 @@
<tr bgcolor="FFFFFF">
<td colspan="2">&nbsp;</td>
</tr>
<tr bgcolor="486591">
<td colspan="2"><font color="fefefe">&nbsp;<b>Preferences</b></font></td>
</tr>
<tr bgcolor="e6e6e6">
<td>Enter the title for your site.</td>
<td><input name="newsettings[site_title]" value="<?php echo $GLOBALS['current_config']['site_title']; ?>"></td>
</tr>
<?php $selected[$GLOBALS['current_config']['showpoweredbyon']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Show 'powered by' logo on:</td>
<td>
<select name="newsettings[showpoweredbyon]">
<option value="bottom"<?php echo $selected['bottom']; ?>>bottom</option>
<option value="top"<?php echo $selected['top']; ?>>top</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['countrylist']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Country Selection (Text Entry/SelectBox):</td>
<td>
<select name="newsettings[countrylist]">
<?php
echo '<option value="user_choice"' . $selected['user_choice'] . '>Users Choice</option>';
echo '<option value="force_select"' . $selected['force_select'] . '>Force Selectbox</option>';
?>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['htmlcompliant']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Use pure HTML compliant code (not fully working yet):</td>
<td>
<select name="newsettings[htmlcompliant]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['usecookies']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Use cookies to pass sessionid:</td>
<td>
<select name="newsettings[usecookies]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['sessions_checkip']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Check ip address of all sessions (Recommended setting is 'Yes'):</td>
<td>
<select name="newsettings[sessions_checkip]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['checkfornewversion']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Would you like phpGroupWare to check for new version<br>when admins login ?:</td>
<td>
<select name="newsettings[checkfornewversion]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<?php $selected[$GLOBALS['current_config']['cache_phpgw_info']] = ' selected'; ?>
<tr bgcolor="e6e6e6">
<td>Would you like phpGroupWare to cache the phpgw_info array ?:</td>
<td>
<select name="newsettings[cache_phpgw_info]">
<option value="">No</option>
<option value="True"<?php echo $selected['True']?>>Yes</option>
</select>
</td>
</tr>
<?php $selected = array(); ?>
<!--
<tr bgcolor="e6e6e6">
<td>Default file system space per user/group ?:</td>
<td>
<input type="text" name="newsettings[vfs_default_account_size_number]" size="7" value="<?php echo $GLOBALS['current_config']['vfs_default_account_size_number']; ?> ">
&nbsp;&nbsp;
<?php $selected[$GLOBALS['current_config']['vfs_default_account_size_type']] = ' selected'; ?>
<select name="newsettings[vfs_default_account_size_type]">
<option value="gb" <?php echo $selected['gb']?>>GB</option>
<option value="mb" <?php echo $selected['mb']?>>MB</option>
<option value="kb" <?php echo $selected['kb']?>>KB</option>
<option value="b" <?php echo $selected['b']?>>B</option>
</select>
</td>
</tr>
-->