246 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			246 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="<?= $_SESSION['mailcow_locale'] ?>">
 | |
| <head>
 | |
| <meta charset="utf-8">
 | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
| <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| <title>mailcow UI</title>
 | |
| <!--[if lt IE 9]>
 | |
| <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
 | |
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
 | |
| <![endif]-->
 | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.0/jquery.min.js" integrity="sha384-XxcvoeNF5V0ZfksTnV+bejnCsJjOOIzN6UVwF85WBsAnU3zeYh5bloN+L4WLgeNE" crossorigin="anonymous"></script>
 | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css">
 | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.6/<?=strtolower(trim($DEFAULT_THEME));?>/bootstrap.min.css">
 | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.9.4/css/bootstrap-select.min.css">
 | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/7.0.2/css/bootstrap-slider.min.css">
 | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.min.css">
 | |
| <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&subset=latin,latin-ext">
 | |
| <link rel="stylesheet" href="/inc/languages.min.css">
 | |
| <link rel="shortcut icon" href="/favicon.png" type="image/png">
 | |
| <link rel="icon" href="/favicon.png" type="image/png">
 | |
| <style>
 | |
| #maxmsgsize { min-width: 80px; }
 | |
| ul[id*="sortable"] { word-wrap: break-word; list-style-type: none; float: left; padding: 0 15px 0 0; width: 48%; cursor:move}
 | |
| ul[id$="sortable-active"] li {cursor:move; }
 | |
| ul[id$="sortable-inactive"] li {cursor:move }
 | |
| .list-heading { cursor:default !important}
 | |
| .ui-state-disabled { cursor:no-drop; color:#ccc; }
 | |
| .ui-state-highlight {background: #F5F5F5 !important; height: 41px !important; cursor:move }
 | |
| #slider1 .slider-selection {
 | |
| 	background: #FFD700;
 | |
| }
 | |
| #slider1 .slider-track-high {
 | |
| 	background: #FF4500;
 | |
| }
 | |
| #slider1 .slider-track-low {
 | |
| 	background: #66CD00;
 | |
| }
 | |
| table[data-sortable] {
 | |
|   border-collapse: collapse;
 | |
|   border-spacing: 0;
 | |
| }
 | |
| table[data-sortable] th {
 | |
|   vertical-align: bottom;
 | |
|   font-weight: bold;
 | |
| }
 | |
| table[data-sortable] th, table[data-sortable] td {
 | |
|   text-align: left;
 | |
|   padding: 10px;
 | |
| }
 | |
| table[data-sortable] th:not([data-sortable="false"]) {
 | |
|   -webkit-user-select: none;
 | |
|   -moz-user-select: none;
 | |
|   -ms-user-select: none;
 | |
|   -o-user-select: none;
 | |
|   user-select: none;
 | |
|   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 | |
|   -webkit-touch-callout: none;
 | |
|   cursor: pointer;
 | |
| }
 | |
| table[data-sortable] th:after {
 | |
|   content: "";
 | |
|   visibility: hidden;
 | |
|   display: inline-block;
 | |
|   vertical-align: inherit;
 | |
|   height: 0;
 | |
|   width: 0;
 | |
|   border-width: 5px;
 | |
|   border-style: solid;
 | |
|   border-color: transparent;
 | |
|   margin-right: 1px;
 | |
|   margin-left: 10px;
 | |
|   float: right;
 | |
| }
 | |
| table[data-sortable] th[data-sortable="false"]:after {
 | |
|   display: none;
 | |
| }
 | |
| table[data-sortable] th[data-sorted="true"]:after {
 | |
|   visibility: visible;
 | |
| }
 | |
| table[data-sortable] th[data-sorted-direction="descending"]:after {
 | |
|   border-top-color: inherit;
 | |
|   margin-top: 8px;
 | |
| }
 | |
| table[data-sortable] th[data-sorted-direction="ascending"]:after {
 | |
|   border-bottom-color: inherit;
 | |
|   margin-top: 3px;
 | |
| }
 | |
| table[data-sortable].sortable-theme-bootstrap thead th {
 | |
|   border-bottom: 2px solid #e0e0e0;
 | |
| }
 | |
| table[data-sortable].sortable-theme-bootstrap th[data-sorted="true"] {
 | |
|   color: #3a87ad;
 | |
|   background: #d9edf7;
 | |
|   border-bottom-color: #bce8f1;
 | |
| }
 | |
| table[data-sortable].sortable-theme-bootstrap th[data-sorted="true"][data-sorted-direction="descending"]:after {
 | |
|   border-top-color: #3a87ad;
 | |
| }
 | |
| table[data-sortable].sortable-theme-bootstrap th[data-sorted="true"][data-sorted-direction="ascending"]:after {
 | |
|   border-bottom-color: #3a87ad;
 | |
| }
 | |
| table[data-sortable].sortable-theme-bootstrap.sortable-theme-bootstrap-striped tbody > tr:nth-child(odd) > td {
 | |
|   background-color: #f9f9f9;
 | |
| }
 | |
| .btn {
 | |
|    text-transform: none;
 | |
| }
 | |
| #data td, #no-data td {
 | |
| 	vertical-align: middle;
 | |
| }
 | |
| .sort-table:hover {
 | |
|   border-bottom-color: #00B7DC !important;
 | |
| }
 | |
| .striped:nth-child(odd) {
 | |
|     background-color: #fff;
 | |
| }
 | |
| .striped:nth-child(even) {
 | |
|     background-color: #fafafa;
 | |
| 	border:1px solid white;
 | |
| }
 | |
| .glyphicon-spin {
 | |
|     -webkit-animation: spin 1000ms infinite linear;
 | |
|     animation: spin 1000ms infinite linear;
 | |
| }
 | |
| @-webkit-keyframes spin {
 | |
|     0% {
 | |
|         -webkit-transform: rotate(0deg);
 | |
|         transform: rotate(0deg);
 | |
|     }
 | |
|     100% {
 | |
|         -webkit-transform: rotate(359deg);
 | |
|         transform: rotate(359deg);
 | |
|     }
 | |
| }
 | |
| @keyframes spin {
 | |
|     0% {
 | |
|         -webkit-transform: rotate(0deg);
 | |
|         transform: rotate(0deg);
 | |
|     }
 | |
|     100% {
 | |
|         -webkit-transform: rotate(359deg);
 | |
|         transform: rotate(359deg);
 | |
|     }
 | |
| }
 | |
| </style>
 | |
| <?php
 | |
| if (preg_match("/mailbox.php/i", $_SERVER['REQUEST_URI'])):
 | |
| ?>
 | |
| <style>
 | |
| .panel-heading div {
 | |
| 	margin-top: -18px;
 | |
| 	font-size: 15px;
 | |
| }
 | |
| .panel-heading div span {
 | |
| 	margin-left:5px;
 | |
| }
 | |
| .panel-body {
 | |
| 	display: none;
 | |
| }
 | |
| .clickable {
 | |
| 	cursor: pointer;
 | |
| }
 | |
| .progress {
 | |
| 	margin-bottom: 0px;
 | |
| }
 | |
| </style>
 | |
| <?php
 | |
| endif;
 | |
| ?>
 | |
| </head>
 | |
| <body style="padding-top:70px">
 | |
| <nav class="navbar navbar-default navbar-fixed-top"  role="navigation">
 | |
| 	<div class="container-fluid">
 | |
| 		<div class="navbar-header">
 | |
| 			<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
 | |
| 				<span class="sr-only">Toggle navigation</span>
 | |
| 				<span class="icon-bar"></span>
 | |
| 				<span class="icon-bar"></span>
 | |
| 				<span class="icon-bar"></span>
 | |
| 			</button>
 | |
| 			<a class="navbar-brand" href="/"><img height="32" alt="mailcow-logo" style="margin-top:-5px;" src="/img/cow_mailcow.svg" /></a>
 | |
| 		</div>
 | |
| 		<div id="navbar" class="navbar-collapse collapse">
 | |
| 			<ul class="nav navbar-nav navbar-right">
 | |
| 				<?php
 | |
| 				if (isset($_SESSION['mailcow_locale'])) {
 | |
| 				?>
 | |
| 				<li class="dropdown">
 | |
| 					<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="lang-sm lang-lbl" lang="<?=$_SESSION['mailcow_locale'];?>"></span><span class="caret"></span></a>
 | |
| 					<ul class="dropdown-menu" role="menu">
 | |
| 						<li <?=($_SESSION['mailcow_locale'] == 'de') ? 'class="active"' : ''?>> <a href="?<?= http_build_query(array_merge($_GET, array("lang" => "de"))) ?>"><span class="lang-xs lang-lbl-full" lang="de"></span></a></li>
 | |
| 						<li <?=($_SESSION['mailcow_locale'] == 'en') ? 'class="active"' : ''?>> <a href="?<?= http_build_query(array_merge($_GET, array("lang" => "en"))) ?>"><span class="lang-xs lang-lbl-full" lang="en"></span></a></li>
 | |
| 						<li <?=($_SESSION['mailcow_locale'] == 'nl') ? 'class="active"' : ''?>> <a href="?<?= http_build_query(array_merge($_GET, array("lang" => "nl"))) ?>"><span class="lang-xs lang-lbl-full" lang="nl"></span></a></li>
 | |
| 						<li <?=($_SESSION['mailcow_locale'] == 'pt') ? 'class="active"' : ''?>> <a href="?<?= http_build_query(array_merge($_GET, array("lang" => "pt"))) ?>"><span class="lang-xs lang-lbl-full" lang="pt"></span></a></li>
 | |
| 					</ul>
 | |
| 				</li>
 | |
| 				<?php
 | |
| 				}
 | |
| 				if (isset($_SESSION['mailcow_cc_role'])) {
 | |
| 				?>
 | |
| 				<li class="dropdown">
 | |
| 					<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><?=$lang['header']['mailcow_settings'];?><span class="caret"></span></a>
 | |
| 					<ul class="dropdown-menu" role="menu">
 | |
| 					<?php
 | |
| 						if (isset($_SESSION['mailcow_cc_role'])) {
 | |
| 							if ($_SESSION['mailcow_cc_role'] == "admin") {
 | |
| 							?>
 | |
| 								<li <?=(preg_match("/admin/i", $_SERVER['REQUEST_URI'])) ? 'class="active"' : ''?>><a href="/admin.php"><?=$lang['header']['administration'];?></a></li>
 | |
| 							<?php
 | |
| 							}
 | |
| 							if ($_SESSION['mailcow_cc_role'] == "admin" || $_SESSION['mailcow_cc_role'] == "domainadmin") {
 | |
| 							?>
 | |
| 								<li <?=(preg_match("/mailbox/i", $_SERVER['REQUEST_URI'])) ? 'class="active"' : ''?>><a href="/mailbox.php"><?=$lang['header']['mailboxes'];?></a></li>
 | |
| 							<?php
 | |
| 							}
 | |
| 							if ($_SESSION['mailcow_cc_role'] == "user") {
 | |
| 							?>
 | |
| 								<li <?=(preg_match("/user/i", $_SERVER['REQUEST_URI'])) ? 'class="active"' : ''?>><a href="/user.php"><?=$lang['header']['user_settings'];?></a></li>
 | |
| 							<?php
 | |
| 							}
 | |
| 						}
 | |
| 						?>
 | |
| 					</ul>
 | |
| 				</li>
 | |
| 				<?php
 | |
| 				if ($_SESSION['mailcow_cc_role'] == "admin"):
 | |
| 				?>
 | |
| 				<li><a href data-toggle="modal" data-target="#RestartSOGo"><span style="font-size:12px" class="glyphicon glyphicon-refresh" aria-hidden="true"></span> <?=$lang['header']['restart_sogo'];?></a></li>
 | |
| 				<?php
 | |
| 				endif;
 | |
| 				?>
 | |
| 					<?php
 | |
| 				}
 | |
| 				if (isset($_SESSION['mailcow_cc_username'])):
 | |
| 				?>
 | |
| 					<li><a style="border-left:1px solid #E7E7E7" href="#" onclick="logout.submit()"><?=sprintf($lang['header']['logged_in_as_logout'], $_SESSION['mailcow_cc_username']);?></a></li>
 | |
| 				<?php
 | |
| 				endif;
 | |
| 				?>
 | |
| 			</ul>
 | |
| 		</div><!--/.nav-collapse -->
 | |
| 	</div><!--/.container-fluid -->
 | |
| </nav>
 | |
| <form action="/" method="post" id="logout"><input type="hidden" name="logout"></form>
 |