Skip to main content

Overview

Alias detection identifies plus-addressing (also called subaddressing), where users add a tag to their email address like [email protected]. This allows one email address to create unlimited variations.
Typically configured as FLAG since aliases can indicate multi-accounting but are also used legitimately.

What is Plus-Addressing?

Plus-addressing allows users to add a tag after a + symbol:
[email protected]           # Base email
[email protected]  # Shopping alias
[email protected] # Newsletter alias
All these deliver to the same inbox: [email protected]

Why It Matters

  • Multi-accounting: Users can bypass “one account per email” limits
  • Trial abuse: Create unlimited free trial accounts
  • Referral fraud: Exploit referral programs

API Response

{
  "checks": {
    "alias": {
      "pass": false,
      "latency": 0.3
    }
  },
  "signals": ["alias_pattern"]
}
pass
boolean
false if plus-addressing detected, true if not
latency
number
Check execution time in milliseconds

Configuration

FLAG

Recommended to FLAG aliases since they can be legitimate but may indicate abuse.

Next Steps