19 lines
897 B
Smarty
19 lines
897 B
Smarty
<div id="menu">
|
|
<ul>
|
|
<li><a target="_top" href="list-domain.php"><?php echo $LANG['Menu_overview']; ?></a></li>
|
|
<li><a target="_top" href="add-alias.php<?php if (isset($domain)) echo '?domain=' . $domain; ?>"><?php echo $LANG['Menu_create_alias']; ?></a></li>
|
|
<li><a target="_top" href="add-mailbox.php<?php if (isset($domain)) echo '?domain=' . $domain; ?>"><?php echo $LANG['Menu_create_mailbox']; ?></a></li>
|
|
<li><a target="_top" href="sendmail.php"><?php echo $LANG['Menu_sendmail']; ?></a></li>
|
|
<li><a target="_top" href="password.php"><?php echo $LANG['Menu_password']; ?></a></li>
|
|
<li><a target="_top" href="viewlog.php"><?php echo $LANG['Menu_viewlog']; ?></a></li>
|
|
<li><a target="_top" href="logout.php"><?php echo $LANG['Menu_logout']; ?></a></li>
|
|
</ul>
|
|
</div>
|
|
<?php
|
|
if (file_exists(realpath("motd.txt"))) {
|
|
echo "<div id=\"motd\">\n";
|
|
include("motd.txt");
|
|
echo "</div>";
|
|
}
|
|
?>
|