NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
PHP 49% JavaScript 35% HTML 9% CSS 4% Shell 2% Python 1% Lua 0% Perl 0% Ruby 0% SCSS 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git

Commit

[Web] Minor changes

ec1dce50
andryyy <[email protected]> 7 years ago
data/web/admin.php          | 4 ++--
 data/web/js/site/mailbox.js | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)

Diff

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
             </div>
             <div class="col-sm-6">
               <div class="form-group">
-                <label for="sender"><span class="glyphicon glyphicon-copy"></span> <?=$lang['admin']['quarantine_global_rcpt'];?></label>
-                <input type="email" class="form-control" name="global_rcpt" value="<?=htmlspecialchars($q_data['global_rcpt']);?>" placeholder="">
+                <label for="sender"><span class="glyphicon glyphicon-copy"></span> <?=$lang['admin']['quarantine_bcc'];?></label>
+                <input type="email" class="form-control" name="bcc" value="<?=htmlspecialchars($q_data['bcc']);?>" placeholder="">
               </div>
             </div>
           </div>
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){