/usr/share/postfixadmin/templates/users_edit-alias.php is in postfixadmin 2.3.7-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php if( !defined('POSTFIXADMIN') ) die( "This file cannot be used standalone." ); ?>
<div id="edit_form">
<form name="alias" method="post">
<table>
<tr>
<td colspan="3"><h3><?php print $PALANG['pEdit_alias_welcome']; ?></h3></td>
</tr>
<tr>
<td><?php print $PALANG['pEdit_alias_address'] . ":"; ?></td>
<td><?php print $USERID_USERNAME; ?></td>
<td> </td>
</tr>
<tr>
<td><?php print $PALANG['pEdit_alias_goto'] . ":"; ?></td>
<td><textarea class="flat" rows="4" cols="50" name="fGoto">
<?php
$just_forward = "YES";
if($tStoreAndForward) {
$just_forward = "NO";
}
foreach($tGotoArray as $address) {
print "$address\n";
}
?>
</textarea>
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2">
<input class="flat" type="radio" name="fForward_and_store" value="YES" <?php ($just_forward=="NO") ? print 'checked' : ''; ?> />
<?php print $PALANG['pEdit_alias_forward_and_store']; ?><br />
<input class="flat" type="radio" name="fForward_and_store" value="NO" <?php ($just_forward=="YES") ? print 'checked' : ''; ?> />
<?php print $PALANG['pEdit_alias_forward_only']; ?>
</td>
</tr>
<tr>
<td colspan="3" class="hlp_center">
<input class="button" type="submit" name="submit" value="<?php print $PALANG['pEdit_alias_button']; ?>">
<input class="button" type="submit" name="fCancel" value="<?php print $PALANG['exit']; ?>" >
</td>
</tr>
<tr>
<td colspan="3" class="standout"><?php print $tMessage; ?></td>
</tr>
</table>
</form>
</div>
<?php /* vim: set ft=php expandtab softtabstop=3 tabstop=3 shiftwidth=3: */ ?>
|