Closed lanjelot closed 7 years ago
Hey,
There is a logic bug in allowed_email() that prevents email rules from actually being enforced.
allowed_email()
If email does not match any rule then email will be allowed because $allowedEmail is initialized to true.
$allowedEmail
true
Hi, this is intended behavior. Default action is to allow email. If you want default action to be deny, you can add a rule for that in the console.
Hey,
There is a logic bug in
allowed_email()
that prevents email rules from actually being enforced.If email does not match any rule then email will be allowed because
$allowedEmail
is initialized totrue
.