bundles: fix usage of set() vs {}
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
c418102000
commit
e36a352a42
8 changed files with 14 additions and 14 deletions
|
@ -74,10 +74,10 @@ def iptables(metadata):
|
|||
'iptables': {
|
||||
'port_rules': {
|
||||
# imap(s)
|
||||
'143': atomic(metadata.get('dovecot/restrict-to', set('*'))),
|
||||
'993': atomic(metadata.get('dovecot/restrict-to', set('*'))),
|
||||
'143': atomic(metadata.get('dovecot/restrict-to', {'*'})),
|
||||
'993': atomic(metadata.get('dovecot/restrict-to', {'*'})),
|
||||
# managesieve
|
||||
'4190': atomic(metadata.get('dovecot/restrict-to', set('*'))),
|
||||
'4190': atomic(metadata.get('dovecot/restrict-to', {'*'})),
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue