We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
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
.The text was updated successfully, but these errors were encountered: