82 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/prerequisites.inc.php';
 | |
| 
 | |
| if (isset($_SESSION['mailcow_cc_role'])) {
 | |
| require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/header.inc.php';
 | |
| $_SESSION['return_to'] = $_SERVER['REQUEST_URI'];
 | |
| 
 | |
| ?>
 | |
| <div class="container">
 | |
| 	<div class="row">
 | |
| 		<div class="col-md-12">
 | |
|       <div class="panel panel-default">
 | |
|         <div class="panel-heading">
 | |
|           <?=$lang['quarantine']['quarantine'];?> <span class="badge badge-info table-lines"></span>
 | |
|           <div class="btn-group pull-right">
 | |
|             <button class="btn btn-xs btn-default refresh_table" data-draw="draw_quarantine_table" data-table="quarantinetable"><?=$lang['quarantine']['refresh'];?></button>
 | |
|             <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown"><?=$lang['quarantine']['table_size'];?> 
 | |
|               <span class="caret"></span>
 | |
|             </button>
 | |
|             <ul class="dropdown-menu" data-table-id="quarantinetable" role="menu">
 | |
|               <li><a href="#" data-page-size="10"><?=sprintf($lang['quarantine']['table_size_show_n'], 10);?></a></li>
 | |
|               <li><a href="#" data-page-size="20"><?=sprintf($lang['quarantine']['table_size_show_n'], 20);?></a></li>
 | |
|               <li><a href="#" data-page-size="50"><?=sprintf($lang['quarantine']['table_size_show_n'], 50);?></a></li>
 | |
|               <li><a href="#" data-page-size="100"><?=sprintf($lang['quarantine']['table_size_show_n'], 100);?></a></li>
 | |
|               <li><a href="#" data-page-size="200"><?=sprintf($lang['quarantine']['table_size_show_n'], 200);?></a></li>
 | |
|               <li><a href="#" data-page-size="500"><?=sprintf($lang['quarantine']['table_size_show_n'], 500);?></a></li>
 | |
|             </ul>
 | |
|           </div>
 | |
|         </div>
 | |
|         <p style="margin:10px" class="help-block"><?=$lang['quarantine']['qinfo'];?></p>
 | |
|         <p style="margin:10px">
 | |
|         <?php
 | |
|         if (empty(quarantine('settings')['retention_size']) || empty(quarantine('settings')['max_size'])):
 | |
|         ?>
 | |
|         <div class="panel-body"><div class="alert alert-info"><?=$lang['quarantine']['disabled_by_config'];?></div></div>
 | |
|         <?php
 | |
|         endif;
 | |
|         ?>
 | |
|         </p>
 | |
|         <div class="table-responsive">
 | |
|           <table id="quarantinetable" class="table table-striped"></table>
 | |
|         </div>
 | |
|         <div class="mass-actions-quarantine">
 | |
|           <div class="btn-group" data-acl="<?=$_SESSION['acl']['quarantine'];?>">
 | |
|             <a class="btn btn-sm btn-default" id="toggle_multi_select_all" data-id="qitems" href="#"><span class="glyphicon glyphicon-check" aria-hidden="true"></span> <?=$lang['quarantine']['toggle_all'];?></a>
 | |
|             <a class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown" href="#"><?=$lang['quarantine']['quick_actions'];?> <span class="caret"></span></a>
 | |
|             <ul class="dropdown-menu">
 | |
|               <li><a data-action="edit_selected" data-id="qitems" data-api-url='edit/qitem' data-api-attr='{"action":"release"}' href="#"><?=$lang['quarantine']['deliver_inbox'];?></a></li>
 | |
|               <li role="separator" class="divider"></li>
 | |
|               <li><a data-action="edit_selected" data-id="qitems" data-api-url='edit/qitem' data-api-attr='{"action":"learnspam"}' href="#"><?=$lang['quarantine']['learn_spam_delete'];?></a></li>
 | |
|               <li role="separator" class="divider"></li>
 | |
|               <li><a data-action="delete_selected" data-id="qitems" data-api-url='delete/qitem' href="#"><?=$lang['quarantine']['remove'];?></a></li>
 | |
|             </ul>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div> <!-- /col-md-12 -->
 | |
|   </div> <!-- /row -->
 | |
| </div> <!-- /container -->
 | |
| <?php
 | |
| require_once $_SERVER['DOCUMENT_ROOT'] . '/modals/quarantine.php';
 | |
| ?>
 | |
| <script type='text/javascript'>
 | |
| <?php
 | |
| $lang_quarantine = json_encode($lang['quarantine']);
 | |
| echo "var acl = '". json_encode($_SESSION['acl']) . "';\n";
 | |
| echo "var lang = ". $lang_quarantine . ";\n";
 | |
| echo "var csrf_token = '". $_SESSION['CSRF']['TOKEN'] . "';\n";
 | |
| $role = ($_SESSION['mailcow_cc_role'] == "admin") ? 'admin' : 'domainadmin';
 | |
| echo "var role = '". $role . "';\n";
 | |
| echo "var pagination_size = '". $PAGINATION_SIZE . "';\n";
 | |
| ?>
 | |
| </script>
 | |
| <?php
 | |
| $js_minifier->add('/web/js/site/quarantine.js');
 | |
| require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/footer.inc.php';
 | |
| } else {
 | |
| 	header('Location: /');
 | |
| 	exit();
 | |
| }
 | |
| ?>
 | 
