 0fb43f4916
			
		
	
	
		0fb43f4916
		
	
	
	
	
		
			
			[Docker API] Create pipe to pass Rspamd UI worker password [Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!) [Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes) [Web] Flush memcached after mailbox item changes, fixes #1808 [Web] Fix duplicate IDs, fixes #1792 [Compose] Use SQL sockets [PHP-FPM] Update APCu and Redis libs [Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791 [Web] Fix deletion of spam aliases [Helper] Add "crypt" to backup script [Helper] Override file for external SQL socket (not supported!) [Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
		
			
				
	
	
		
			161 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			161 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| require_once $_SERVER['DOCUMENT_ROOT'] . '/modals/footer.php';
 | |
| logger();
 | |
| ?>
 | |
| <div style="margin-bottom: 100px;"></div>
 | |
| <script src="/js/bootstrap.min.js"></script>
 | |
| <script src="/js/bootstrap-switch.min.js"></script>
 | |
| <script src="/js/bootstrap-slider.min.js"></script>
 | |
| <script src="/js/bootstrap-select.min.js"></script>
 | |
| <script src="/js/bootstrap-filestyle.min.js"></script>
 | |
| <script src="/js/notifications.min.js"></script>
 | |
| <script src="/js/formcache.min.js"></script>
 | |
| <script src="/js/google.charts.loader.js"></script>
 | |
| <script src="/js/numberedtextarea.min.js"></script>
 | |
| <script src="/js/sha1.min.js"></script>
 | |
| <script src="/js/u2f-api.js"></script>
 | |
| <script src="/js/api.js"></script>
 | |
| <script src="/js/mailcow.js"></script>
 | |
| <script>
 | |
| <?php
 | |
| $lang_footer = json_encode($lang['footer']);
 | |
| $lang_acl = json_encode($lang['acl']);
 | |
| $lang_tfa = json_encode($lang['tfa']);
 | |
| echo "var lang_footer = ". $lang_footer . ";\n";
 | |
| echo "var lang_acl = ". $lang_acl . ";\n";
 | |
| echo "var lang_tfa = ". $lang_tfa . ";\n";
 | |
| echo "var docker_timeout = ". $DOCKER_TIMEOUT * 1000 . ";\n";
 | |
| ?>
 | |
| $(window).scroll(function() {
 | |
|   sessionStorage.scrollTop = $(this).scrollTop();
 | |
| });
 | |
| // Select language and reopen active URL without POST
 | |
| function setLang(sel) {
 | |
|   $.post( "<?= $_SERVER['REQUEST_URI']; ?>", {lang: sel} );
 | |
|   window.location.href = window.location.pathname + window.location.search;
 | |
| }
 | |
| $(window).load(function() {
 | |
|   $(".overlay").hide();
 | |
| });
 | |
| $(document).ready(function() {
 | |
|   // TFA, CSRF, Alerts in footer.inc.php
 | |
|   // Other general functions in mailcow.js
 | |
|   <?php
 | |
|   $alertbox_log_parser = alertbox_log_parser($_SESSION);
 | |
|   if (is_array($alertbox_log_parser)) {
 | |
|     foreach($alertbox_log_parser as $log) {
 | |
|   ?>
 | |
|   mailcow_alert_box(<?=$log['msg'];?>, <?=$log['type'];?>);
 | |
|   <?php
 | |
|     }
 | |
|   unset($_SESSION['return']);
 | |
|   }
 | |
|   ?>
 | |
|   // Confirm TFA modal
 | |
|   <?php if (isset($_SESSION['pending_tfa_method'])):?>
 | |
|   $('#ConfirmTFAModal').modal({
 | |
|     backdrop: 'static',
 | |
|     keyboard: false
 | |
|   });
 | |
|   $('#u2f_status_auth').html('<p><span class="glyphicon glyphicon-refresh glyphicon-spin"></span> Initializing, please wait...</p>');
 | |
|   $('#ConfirmTFAModal').on('shown.bs.modal', function(){
 | |
|       $(this).find('input[name=token]').focus();
 | |
|       // If U2F
 | |
|       if(document.getElementById("u2f_auth_data") !== null) {
 | |
|         $.ajax({
 | |
|           type: "GET",
 | |
|           cache: false,
 | |
|           dataType: 'script',
 | |
|           url: "/api/v1/get/u2f-authentication/<?= (isset($_SESSION['pending_mailcow_cc_username'])) ? rawurlencode($_SESSION['pending_mailcow_cc_username']) : null; ?>",
 | |
|           complete: function(data){
 | |
|             $('#u2f_status_auth').html(lang_tfa.waiting_usb_auth);
 | |
|             data;
 | |
|             setTimeout(function() {
 | |
|               console.log("Ready to authenticate");
 | |
|               u2f.sign(appId, challenge, registeredKeys, function(data) {
 | |
|                 var form = document.getElementById('u2f_auth_form');
 | |
|                 var auth = document.getElementById('u2f_auth_data');
 | |
|                 console.log("Authenticate callback", data);
 | |
|                 auth.value = JSON.stringify(data);
 | |
|                 form.submit();
 | |
|               });
 | |
|             }, 1000);
 | |
|           }
 | |
|         });
 | |
|       }
 | |
|   });
 | |
|   $('#ConfirmTFAModal').on('hidden.bs.modal', function(){
 | |
|       $.ajax({
 | |
|         type: "GET",
 | |
|         cache: false,
 | |
|         dataType: 'script',
 | |
|         url: '/inc/ajax/destroy_tfa_auth.php',
 | |
|         complete: function(data){
 | |
|           window.location = window.location.href.split("#")[0];
 | |
|         }
 | |
|       });
 | |
|   });
 | |
|   <?php endif; ?>
 | |
| 
 | |
|   // Set TFA modals
 | |
|   $('#selectTFA').change(function () {
 | |
|     if ($(this).val() == "yubi_otp") {
 | |
|       $('#YubiOTPModal').modal('show');
 | |
|       $("option:selected").prop("selected", false);
 | |
|     }
 | |
|     if ($(this).val() == "totp") {
 | |
|       $('#TOTPModal').modal('show');
 | |
|       $("option:selected").prop("selected", false);
 | |
|     }
 | |
|     if ($(this).val() == "u2f") {
 | |
|       $('#U2FModal').modal('show');
 | |
|       $("option:selected").prop("selected", false);
 | |
|       $('#u2f_status_reg').html('<p><span class="glyphicon glyphicon-refresh glyphicon-spin"></span> Initializing, please wait...</p>');
 | |
|       $.ajax({
 | |
|         type: "GET",
 | |
|         cache: false,
 | |
|         dataType: 'script',
 | |
|         url: "/api/v1/get/u2f-registration/<?= (isset($_SESSION['mailcow_cc_username'])) ? rawurlencode($_SESSION['mailcow_cc_username']) : null; ?>",
 | |
|         complete: function(data){
 | |
|           data;
 | |
|           setTimeout(function() {
 | |
|             console.log("Ready to register");
 | |
|             $('#u2f_status_reg').html(lang_tfa.waiting_usb_register);
 | |
|             u2f.register(appId, registerRequests, registeredKeys, function(deviceResponse) {
 | |
|               var form  = document.getElementById('u2f_reg_form');
 | |
|               var reg   = document.getElementById('u2f_register_data');
 | |
|               console.log("Register callback: ", data);
 | |
|               if (deviceResponse.errorCode && deviceResponse.errorCode != 0) {
 | |
|                 var u2f_return_code = document.getElementById('u2f_return_code');
 | |
|                 u2f_return_code.style.display = u2f_return_code.style.display === 'none' ? '' : null;
 | |
|                 if (deviceResponse.errorCode == "4") { deviceResponse.errorCode = "4 - The presented device is not eligible for this request. For a registration request this may mean that the token is already registered, and for a sign request it may mean that the token does not know the presented key handle"; }
 | |
|                 u2f_return_code.innerHTML = 'Error code: ' + deviceResponse.errorCode;
 | |
|                 return;
 | |
|               }
 | |
|               reg.value = JSON.stringify(deviceResponse);
 | |
|               form.submit();
 | |
|             });
 | |
|           }, 1000);
 | |
|         }
 | |
|       });
 | |
|     }
 | |
|     if ($(this).val() == "none") {
 | |
|       $('#DisableTFAModal').modal('show');
 | |
|       $("option:selected").prop("selected", false);
 | |
|     }
 | |
|   });
 | |
| 
 | |
|   // CSRF
 | |
|   $('<input type="hidden" value="<?= $_SESSION['CSRF']['TOKEN']; ?>">').attr('name', 'csrf_token').appendTo('form');
 | |
|   if (sessionStorage.scrollTop != "undefined") {
 | |
|     $(window).scrollTop(sessionStorage.scrollTop);
 | |
|   }
 | |
| });
 | |
| </script>
 | |
| 
 | |
| </body>
 | |
| </html>
 | |
| <?php
 | |
| $stmt = null;
 | |
| $pdo = null;
 |