Disposable
A list of disposable/temporary email address domains
Install / Use
/learn @disposable/DisposableREADME
🗑 Disposable email domains
A collection of domains for disposable email services like 10MinuteMail and GuerrillaMail. Also, some 🛠 to make your life easier.
Contributions
If you are already familiar with the topic or have good suggestions for automating the crawling processes, feel free to open an issue. We are also looking for people to maintain this project or implement additional pages.
Why?
Use it to validate email addresses on sign up, or just to see how many real email addresses you have in your system.
Usage
We provide an autogenerated list which is updated every 24 hours. To lookup informations about a domain, please use:
https://disposable.github.io/disposable-email-domains/lookup/
Normal Mode
A file containing a sorted list of domains, one domain per line.
curl https://raw.githubusercontent.com/disposable/disposable-email-domains/master/domains.txt
Strict Mode
A file containing a sorted list of domains from greylist.txt, one domain per line. The greylist contains e-mail services which do allow anonymous signup - domains from this list are only listed in strict mode. For more informations, please check Issue #81.
curl https://raw.githubusercontent.com/disposable/disposable-email-domains/master/domains_strict.txt
JavaScript
Install the npm package disposable-email. Validate synchronously or with a callback.
npm i --save disposable-email
var disposable = require('disposable-email');
disposable.validate('gmail.com');
// true
disposable.validate('foo@gmail.com');
// true
disposable.validate('gmail.com', console.log);
// undefined
// null true
Go
import "github.com/disposable/disposable"
if disposable.Domain("gmail.com") {
panic("Uh oh!")
}
Java
Checkout ZliIO/zliio-disposable - thanks @ZliIO for the implementation in Java.
Development (Python with uv)
To work with the Python tools in this repo using uv:
pip install --upgrade uv
uv sync
uv run python disposable.py --help
uv run ./.generate
Update the list of domains
To update the list of domains using uv, run uv run ./.generate, and optionally submit a PR.
$ uv run ./.generate
Fetched 5196 domains and 6593 hashes
- 2000 domain(s) added
- 75 domain(s) removed
- 2010 hash(es) added
- 76 hash(es) removed
External Sources:
|Source|Status|
|------|--:|
|https://gist.github.com/adamloving/4401361/||
|https://gist.github.com/jamesonev/7e188c35fd5ca754c970e3a1caf045ef/|
|
|https://github.com/disposable/static-disposable-lists/|
|
|https://github.com/wesbos/burner-email-providers/|
|
|https://github.com/martenson/disposable-email-domains/|
|
|https://github.com/daisy1754/jp-disposable-emails/|
|
|https://github.com/FGRibreau/mailchecker/|
|
|https://github.com/7c/fakefilter/|
|
|https://github.com/flotwig/disposable-email-addresses/|
|
|https://github.com/GeroldSetz/emailondeck.com-domains|
|
|https://www.rotvpn.com/en/disposable-email||
|https://www.stopforumspam.com/downloads/toxic_domains_whole.txt||
Credits
@adamloving @michenriksen @ivolo @smeinecke @GeroldSetz @martenson @FGRibreau @daisy1754 @jamesonev @wesbos @willwhite @stopforumspam @7c @copini @ZliIO
CDN
- Production: https://rawcdn.githack.com/disposable/disposable-email-domains/master/domains.json
- Development: https://raw.githack.com/disposable/disposable-email-domains/master/domains.json
by: https://raw.githack.com/
