1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
<?php
// customize this to your needs
$default_container = "";
// Common to all templates
$container = isset( $_POST['container'] ) ? $_POST['container'] : null;
$server_id = isset( $_POST['server_id'] ) ? $_POST['server_id'] : false;
// Modify this array and add/remove the corresponding attributes below
$object_classes = array( 'top', 'sendmailMTAAliasObject' );
// Get default cluster from container
$dn_array = ldap_explode_dn($container, 0);
$cluster_name = "";
$host_name = "";
foreach ($dn_array as $attr) {
if (preg_match('/(.+)=(.+)/', $attr, $match)) {
$attr = $match[1];
$value = $match[2];
if (preg_match('/Cluster/i', $attr)) {
$cluster_name = $value;
}
if (preg_match('/Host/i', $attr)) {
$host_name = $value;
}
}
}
// A list of default attributes/values to create with this new user
$default_attributes = array(
"sendmailMTAAliasGrouping" => "aliases"
);
// Unique to this template
$step = 1;
if( isset($_POST['step']) )
$step = $_POST['step'];
check_server_id( $server_id ) or pla_error( "Bad server_id: " . htmlspecialchars( $server_id ) );
have_auth_info( $server_id ) or pla_error( "Not enough information to login to server. Please check your configuration." );
?>
<?php if ($step == 1) { ?>
<center>
<h2 style="margin:0px">New Sendmail Alias</h2>
<br />
</center>
<form action="creation_template.php" method="post" name="sendmail_alias_form">
<input type="hidden" name="step" value="<?php echo $step + 1; ?>" />
<input type="hidden" name="server_id" value="<?php echo $server_id; ?>" />
<input type="hidden" name="template" value="<?php echo htmlspecialchars( $_POST['template'] ); ?>" />
<center>
<table class="confirm">
<tr class="spacer"><td colspan="3"></td></tr>
<tr>
<td><img src="images/object.png" /></td>
<td class="heading">Sendmail cluster name:</td>
<td><input type="text" name="sendmailMTACluster" id="sendmailMTACluster" value="<?php echo $cluster_name; ?>" /></td>
</tr>
<tr>
<td></td>
<td class="heading">Sendmail host name:</td>
<td><input type="text" name="sendmailMTAHost" id="sendmailMTAHost" value="<?php echo $host_name; ?>" /><small><i>Leave blank</i></small></td>
</tr>
<tr class="spacer"><td colspan="3"></td></tr>
<tr>
<td><img src="images/mail.png" /></td>
<td class="heading">Email alias:</td>
<td><input type="text" name="sendmailMTAKey" id="sendmailMTAKey" value="" /></td>
</tr>
<tr>
<td></td>
<td class="heading">Recipient addresses:</td>
<td><textarea name="sendmailMTAAliasValue" id="sendmailMTAAliasValue"></textarea></td>
</tr>
<tr class="spacer"><td colspan="3"></td></tr>
<tr>
<td></td>
<td class="heading"><?php echo $lang['container']; ?></td>
<td><input type="text" name="container" size="40" value="<?php echo htmlspecialchars( $container ); ?>" />
<?php draw_chooser_link( 'sendmail_alias_form.container' ); ?>
</td>
</tr>
<tr>
<td colspan="3"><center><br /><input type="submit" value="Proceed" /></center></td>
</tr>
</table>
</center>
</form>
<?php } elseif( $step == 2 ) {
/* Critical assertions */
if( ! trim( $_REQUEST['sendmailMTACluster'] ) && ! trim($_REQUEST['sendmailMTAHost'])) {
pla_error("Either Cluster name or Host name need to be specified.");
}
if (!trim($_REQUEST['sendmailMTAKey']) ) {
pla_error("Email alias is blank and must be specified");
}
if (!trim($_REQUEST['sendmailMTAAliasValue']) ) {
pla_error("Recipient address is blank and must be specified");
}
?>
<center><h3>Confirm sendmail domain creation:</h3></center>
<form action="create.php" method="post">
<input type="hidden" name="step" value="<?php echo $step + 1; ?>"\>
<input type="hidden" name="server_id" value="<?php echo $server_id; ?>" />
<input type="hidden" name="new_dn" value="<?php echo htmlspecialchars( 'sendmailMTAKey=' . $_REQUEST['sendmailMTAKey'] ) . "," . $_REQUEST['container']; ?>" />
<!-- ObjectClasses -->
<?php $object_classes = rawurlencode( serialize( $object_classes ) ); ?>
<input type="hidden" name="object_classes" value="<?php echo $object_classes; ?>" />
<!-- The array of attributes/values -->
<input type="hidden" name="attrs[]" value="sendmailMTACluster" />
<input type="hidden" name="vals[]" value="<?php echo htmlspecialchars($_REQUEST['sendmailMTACluster']);?>" />
<input type="hidden" name="attrs[]" value="sendmailMTAHost" />
<input type="hidden" name="vals[]" value="<?php echo htmlspecialchars($_REQUEST['sendmailMTAHost']);?>" />
<input type="hidden" name="attrs[]" value="sendmailMTAKey" />
<input type="hidden" name="vals[]" value="<?php echo htmlspecialchars($_REQUEST['sendmailMTAKey']);?>" />
<?php
$values = preg_split('/\s+/', $_REQUEST['sendmailMTAAliasValue']);
foreach ($values as $value) {
?>
<input type="hidden" name="attrs[]" value="sendmailMTAAliasValue" />
<input type="hidden" name="vals[]" value="<?php echo htmlspecialchars($value);?>" />
<?php } ?>
<?php foreach( $default_attributes as $default_attr => $default_val ) { ?>
<!-- default attribute, auto-added based on $default_attributes array specified in new_user_template.php -->
<input type="hidden" name="attrs[]" value="<?php echo htmlspecialchars($default_attr); ?>" />
<input type="hidden" name="vals[]" value="<?php echo htmlspecialchars($default_val);?>" />
<?php } ?>
<center>
<table class="confirm">
<tr class="even"><td class="heading">Sendmail cluster name:</td><td><b><?php echo htmlspecialchars( $_REQUEST['sendmailMTACluster'] ); ?></b></td></tr>
<tr class="odd"><td class="heading">Sendmail host name:</td><td><b><?php echo htmlspecialchars( $_REQUEST['sendmailMTAHost'] ); ?></b></td></tr>
<tr class="even"><td class="heading">Email alias:</td><td><b><?php echo htmlspecialchars( $_REQUEST['sendmailMTAKey'] ); ?></b></td></tr>
<tr class="even"><td class="heading">Recipient addresses:</td><td><b>
<?php
$values = preg_split('/\s+/m', $_REQUEST['sendmailMTAAliasValue']);
foreach ($values as $value) {
echo htmlspecialchars( $value ) . "<br>\n";
} ?>
</b></td></tr>
</table>
<br /><input type="submit" value="Create Alias" />
</center>
<?php } ?>
|