Disposable email database

Is mohmal.com a disposable email?

Yes — mohmal.com is a disposable / temporary email service.

Quick answer

mohmal.com is operated by Mohmal, a disposable / temporary email service. Signups using this domain are almost always throwaway. Block at signup if your product depends on long-term email reachability.

About Mohmal

Mohmal ('neglected' in Arabic) is a disposable email service especially popular in Arabic-speaking markets, with an interface localized for the region. Inboxes are temporary and are deleted shortly after creation.

What it’s typically used for

Throwaway signups and confirmations, with usage concentrated in Middle East and North Africa traffic.

Should you block mohmal.com in your signup form?

Standard throwaway economics: the inbox is designed to disappear, so the signup has no lasting contact value. Block at signup — and note that regionally popular services like this are exactly what a US-centric blocklist tends to miss.

How to detect mohmal.com in code

You don’t need to maintain a hand-rolled list. Vouchley returns a disposable flag (and the rest of the signup score) on every check:

curl -X POST https://api.vouchley.getrevlio.com/v1/verify \
  -H "Authorization: Bearer vch_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "email": "anyone@mohmal.com",
    "ip_address": "203.0.113.10"
  }'

# Response:
# {
#   "score": 12,
#   "recommendation": "block",
#   "email": { "disposable": true, "valid": true },
#   ...
# }

Block disposable signups in one API call.

Vouchley keeps the disposable list current — including alias domains and new providers — so you never have to maintain it yourself.