Block or Unblock an Email Address
When someone tries to register an account, the first step is to verify that they really do have access to the supplied email address by sending an email to it. If the user has supplied the correct address they click a link in the message that verifies that and proceeds to the next stage in the account creation process.
However, it is possible that the person submitting the registration form may have entered an incorrect address (either accidentally or maliciously). In that case someone who has not attempted to register an account will receive the verification email.
There are two features in place to prevent people who do not want an account from being spammed with multiple verification emails:
- You can configure rate limiting to prevent any one email address from receiving more than a certain number of messages in a given time period.
- The verification email contains a link to reject the registration. If someone receives a verification message when they did not attempt to sign up for an account, then they can click this link to block their address in the system. Once an email address is blocked it will no longer receive any emails from the user registration system.
Check Block Status of an Email Address
To check if an email address has been blocked, use the following command in SuperADMIN:
userreg <email> blocked
Replace <email>
with the email address you want to check. Do not enclose the email address in quotes. SuperADMIN will respond with either true
if the address is blocked or false
otherwise.
For example:
> userreg email@example.com blocked
true
Manually Block or Unblock an Email Address
You can manually block or unblock an email address through SuperADMIN.
If someone has previously clicked the block link but subsequently decides to create an account then they will not be able to do so until you unblock their address.
To block or unblock an email address, use the following command:
userreg <email> blocked {true|false}
Do not enclose the email address in quotes.
For example, the following command unblocks the email address user@example.com
:
> userreg user@example.com blocked false
user@example.com is no longer blocked
>