mirror of https://github.com/zulip/zulip.git
puppet: Be more restrictive about mm addresses.
These will always have only 32 characters after the `mm`.
This commit is contained in:
parent
a53092687e
commit
ab035f76de
|
@ -4,6 +4,6 @@
|
|||
|
||||
/\+.*@/ OK
|
||||
/\..*@/ OK
|
||||
/^mm/ OK
|
||||
/^mm.{32}@/ OK
|
||||
|
||||
/^postmaster@/ OK
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
if /@<%= Regexp.escape(@postfix_mailname) %>\.?$/
|
||||
# Changes to this list require a corresponding change to `access` as
|
||||
# well.
|
||||
/\+.*@/ zulip@localhost
|
||||
/\..*@/ zulip@localhost
|
||||
/^mm/ zulip@localhost
|
||||
/\+.*@/ zulip@localhost
|
||||
/\..*@/ zulip@localhost
|
||||
/^mm.{32}@/ zulip@localhost
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue