diff --git a/data/web/admin.php b/data/web/admin.php
index 1a4241c3..9d6543fd 100644
--- a/data/web/admin.php
+++ b/data/web/admin.php
@@ -723,8 +723,8 @@ if (!isset($_SESSION['gal']) && $license_cache = $redis->Get('LICENSE_STATUS_CAC
diff --git a/data/web/js/site/mailbox.js b/data/web/js/site/mailbox.js
index ddaf08a7..36685d67 100644
--- a/data/web/js/site/mailbox.js
+++ b/data/web/js/site/mailbox.js
@@ -48,6 +48,10 @@ $(document).ready(function() {
$(this.$domain).closest("select").selectpicker();
}
});
+ // Clone mailbox mass actions
+ $("div").find("[data-actions-header='true'").each(function() {
+ $(this).html($(this).nextAll('.mass-actions-mailbox:first').html());
+ });
// Auto-fill domain quota when adding new domain
auto_fill_quota = function(domain) {
$.get("/api/v1/get/domain/" + domain, function(data){