mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 01:43:47 +01:00
Add new default group config used for auto_add()
This commit is contained in:
parent
43127662ab
commit
aedcd42f81
@ -6,59 +6,59 @@
|
||||
<td colspan="2"><font color="fefefe"> <b>Authentication / Accounts</b></font></td>
|
||||
</tr>
|
||||
|
||||
<?php $selected[$current_config["auth_type"]] = " selected"; ?>
|
||||
<?php $selected = array(); ?>
|
||||
<?php $selected[$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>
|
||||
<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[$current_config["account_repository"]] = " selected"; ?>
|
||||
<?php $selected = array(); ?>
|
||||
<?php $selected[$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>
|
||||
<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[$current_config["file_repository"]] = " selected"; ?>
|
||||
<?php $selected = array(); ?>
|
||||
<?php $selected[$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>
|
||||
<option value="sql"<?php echo $selected['sql']; ?>>SQL</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<?php $selected = array(); ?>
|
||||
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>Minimum account id (e.g. 500 or 100, etc.):</td>
|
||||
<td><input name="newsettings[account_min_id]" value="<?php echo $current_config["account_min_id"]; ?>"></td>
|
||||
<td><input name="newsettings[account_min_id]" value="<?php echo $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 $current_config["account_max_id"]; ?>"></td>
|
||||
<td><input name="newsettings[account_max_id]" value="<?php echo $current_config['account_max_id']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<?php $selected = array(); ?>
|
||||
<?php $selected[$current_config['ldap_extra_attributes']] = ' selected'; ?>
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>If using LDAP, do you want to be able to manage homedirectory and loginshell attributes?:</td>
|
||||
<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>
|
||||
@ -69,12 +69,12 @@
|
||||
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td> LDAP Default homedirectory prefix (e.g. /home for /home/username):</td>
|
||||
<td><input name="newsettings[ldap_account_home]" value="<?php echo $current_config["ldap_account_home"]; ?>"></td>
|
||||
<td><input name="newsettings[ldap_account_home]" value="<?php echo $current_config['ldap_account_home']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td> LDAP Default shell (e.g. /bin/bash):</td>
|
||||
<td><input name="newsettings[ldap_account_shell]" value="<?php echo $current_config["ldap_account_shell"]; ?>"></td>
|
||||
<td><input name="newsettings[ldap_account_shell]" value="<?php echo $current_config['ldap_account_shell']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<?php $selected = array(); ?>
|
||||
@ -89,50 +89,56 @@
|
||||
</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 $current_config['default_group_lid']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<?php $selected = array(); ?>
|
||||
<?php $selected[$current_config["acl_default"]] = " selected"; ?>
|
||||
<?php $selected[$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>
|
||||
<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 $current_config["ldap_host"]; ?>"></td>
|
||||
<td><input name="newsettings[ldap_host]" value="<?php echo $current_config['ldap_host']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>LDAP accounts context:</td>
|
||||
<td><input name="newsettings[ldap_context]" value="<?php echo $current_config["ldap_context"]; ?>" size="40"></td>
|
||||
<td><input name="newsettings[ldap_context]" value="<?php echo $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 $current_config["ldap_group_context"]; ?>" size="40"></td>
|
||||
<td><input name="newsettings[ldap_group_context]" value="<?php echo $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 $current_config["ldap_root_dn"]; ?>" size="40"></td>
|
||||
<td><input name="newsettings[ldap_root_dn]" value="<?php echo $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 $current_config["ldap_root_pw"]; ?>"></td>
|
||||
<td><input name="newsettings[ldap_root_pw]" type="password" value="<?php echo $current_config['ldap_root_pw']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<?php $selected[$current_config["ldap_encryption_type"]] = " selected"; ?>
|
||||
<?php $selected = array(); ?>
|
||||
<?php $selected[$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>
|
||||
<option value="DES"<?php echo $selected['DES']; ?>>DES</option>
|
||||
<option value="MD5"<?php echo $selected['MD5']; ?>>MD5</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
@ -140,5 +146,5 @@
|
||||
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>Enter some random text for app_session <br>encryption (requires mcrypt)</td>
|
||||
<td><input name="newsettings[encryptkey]" value="<?php echo $current_config["encryptkey"]; ?>" size="40"></td>
|
||||
<td><input name="newsettings[encryptkey]" value="<?php echo $current_config['encryptkey']; ?>" size="40"></td>
|
||||
</tr>
|
||||
|
Loading…
Reference in New Issue
Block a user