Browse Source

Merge pull request #5700 from mailcow/staging

[Netfilter] fix mailcow isolation rule for iptables
Niklas Meyer 1 năm trước cách đây
mục cha
commit
20c90642f9
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      data/Dockerfiles/netfilter/modules/IPTables.py

+ 2 - 2
data/Dockerfiles/netfilter/modules/IPTables.py

@@ -219,7 +219,7 @@ class IPTables:
 
       # insert mailcow isolation rule
       rule = iptc.Rule()
-      rule.in_interface = f'! {_interface}'
+      rule.in_interface = f'!{_interface}'
       rule.out_interface = _interface
       rule.protocol = 'tcp'
       rule.create_target("DROP")
@@ -234,7 +234,7 @@ class IPTables:
       if _allow != "":
         rule = iptc.Rule()
         rule.src = _allow
-        rule.in_interface = f'! {_interface}'
+        rule.in_interface = f'!{_interface}'
         rule.out_interface = _interface
         rule.protocol = 'tcp'
         rule.create_target("ACCEPT")