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] Allow empty bcc when saving quarantine settings, fixes #3363

dd0c1438
andryyy <[email protected]> 6 years ago
data/web/js/build/012-api.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Diff

diff --git a/data/web/js/build/012-api.js b/data/web/js/build/012-api.js
index 6555a8cd..17cf6542 100644
--- a/data/web/js/build/012-api.js
+++ b/data/web/js/build/012-api.js
@@ -103,7 +103,7 @@ $(document).ready(function() {
             $(this).removeClass('inputMissingAttr');
           }
         }
-        if ($(this).attr("type") == 'email') {
+        if ($(this).val() && $(this).attr("type") == 'email') {
           if (!validateEmail($(this).val())) {
             invalid = true;
             $(this).addClass('inputMissingAttr');