opensmtpdadmin/templates/menu.tpl

19 lines
897 B
Smarty
Raw Normal View History

2022-08-18 14:01:52 +02:00
<div id="menu">
<ul>
2022-09-04 14:49:44 +02:00
<li><a target="_top" href="list-domain.php"><?php echo $LANG['Menu_overview']; ?></a></li>
2022-09-04 13:10:23 +02:00
<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>
2022-09-04 11:38:47 +02:00
<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>
2022-08-18 14:01:52 +02:00
</ul>
</div>
<?php
if (file_exists(realpath("motd.txt"))) {
2022-09-04 11:38:47 +02:00
echo "<div id=\"motd\">\n";
2022-08-18 14:01:52 +02:00
include("motd.txt");
2022-09-04 11:38:47 +02:00
echo "</div>";
2022-08-18 14:01:52 +02:00
}
?>