opensmtpdadmin/templates/users_menu.tpl

19 lines
600 B
Smarty

<div id="menu">
<ul>
<?php if ($CONF['vacation'] == "YES") { ?>
<li><a target="_top" href="vacation.php"><?php echo $LANG['UsersMenu_vacation']; ?></a></li>
<?php } ?>
<li><a target="_top" href="edit-alias.php"><?php echo $LANG['UsersMenu_edit_alias']; ?></a></li>
<li><a target="_top" href="password.php"><?php echo $LANG['UsersMenu_password']; ?></a></li>
<li><a target="_top" href="logout.php"><?php echo $LANG['Menu_logout']; ?></a></li>
</ul>
</div>
<?php
if (file_exists(realpath("../motd-users.txt"))) {
echo "<div id=\"motd\">\n";
include("../motd-users.txt");
echo "</div>";
}
?>