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
Take a look at example:
> w = false > b = true > d = true > if not w and not b and d then print("domain is checked!") end
This mimics:
-- If no whitelist or blacklist, match on domain if not whitelist and not blacklist and domain then
The check should look like this: (domain or whitelist) and (not blacklist), here variables represent computed conditions for specific email.
(domain or whitelist) and (not blacklist)
This way you could have:
The text was updated successfully, but these errors were encountered:
Whitelist checks are also ignored after user signed in.
Sorry, something went wrong.
No branches or pull requests
Take a look at example:
This mimics:
The check should look like this:
(domain or whitelist) and (not blacklist)
, here variables represent computed conditions for specific email.This way you could have:
The text was updated successfully, but these errors were encountered: