PostfixAdmin - web based virtual user administration interface for Postfix mail servers
https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.5 KiB
91 lines
2.5 KiB
<center>
|
|
<?php print $tMessage; ?>
|
|
<table class="form">
|
|
<tr>
|
|
<td align="center" colspan="3">
|
|
<?php print $PALANG['pAdminCreate_domain_welcome'] . "\n"; ?>
|
|
<br />
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<form name="create_domain" method="post">
|
|
<?php print $PALANG['pAdminCreate_domain_domain'] . ":\n"; ?>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="fDomain" value="<?php print $tDomain; ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print $pAdminCreate_domain_domain_text . "\n"; ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<?php print $PALANG['pAdminCreate_domain_description'] . ":\n"; ?>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="fDescription" value="<?php print $tDescription; ?>" />
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<?php print $PALANG['pAdminCreate_domain_aliases'] . ":\n"; ?>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="fAliases" value="<?php print $tAliases; ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print $PALANG['pAdminCreate_domain_aliases_text'] . "\n"; ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<?php print $PALANG['pAdminCreate_domain_mailboxes'] . ":\n"; ?>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="fMailboxes" value="<?php print $tMailboxes; ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print $PALANG['pAdminCreate_domain_mailboxes_text'] . "\n"; ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
if ($CONF['quota'] == 'YES')
|
|
{
|
|
print " <tr>\n";
|
|
print " <td>\n";
|
|
print " " . $PALANG['pAdminCreate_domain_maxquota'] . ":\n";
|
|
print " </td>\n";
|
|
print " <td>\n";
|
|
print " <input type=\"text\" name=\"fMaxquota\" value=\"$tMaxquota\" />\n";
|
|
print " </td>\n";
|
|
print " <td>\n";
|
|
print " " . $PALANG['pAdminCreate_domain_maxquota_text'] . "\n";
|
|
print " </td>\n";
|
|
print " </tr>\n";
|
|
}
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<?php print $PALANG['pAdminCreate_domain_defaultaliases'] . ":\n"; ?>
|
|
</td>
|
|
<td>
|
|
<?php $checked = (!empty ($tDefaultaliases)) ? 'checked' : ''; ?>
|
|
<input type="checkbox" name="fDefaultaliases" <?php print $checked; ?> />
|
|
</td>
|
|
<td>
|
|
<?php print $pAdminCreate_domain_defaultaliases_text . "\n"; ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center" colspan="3">
|
|
<input type="submit" name="submit" value="<?php print $PALANG['pAdminCreate_domain_button']; ?>" />
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<p />
|