email_data 1601158120 → 1601260789
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.tool-versions +2 -0
- data/README.md +23 -1
- data/VERSION +1 -1
- data/bin/helpers.rb +0 -2
- data/bin/publish +37 -0
- data/bin/publish-gem +3 -20
- data/bin/publish-npm +23 -0
- data/bin/sync-disposable-emails +1 -1
- data/data/disposable_domains.txt +11 -109
- data/email_data.gemspec +5 -1
- data/package.json +18 -0
- metadata +38 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d31b668bb75b28facd8b15d760c381066044793a21182bcc1a425769702b84d
|
4
|
+
data.tar.gz: 2e3753a694119b5b954f7a4e0b3a40d4dddca956f52acca22708a48fcfb5b8d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '02923753d75d4ebbd5e56c0d29cd9f57a397c7e118ab0caec6a36440a7cb2dc4d33a5f9d9138869b47ed5d02a929d52ae6096f778300854ed270459beffb09b3'
|
7
|
+
data.tar.gz: 60559acd391158f31439fe843c87990e4c5e765e5cef9b24c1ec88d6bcae654bed04b1d2f7410e8839c429b4f7c77f4f09037cb296b4137078bb22836d793a54
|
data/.gitignore
CHANGED
data/.tool-versions
ADDED
data/README.md
CHANGED
@@ -11,6 +11,8 @@ this data available.
|
|
11
11
|
|
12
12
|
## Installation
|
13
13
|
|
14
|
+
### Ruby
|
15
|
+
|
14
16
|
Add this line to your application's Gemfile:
|
15
17
|
|
16
18
|
```ruby
|
@@ -25,7 +27,7 @@ Or install it yourself as:
|
|
25
27
|
|
26
28
|
$ gem install email_data
|
27
29
|
|
28
|
-
|
30
|
+
#### Usage
|
29
31
|
|
30
32
|
```ruby
|
31
33
|
require "email_data"
|
@@ -44,6 +46,26 @@ EmailData.disposable_emails
|
|
44
46
|
EmailData.free_email_domains
|
45
47
|
```
|
46
48
|
|
49
|
+
### Node.js
|
50
|
+
|
51
|
+
```console
|
52
|
+
$ yarn add @fnando/email_data
|
53
|
+
```
|
54
|
+
|
55
|
+
or
|
56
|
+
|
57
|
+
```console
|
58
|
+
$ npm install @fnando/email_data
|
59
|
+
```
|
60
|
+
|
61
|
+
#### Usage
|
62
|
+
|
63
|
+
```js
|
64
|
+
const disposableEmails = require("@fnando/email_data/data/json/disposable_emails.json");
|
65
|
+
const disposableDomains = require("@fnando/email_data/data/json/disposable_domains.json");
|
66
|
+
const freeEmailDomains = require("@fnando/email_data/data/json/free_email_domains.json");
|
67
|
+
```
|
68
|
+
|
47
69
|
## Dataset
|
48
70
|
|
49
71
|
The dataset is updated automatically. If you have any manual entries you would
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1601260789
|
data/bin/helpers.rb
CHANGED
data/bin/publish
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
set -e
|
4
|
+
|
5
|
+
source $HOME/.zsh/exports.sh
|
6
|
+
source $HOME/.zsh/asdf.sh
|
7
|
+
|
8
|
+
git pull --rebase
|
9
|
+
git push
|
10
|
+
|
11
|
+
./bin/sync
|
12
|
+
|
13
|
+
git_status=$(git status 2> /dev/null | tr "\\n" " ")
|
14
|
+
|
15
|
+
if [[ "$git_status" =~ "nothing to commit" ]]; then
|
16
|
+
terminal-notifier \
|
17
|
+
-message "No changes detected. Skipping new packages." \
|
18
|
+
-ignoreDnD \
|
19
|
+
-title "email_data" \
|
20
|
+
-group homebrew \
|
21
|
+
&> /dev/null
|
22
|
+
exit
|
23
|
+
fi
|
24
|
+
|
25
|
+
date "+%s" > VERSION
|
26
|
+
|
27
|
+
version=$(cat VERSION)
|
28
|
+
package_json=$(cat package.json | jq --arg version "${version}.0.0" '.version = $version')
|
29
|
+
|
30
|
+
echo $package_json | jq --tab > package.json
|
31
|
+
|
32
|
+
git add .
|
33
|
+
git commit -m "Bump up version."
|
34
|
+
git push
|
35
|
+
|
36
|
+
./bin/publish-gem
|
37
|
+
./bin/publish-npm
|
data/bin/publish-gem
CHANGED
@@ -5,28 +5,11 @@ set -e
|
|
5
5
|
source $HOME/.zsh/exports.sh
|
6
6
|
source $HOME/.zsh/asdf.sh
|
7
7
|
|
8
|
-
|
9
|
-
git push
|
8
|
+
asdf local ruby 2.7.1
|
10
9
|
|
11
|
-
|
10
|
+
gem install bundler
|
11
|
+
bundle update
|
12
12
|
|
13
|
-
git_status=$(git status 2> /dev/null | tr "\\n" " ")
|
14
|
-
|
15
|
-
if [[ "$git_status" =~ "nothing to commit" ]]; then
|
16
|
-
terminal-notifier \
|
17
|
-
-message "No changes detected. Skipping new gem." \
|
18
|
-
-ignoreDnD \
|
19
|
-
-title "email_data" \
|
20
|
-
-group homebrew \
|
21
|
-
&> /dev/null
|
22
|
-
exit
|
23
|
-
fi
|
24
|
-
|
25
|
-
date "+%s" > VERSION
|
26
|
-
|
27
|
-
git add .
|
28
|
-
git commit -m "Bump up version."
|
29
|
-
git push
|
30
13
|
rake release
|
31
14
|
|
32
15
|
terminal-notifier \
|
data/bin/publish-npm
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
set -e
|
4
|
+
|
5
|
+
source $HOME/.zsh/exports.sh
|
6
|
+
source $HOME/.zsh/asdf.sh
|
7
|
+
|
8
|
+
asdf local nodejs 12.18.4
|
9
|
+
|
10
|
+
for input in $(ls -1 data/*.txt); do
|
11
|
+
name=$(basename $input)
|
12
|
+
output=data/json/"${name%.txt}.json"
|
13
|
+
jq -R -s -c 'split("\n")' < $input > $output
|
14
|
+
done
|
15
|
+
|
16
|
+
npm publish --access=public
|
17
|
+
|
18
|
+
terminal-notifier \
|
19
|
+
-message "Just published a new npm version." \
|
20
|
+
-ignoreDnD \
|
21
|
+
-title "email_data" \
|
22
|
+
-group homebrew \
|
23
|
+
&> /dev/null
|
data/bin/sync-disposable-emails
CHANGED
@@ -194,7 +194,7 @@ Dir["./data/disposable/**/*.txt"].map do |file|
|
|
194
194
|
domains += normalize_list(File.read(file).lines)
|
195
195
|
end
|
196
196
|
|
197
|
-
ignore_domains =
|
197
|
+
ignore_domains = normalize_list(File.read("#{__dir__}/../data/manual/free_email_domains.txt").lines)
|
198
198
|
|
199
199
|
puts "=> Normalize domains (count: #{domains.size})"
|
200
200
|
domains = domains
|
data/data/disposable_domains.txt
CHANGED
@@ -9421,7 +9421,6 @@ ailluin.site
|
|
9421
9421
|
ailme.pw
|
9422
9422
|
ailmedia.press
|
9423
9423
|
aim-v.ru
|
9424
|
-
aim.com
|
9425
9424
|
aimboss.ru
|
9426
9425
|
aimeenorman.buzz
|
9427
9426
|
aimer-agency.net
|
@@ -10106,8 +10105,6 @@ alibestdeal.com
|
|
10106
10105
|
alibirelax.ru
|
10107
10106
|
aliblue.top
|
10108
10107
|
alic.info
|
10109
|
-
alice.it
|
10110
|
-
aliceadsl.fr
|
10111
10108
|
aliceenjoy.com
|
10112
10109
|
alicemchard.com
|
10113
10110
|
aliciaflynn.buzz
|
@@ -11544,7 +11541,6 @@ aogmoney.xyz
|
|
11544
11541
|
aogoen.com
|
11545
11542
|
aojd-online.com
|
11546
11543
|
aokfeo.online
|
11547
|
-
aol.com
|
11548
11544
|
aol.edu
|
11549
11545
|
aolimail.com
|
11550
11546
|
aolinemail.cf
|
@@ -11978,7 +11974,6 @@ arcmarts.com
|
|
11978
11974
|
arcompus.net
|
11979
11975
|
arconatech.com
|
11980
11976
|
arconplast.com
|
11981
|
-
arcor.de
|
11982
11977
|
arcticleaf.app
|
11983
11978
|
arcticside.com
|
11984
11979
|
arctocbhuh.info
|
@@ -12585,6 +12580,7 @@ asinproplus.com
|
|
12585
12580
|
asinspector.org
|
12586
12581
|
asio.club
|
12587
12582
|
asioncriblomatic.com
|
12583
|
+
asioncriblomatic.live
|
12588
12584
|
asisec.cf
|
12589
12585
|
asisec.ga
|
12590
12586
|
asisec.gq
|
@@ -12950,6 +12946,7 @@ atozconference.com
|
|
12950
12946
|
atp-dz.com
|
12951
12947
|
atpfinals.ru
|
12952
12948
|
atpworldtour-2016.com
|
12949
|
+
atqpq.live
|
12953
12950
|
atrais-kredits24.com
|
12954
12951
|
atrakcje-nestor.pl
|
12955
12952
|
atrakcjedladziecii.pl
|
@@ -12969,7 +12966,6 @@ att-warner.ga
|
|
12969
12966
|
att-warner.gq
|
12970
12967
|
att-warner.ml
|
12971
12968
|
att-warner.tk
|
12972
|
-
att.net
|
12973
12969
|
attaber.cf
|
12974
12970
|
attaber.ga
|
12975
12971
|
attaber.gq
|
@@ -15604,7 +15600,6 @@ belljonestax.com
|
|
15604
15600
|
bellmofac.ga
|
15605
15601
|
bellshoalsanimalhospitalofbrandon.com
|
15606
15602
|
bellshoalsvet.com
|
15607
|
-
bellsouth.net
|
15608
15603
|
bellster.biz
|
15609
15604
|
bellster.name
|
15610
15605
|
bellwellcharters.com
|
@@ -17060,8 +17055,6 @@ bigorbust.net
|
|
17060
17055
|
bigotes.org
|
17061
17056
|
bigpicnic.ru
|
17062
17057
|
bigpicturecharts.com
|
17063
|
-
bigpond.com
|
17064
|
-
bigpond.net.au
|
17065
17058
|
bigprizesishere10.life
|
17066
17059
|
bigprofessor.so
|
17067
17060
|
bigpurses.org
|
@@ -17992,9 +17985,7 @@ bluetreephuket.fun
|
|
17992
17985
|
bluetreephuket.holiday
|
17993
17986
|
bluewall.dev
|
17994
17987
|
bluewerks.com
|
17995
|
-
bluewin.ch
|
17996
17988
|
blueyi.com
|
17997
|
-
blueyonder.co.uk
|
17998
17989
|
bluffersguidetoit.com
|
17999
17990
|
blulapis.com
|
18000
17991
|
blulapka.pl
|
@@ -18320,7 +18311,6 @@ boks.site
|
|
18320
18311
|
boks4u.gq
|
18321
18312
|
boksclubibelieve.online
|
18322
18313
|
bokstone.com
|
18323
|
-
bol.com.br
|
18324
18314
|
bola208.com
|
18325
18315
|
bola228run.com
|
18326
18316
|
bola59.net
|
@@ -18819,6 +18809,7 @@ boyfargeorgica.com
|
|
18819
18809
|
boygenius.com
|
18820
18810
|
boygenius.net
|
18821
18811
|
boyhanb.best
|
18812
|
+
boykov.net
|
18822
18813
|
boyoboygirl.com
|
18823
18814
|
boysbook.shop
|
18824
18815
|
boythatescaldqckly.com
|
@@ -22109,7 +22100,6 @@ century-pool-advice-make.xyz
|
|
22109
22100
|
century21coloradoriverrealty.com
|
22110
22101
|
centuryfinley.site
|
22111
22102
|
centuryminingsr.com
|
22112
|
-
centurytel.net
|
22113
22103
|
centvps.com
|
22114
22104
|
centy.cf
|
22115
22105
|
centy.ga
|
@@ -22471,7 +22461,6 @@ charmlessons.com
|
|
22471
22461
|
charmrealestate.com
|
22472
22462
|
charms-shop.com
|
22473
22463
|
chartconcierge.com
|
22474
|
-
charter.net
|
22475
22464
|
chartercatamaranthailand.com
|
22476
22465
|
charterfouri.com
|
22477
22466
|
chartersnyc.com
|
@@ -22801,7 +22790,6 @@ chekibenin.com
|
|
22801
22790
|
chekist.info
|
22802
22791
|
chelahi.tk
|
22803
22792
|
cheliped.info
|
22804
|
-
chello.nl
|
22805
22793
|
chellup.info
|
22806
22794
|
chelny.press
|
22807
22795
|
chelseaartsgroup.com
|
@@ -23863,6 +23851,7 @@ click-me4.com
|
|
23863
23851
|
click-me5.com
|
23864
23852
|
click-me6.com
|
23865
23853
|
click24.site
|
23854
|
+
click2m.pro
|
23866
23855
|
click2mail.net
|
23867
23856
|
click5kz.pro
|
23868
23857
|
clickandgo-do-go.space
|
@@ -24087,7 +24076,6 @@ clsn.top
|
|
24087
24076
|
clsn1.com
|
24088
24077
|
clt.dev
|
24089
24078
|
cltj5.us
|
24090
|
-
club-internet.fr
|
24091
24079
|
club-pchelka.ru
|
24092
24080
|
club127.com
|
24093
24081
|
club4skin.ru
|
@@ -24702,7 +24690,6 @@ combrotech77rel.gq
|
|
24702
24690
|
combustore.co
|
24703
24691
|
combyo.com
|
24704
24692
|
comcapfactoring.org
|
24705
|
-
comcast.net
|
24706
24693
|
comdmaildd.com
|
24707
24694
|
come-on-day.pw
|
24708
24695
|
come-to-win.com
|
@@ -25622,7 +25609,6 @@ cowtube.club
|
|
25622
25609
|
cowtv.club
|
25623
25610
|
cowvideo.info
|
25624
25611
|
cowvtjui.xyz
|
25625
|
-
cox.net
|
25626
25612
|
coxbete.cf
|
25627
25613
|
coxbete99.cf
|
25628
25614
|
coxnet.cf
|
@@ -32152,7 +32138,6 @@ earpitchtraining.info
|
|
32152
32138
|
earthbonus.host
|
32153
32139
|
earthdrygoods.com
|
32154
32140
|
earthforhealth.club
|
32155
|
-
earthlink.net
|
32156
32141
|
earthorbit.net
|
32157
32142
|
earthorbit.org
|
32158
32143
|
earthtod.site
|
@@ -35294,7 +35279,6 @@ excipientstrade.com
|
|
35294
35279
|
excipientswiki.com
|
35295
35280
|
excipientwiki.com
|
35296
35281
|
excisemanship.best
|
35297
|
-
excite.com
|
35298
35282
|
excitedchat.com
|
35299
35283
|
excitingsupreme.info
|
35300
35284
|
excitingz.club
|
@@ -35781,7 +35765,6 @@ facebook-egy.com
|
|
35781
35765
|
facebook-email.cf
|
35782
35766
|
facebook-email.ga
|
35783
35767
|
facebook-email.ml
|
35784
|
-
facebook.com
|
35785
35768
|
facebook199.xyz
|
35786
35769
|
facebookmail.gq
|
35787
35770
|
facebookmail.ml
|
@@ -38741,13 +38724,13 @@ free-store.ru
|
|
38741
38724
|
free-temp.net
|
38742
38725
|
free-web-mails.com
|
38743
38726
|
free-webmail1.info
|
38744
|
-
free.fr
|
38745
38727
|
free123mail.com
|
38746
38728
|
free4everybody.bid
|
38747
38729
|
freeaa317.xyz
|
38748
38730
|
freeaccnt.ga
|
38749
38731
|
freeachievement.info
|
38750
38732
|
freeadverts.org
|
38733
|
+
freeallapp.com
|
38751
38734
|
freealtgen.com
|
38752
38735
|
freeandsingle.us
|
38753
38736
|
freebabysittercam.com
|
@@ -38899,7 +38882,6 @@ freemyworld.ga
|
|
38899
38882
|
freemyworld.gq
|
38900
38883
|
freemyworld.ml
|
38901
38884
|
freemyworld.tk
|
38902
|
-
freenet.de
|
38903
38885
|
freeneurons.com
|
38904
38886
|
freenfulldownloads.net
|
38905
38887
|
freeo.pl
|
@@ -39103,7 +39085,6 @@ fronation.com
|
|
39103
39085
|
front-end-dev.ru
|
39104
39086
|
front14.org
|
39105
39087
|
frontierfactions.org
|
39106
|
-
frontiernet.net
|
39107
39088
|
frontiers.com
|
39108
39089
|
frontlinemanagementinstitute.com
|
39109
39090
|
frontoid.xyz
|
@@ -41775,9 +41756,7 @@ gmsdfhail.com
|
|
41775
41756
|
gmsdluxx.com
|
41776
41757
|
gmsinvest.ru
|
41777
41758
|
gmssail.com
|
41778
|
-
gmx.de
|
41779
41759
|
gmx.es
|
41780
|
-
gmx.net
|
41781
41760
|
gmx1mail.top
|
41782
41761
|
gmxip8vet5glx2n9ld.cf
|
41783
41762
|
gmxip8vet5glx2n9ld.ga
|
@@ -42279,7 +42258,6 @@ googlefind.com
|
|
42279
42258
|
googlegarbage.com
|
42280
42259
|
googlelogin.online
|
42281
42260
|
googlelogin.site
|
42282
|
-
googlemail.com
|
42283
42261
|
googlemail.press
|
42284
42262
|
googlemarket.com
|
42285
42263
|
googlepedia.me
|
@@ -45433,7 +45411,6 @@ heterto.ru
|
|
45433
45411
|
hetgames.shop
|
45434
45412
|
hethox.com
|
45435
45413
|
hetkanmijnietschelen.space
|
45436
|
-
hetnet.nl
|
45437
45414
|
heure.shop
|
45438
45415
|
heuschrecken.kaufen
|
45439
45416
|
hewke.xyz
|
@@ -46337,7 +46314,6 @@ home-care-assistance-leger-agency.com
|
|
46337
46314
|
home-gym-direct.com
|
46338
46315
|
home-sales-by-owner.com
|
46339
46316
|
home-tech.fun
|
46340
|
-
home.nl
|
46341
46317
|
home.pl
|
46342
46318
|
home.tennis
|
46343
46319
|
home2busova.ru
|
@@ -46747,11 +46723,6 @@ hotmai.com
|
|
46747
46723
|
hotmaiils.xyz
|
46748
46724
|
hotmail-s.com
|
46749
46725
|
hotmail.biz
|
46750
|
-
hotmail.co.uk
|
46751
|
-
hotmail.de
|
46752
|
-
hotmail.es
|
46753
|
-
hotmail.fr
|
46754
|
-
hotmail.it
|
46755
46726
|
hotmail.red
|
46756
46727
|
hotmail.work
|
46757
46728
|
hotmail4.com
|
@@ -48014,7 +47985,6 @@ ick0h.site
|
|
48014
47985
|
ickx.de
|
48015
47986
|
iclim52.ru
|
48016
47987
|
icloid.com
|
48017
|
-
icloud.com
|
48018
47988
|
icloud.do
|
48019
47989
|
icloudbusiness.net
|
48020
47990
|
icloudsendfirefox.online
|
@@ -48345,7 +48315,6 @@ ifunnelhack.com
|
|
48345
48315
|
ifuphere.com
|
48346
48316
|
ifwzhzyr.shop
|
48347
48317
|
ifxif.com
|
48348
|
-
ig.com.br
|
48349
48318
|
ig.kiwi
|
48350
48319
|
ig.support
|
48351
48320
|
ig9kxv6omkmxsnw6rd.cf
|
@@ -50326,6 +50295,7 @@ isfahantourism.info
|
|
50326
50295
|
isgre.at
|
50327
50296
|
isherz.net
|
50328
50297
|
ishetalgedaan.site
|
50298
|
+
ishi-tut.online
|
50329
50299
|
ishis.site
|
50330
50300
|
ishkinn.ru
|
50331
50301
|
ishockey.se
|
@@ -52695,7 +52665,6 @@ junkmassarie.com
|
|
52695
52665
|
junkouture.com
|
52696
52666
|
junkyardpalmdale.com
|
52697
52667
|
junnuok.com
|
52698
|
-
juno.com
|
52699
52668
|
junostore.site
|
52700
52669
|
junrecetas.com
|
52701
52670
|
juntaupwardmercy.site
|
@@ -56208,7 +56177,6 @@ lapita.tk
|
|
56208
56177
|
lapizzolettasoria.com
|
56209
56178
|
laporinaja.com
|
56210
56179
|
laposhe.net
|
56211
|
-
laposte.net
|
56212
56180
|
lapptoposse99.com
|
56213
56181
|
laptopamerica.net
|
56214
56182
|
laptopbeddesk.net
|
@@ -57315,7 +57283,6 @@ liber.press
|
|
57315
57283
|
liberalize557we.online
|
57316
57284
|
liberalizing483lb.online
|
57317
57285
|
liberiaom.com
|
57318
|
-
libero.it
|
57319
57286
|
libertabet4.com
|
57320
57287
|
libertarian.network
|
57321
57288
|
libertychristianchurch.org
|
@@ -58047,13 +58014,6 @@ live-perisa.com
|
|
58047
58014
|
live-pop.com
|
58048
58015
|
live-shop24.ru
|
58049
58016
|
live-woman.ru
|
58050
|
-
live.ca
|
58051
|
-
live.co.uk
|
58052
|
-
live.com
|
58053
|
-
live.com.au
|
58054
|
-
live.fr
|
58055
|
-
live.it
|
58056
|
-
live.nl
|
58057
58017
|
live1994.com
|
58058
58018
|
live2.icu
|
58059
58019
|
live24dns.com
|
@@ -59948,7 +59908,6 @@ mabterssur.ml
|
|
59948
59908
|
mabterssur.tk
|
59949
59909
|
mabuklagi.ga
|
59950
59910
|
mabulareserve.com
|
59951
|
-
mac.com
|
59952
59911
|
macaniuo235.cf
|
59953
59912
|
macankumbang.com
|
59954
59913
|
macaoguojihui.com
|
@@ -60307,10 +60266,8 @@ mail-z.gq
|
|
60307
60266
|
mail-z.ml
|
60308
60267
|
mail-z.tk
|
60309
60268
|
mail.by
|
60310
|
-
mail.com
|
60311
60269
|
mail.info
|
60312
60270
|
mail.me
|
60313
|
-
mail.ru
|
60314
60271
|
mail.to
|
60315
60272
|
mail.ua
|
60316
60273
|
mail.wtf
|
@@ -60568,7 +60525,6 @@ mailfake.ga
|
|
60568
60525
|
mailfall.com
|
60569
60526
|
mailfasfe.com
|
60570
60527
|
mailfavorite.com
|
60571
|
-
mailfence.com
|
60572
60528
|
mailfile.net
|
60573
60529
|
mailfile.org
|
60574
60530
|
mailfirst.icu
|
@@ -62375,7 +62331,6 @@ mdwo.com
|
|
62375
62331
|
mdz39f-mail.xyz
|
62376
62332
|
mdzcl1.site
|
62377
62333
|
me-angel.net
|
62378
|
-
me.com
|
62379
62334
|
me22anysnkeij.xyz
|
62380
62335
|
me2ikakkrn.xyz
|
62381
62336
|
me2view.com
|
@@ -65486,7 +65441,6 @@ msmail.bid
|
|
65486
65441
|
msmail.trade
|
65487
65442
|
msmail.win
|
65488
65443
|
msmwxc.site
|
65489
|
-
msn.com
|
65490
65444
|
msn.edu
|
65491
65445
|
msnai.com
|
65492
65446
|
msnblogs.info
|
@@ -67858,7 +67812,6 @@ networthdetail.club
|
|
67858
67812
|
networthtop.club
|
67859
67813
|
netxservices.net
|
67860
67814
|
netxservices.org
|
67861
|
-
netzero.net
|
67862
67815
|
netzeroexpo.com
|
67863
67816
|
netzerofestivallondon.com
|
67864
67817
|
netzerofestivaluk.com
|
@@ -67867,7 +67820,6 @@ netzwerk-industrie.de
|
|
67867
67820
|
neucasinoslots.com
|
67868
67821
|
neue-dateien.de
|
67869
67822
|
neuemode85.site
|
67870
|
-
neuf.fr
|
67871
67823
|
neufunria.gq
|
67872
67824
|
neufunria.ml
|
67873
67825
|
neujahrsgruesse.info
|
@@ -69646,7 +69598,6 @@ ntllma3vn6qz.gq
|
|
69646
69598
|
ntllma3vn6qz.ml
|
69647
69599
|
ntllma3vn6qz.tk
|
69648
69600
|
ntlshopus.com
|
69649
|
-
ntlworld.com
|
69650
69601
|
ntnrw.info
|
69651
69602
|
ntsj8vn8ssedt.xyz
|
69652
69603
|
ntub.cf
|
@@ -71929,12 +71880,10 @@ optju.ru
|
|
71929
71880
|
optobiotics.com
|
71930
71881
|
optom-sumki.ru
|
71931
71882
|
optometrist-jacksonville-fl.com
|
71932
|
-
optonline.net
|
71933
71883
|
optoseo.com
|
71934
71884
|
optph.ru
|
71935
71885
|
optpz.ru
|
71936
71886
|
optsales.site
|
71937
|
-
optusnet.com.au
|
71938
71887
|
optykslepvps.com
|
71939
71888
|
optymalizacja.com.pl
|
71940
71889
|
opulent-fx.com
|
@@ -71968,7 +71917,6 @@ oralreply.com
|
|
71968
71917
|
oramail.net
|
71969
71918
|
oranek.com
|
71970
71919
|
orange-bonplan.com
|
71971
|
-
orange.fr
|
71972
71920
|
orangecamel.info
|
71973
71921
|
orangecountycotillion.com
|
71974
71922
|
orangecountycouplescounseling.org
|
@@ -72501,7 +72449,6 @@ outlok.com
|
|
72501
72449
|
outlok.net
|
72502
72450
|
outlok.site
|
72503
72451
|
outloo.com
|
72504
|
-
outlook.com
|
72505
72452
|
outlook2.gq
|
72506
72453
|
outlookkk.online
|
72507
72454
|
outlookpro.net
|
@@ -75397,7 +75344,6 @@ plandoreview.app
|
|
75397
75344
|
planeselect.com
|
75398
75345
|
planet-kebabish-limerick.com
|
75399
75346
|
planet-travel.club
|
75400
|
-
planet.nl
|
75401
75347
|
planeta-samsung.ru
|
75402
75348
|
planetbeatrix.com
|
75403
75349
|
planetcomputers.net
|
@@ -75592,6 +75538,7 @@ playtubepk.com
|
|
75592
75538
|
playtubes.net
|
75593
75539
|
playyo88.info
|
75594
75540
|
playyo88.win
|
75541
|
+
playzonex.com
|
75595
75542
|
pldppd.site
|
75596
75543
|
pleadfl.xyz
|
75597
75544
|
pleadid.email
|
@@ -75744,7 +75691,6 @@ plz-mail.online
|
|
75744
75691
|
pm-200.info
|
75745
75692
|
pm-386.info
|
75746
75693
|
pm-773.info
|
75747
|
-
pm.me
|
75748
75694
|
pm244.site
|
75749
75695
|
pm7if.us
|
75750
75696
|
pmarketst.com
|
@@ -77591,7 +77537,6 @@ protologism.com
|
|
77591
77537
|
proton-team.com
|
77592
77538
|
protonemach.waw.pl
|
77593
77539
|
protongras.ga
|
77594
|
-
protonmail.com
|
77595
77540
|
protosale.ru
|
77596
77541
|
protovu.xyz
|
77597
77542
|
protrendcolorshop.com
|
@@ -78811,7 +78756,6 @@ qpsrefugees.com
|
|
78811
78756
|
qpulsa.com
|
78812
78757
|
qpwnwmvo.shop
|
78813
78758
|
qpxxis.com
|
78814
|
-
qq.com
|
78815
78759
|
qq.my
|
78816
78760
|
qq152.com
|
78817
78761
|
qq163.com
|
@@ -79851,7 +79795,6 @@ rambakcor44bwd.ga
|
|
79851
79795
|
rambgarbe.ga
|
79852
79796
|
rambgarbe.gq
|
79853
79797
|
rambgarbe.tk
|
79854
|
-
rambler.ru
|
79855
79798
|
rambotogel.com
|
79856
79799
|
rambutpantene.online
|
79857
79800
|
ramgoformacion.com
|
@@ -80579,7 +80522,6 @@ redhoney.xyz
|
|
80579
80522
|
redhoneypower.com
|
80580
80523
|
redhornet.info
|
80581
80524
|
redhorsegaming.com
|
80582
|
-
rediffmail.com
|
80583
80525
|
rediffmail.net
|
80584
80526
|
redigesso.ru
|
80585
80527
|
redir-ok-igrosoft.ru
|
@@ -82306,7 +82248,6 @@ rocketfuelforyourbrain.rocks
|
|
82306
82248
|
rockethosting.xyz
|
82307
82249
|
rocketleague-team.com
|
82308
82250
|
rocketmail.cf
|
82309
|
-
rocketmail.com
|
82310
82251
|
rocketmail.ga
|
82311
82252
|
rocketmail.gq
|
82312
82253
|
rocketscienceskincare.com
|
@@ -83938,7 +83879,6 @@ safe-buy-cialis.com
|
|
83938
83879
|
safe-file.ru
|
83939
83880
|
safe-mail.ga
|
83940
83881
|
safe-mail.gq
|
83941
|
-
safe-mail.net
|
83942
83882
|
safe-pay.icu
|
83943
83883
|
safe-planet.com
|
83944
83884
|
safe.equipment
|
@@ -84828,7 +84768,6 @@ sb40.icu
|
|
84828
84768
|
sb88.online
|
84829
84769
|
sbash.ru
|
84830
84770
|
sbb89c.com
|
84831
|
-
sbcglobal.net
|
84832
84771
|
sbcplay.club
|
84833
84772
|
sbcplay.org
|
84834
84773
|
sbcpoker.info
|
@@ -86246,7 +86185,6 @@ sforvike.ga
|
|
86246
86185
|
sforvike.ml
|
86247
86186
|
sforvike.tk
|
86248
86187
|
sfpc.de
|
86249
|
-
sfr.fr
|
86250
86188
|
sfrty.ru
|
86251
86189
|
sfsa.de
|
86252
86190
|
sfxmailbox.com
|
@@ -87715,7 +87653,6 @@ sky-isite.com
|
|
87715
87653
|
sky-mail.ga
|
87716
87654
|
sky-movie.com
|
87717
87655
|
sky-ts.de
|
87718
|
-
sky.com
|
87719
87656
|
skyadvert.info
|
87720
87657
|
skybahis.info
|
87721
87658
|
skybahis11.com
|
@@ -87746,7 +87683,6 @@ skymountgovernmentservices.com
|
|
87746
87683
|
skymovieshd.space
|
87747
87684
|
skymovieshd.store
|
87748
87685
|
skyne.be
|
87749
|
-
skynet.be
|
87750
87686
|
skynetfli.xyz
|
87751
87687
|
skynetflix.xyz
|
87752
87688
|
skyoid.xyz
|
@@ -91747,7 +91683,6 @@ symbiote.network
|
|
91747
91683
|
symeil.fun
|
91748
91684
|
symextaustralia.com
|
91749
91685
|
sympathizing615ve.online
|
91750
|
-
sympatico.ca
|
91751
91686
|
symphonyresume.com
|
91752
91687
|
symphouva.gq
|
91753
91688
|
symphouva.ml
|
@@ -91869,7 +91804,6 @@ t-email.org
|
|
91869
91804
|
t-kitchen.online
|
91870
91805
|
t-knife.store
|
91871
91806
|
t-online.co
|
91872
|
-
t-online.de
|
91873
91807
|
t-rexcomfort.ru
|
91874
91808
|
t-s-k.net
|
91875
91809
|
t-shirtcasual.com
|
@@ -93089,7 +93023,6 @@ telekucing.gq
|
|
93089
93023
|
telekucing.ml
|
93090
93024
|
telelogs.net
|
93091
93025
|
telemetricop.com
|
93092
|
-
telenet.be
|
93093
93026
|
teleosaurs.xyz
|
93094
93027
|
telephone-conferencing.com
|
93095
93028
|
telephoneportableoccasion.eu
|
@@ -93397,7 +93330,6 @@ terpesrus.com
|
|
93397
93330
|
terpistick.com
|
93398
93331
|
terra-incognita.co
|
93399
93332
|
terra-real-estate.com
|
93400
|
-
terra.com.br
|
93401
93333
|
terra7.com
|
93402
93334
|
terracash.org
|
93403
93335
|
terrafirmacollective.org
|
@@ -93642,6 +93574,7 @@ texvembterp.ga
|
|
93642
93574
|
texvembterp.gq
|
93643
93575
|
texvembterp.ml
|
93644
93576
|
texvembterp.tk
|
93577
|
+
texwerx.com
|
93645
93578
|
teyostore.xyz
|
93646
93579
|
teypstore.com
|
93647
93580
|
tezdbz8aovezbbcg3.cf
|
@@ -95033,7 +94966,6 @@ timrad.ru
|
|
95033
94966
|
timsautorepair-subaguru.com
|
95034
94967
|
timspeak.ru
|
95035
94968
|
timvieclamnhanh.net
|
95036
|
-
tin.it
|
95037
94969
|
tinbitcoin.net
|
95038
94970
|
tinbitcoin.org
|
95039
94971
|
tincvenmi.gq
|
@@ -95204,8 +95136,6 @@ tirreno.tk
|
|
95204
95136
|
tirsmail.info
|
95205
95137
|
tirthajatra.com
|
95206
95138
|
tirupatitemple.net
|
95207
|
-
tiscali.co.uk
|
95208
|
-
tiscali.it
|
95209
95139
|
tisokoljert.tk
|
95210
95140
|
tisrendvi.cf
|
95211
95141
|
tisrendvi.ml
|
@@ -95854,6 +95784,7 @@ toonfirm.com
|
|
95854
95784
|
toonlawtulsa.com
|
95855
95785
|
toonmoa48.com
|
95856
95786
|
toonusfit.space
|
95787
|
+
toooe.xyz
|
95857
95788
|
toootook.shop
|
95858
95789
|
toopitoo.com
|
95859
95790
|
tooslowtodoanything.com
|
@@ -96493,6 +96424,7 @@ tracanmi.cf
|
|
96493
96424
|
tracanmi.ga
|
96494
96425
|
tracanmi.ml
|
96495
96426
|
tracciabi.li
|
96427
|
+
tracemy.net
|
96496
96428
|
tracenstar.cf
|
96497
96429
|
tracenstar.ga
|
96498
96430
|
tracenstar.gq
|
@@ -97834,7 +97766,6 @@ tutadox.online
|
|
97834
97766
|
tutadox.site
|
97835
97767
|
tutadox.store
|
97836
97768
|
tutadox.tech
|
97837
|
-
tutanota.com
|
97838
97769
|
tutckc.site
|
97839
97770
|
tutela-adultos.info
|
97840
97771
|
tuthit.com
|
@@ -100886,7 +100817,6 @@ verissl.com
|
|
100886
100817
|
veritybusinesscenter.pl
|
100887
100818
|
veriyaz.com
|
100888
100819
|
veriyaz.net
|
100889
|
-
verizon.net
|
100890
100820
|
verizondw.com
|
100891
100821
|
verkaufsstelle24.de
|
100892
100822
|
verkopenviabol.shop
|
@@ -101655,7 +101585,6 @@ vireopartners.com
|
|
101655
101585
|
virgilbunaophotography.com
|
101656
101586
|
virgilio.ga
|
101657
101587
|
virgilio.gq
|
101658
|
-
virgilio.it
|
101659
101588
|
virgilio.ml
|
101660
101589
|
virgiliomail.cf
|
101661
101590
|
virgiliomail.ga
|
@@ -102081,7 +102010,6 @@ voidbay.com
|
|
102081
102010
|
voided.host
|
102082
102011
|
voikaserd.ga
|
102083
102012
|
voikskrant.online
|
102084
|
-
voila.fr
|
102085
102013
|
voilans.com
|
102086
102014
|
voip-torg.ru
|
102087
102015
|
voip3.ru
|
@@ -102218,6 +102146,7 @@ vorarlberg.dev
|
|
102218
102146
|
vorga.org
|
102219
102147
|
vorimo.ru
|
102220
102148
|
voron-kryuk.ru
|
102149
|
+
voron.plus
|
102221
102150
|
voronkryuk.ru
|
102222
102151
|
vorply.com
|
102223
102152
|
vorpostport.cf
|
@@ -103074,7 +103003,6 @@ wam-blog8.site
|
|
103074
103003
|
wamdabiz.com
|
103075
103004
|
wampsetupserver.com
|
103076
103005
|
wanadoo.com
|
103077
|
-
wanadoo.fr
|
103078
103006
|
wanari.info
|
103079
103007
|
wander.love
|
103080
103008
|
wanderdszx.site
|
@@ -103556,7 +103484,6 @@ web-site-sale.ru
|
|
103556
103484
|
web-sites-sale.ru
|
103557
103485
|
web-solution.shop
|
103558
103486
|
web-wingmen.com
|
103559
|
-
web.de
|
103560
103487
|
web2mailco.com
|
103561
103488
|
web2rss.com
|
103562
103489
|
web2web.bid
|
@@ -104670,7 +104597,6 @@ windscribeindir.com
|
|
104670
104597
|
windscriber.com
|
104671
104598
|
windshieldrepairtech.com
|
104672
104599
|
windsorrealestateagents.com
|
104673
|
-
windstream.net
|
104674
104600
|
windsurfingintotheunknown.com
|
104675
104601
|
windycityui.com
|
104676
104602
|
windykacjawpraktyce.pl
|
@@ -108260,22 +108186,6 @@ yahomail.gdn
|
|
108260
108186
|
yahomail.top
|
108261
108187
|
yahoo-mail.ga
|
108262
108188
|
yahoo-team.org
|
108263
|
-
yahoo.ca
|
108264
|
-
yahoo.co.id
|
108265
|
-
yahoo.co.in
|
108266
|
-
yahoo.co.jp
|
108267
|
-
yahoo.co.uk
|
108268
|
-
yahoo.com
|
108269
|
-
yahoo.com.ar
|
108270
|
-
yahoo.com.au
|
108271
|
-
yahoo.com.br
|
108272
|
-
yahoo.com.mx
|
108273
|
-
yahoo.com.sg
|
108274
|
-
yahoo.de
|
108275
|
-
yahoo.es
|
108276
|
-
yahoo.fr
|
108277
|
-
yahoo.in
|
108278
|
-
yahoo.it
|
108279
108189
|
yahoo.us
|
108280
108190
|
yahoodashtrick.com
|
108281
108191
|
yahooi.aol
|
@@ -108341,11 +108251,7 @@ yandex-mail.ml
|
|
108341
108251
|
yandex-mail.tk
|
108342
108252
|
yandex-prosto.ru
|
108343
108253
|
yandex-vladimir.ru
|
108344
|
-
yandex.by
|
108345
108254
|
yandex.ca
|
108346
|
-
yandex.com
|
108347
|
-
yandex.net
|
108348
|
-
yandex.ru
|
108349
108255
|
yandexdrive.pro
|
108350
108256
|
yandexmail.cf
|
108351
108257
|
yandexmail.ga
|
@@ -108875,7 +108781,6 @@ ylyangsheng.com
|
|
108875
108781
|
ylztst.site
|
108876
108782
|
ym9.app
|
108877
108783
|
ymai.com
|
108878
|
-
ymail.com
|
108879
108784
|
ymail.edu
|
108880
108785
|
ymail.net
|
108881
108786
|
ymail.org
|
@@ -110504,7 +110409,6 @@ zipbox.info
|
|
110504
110409
|
zipcad.com
|
110505
110410
|
ziplinegear.biz
|
110506
110411
|
ziplinehuntermountain.com
|
110507
|
-
zipmail.com.br
|
110508
110412
|
zipmail.xyz
|
110509
110413
|
zipo1.cf
|
110510
110414
|
zipo1.ga
|
@@ -110728,7 +110632,6 @@ zoetropes.org
|
|
110728
110632
|
zoevaofficial.online
|
110729
110633
|
zoevaofficial.ru
|
110730
110634
|
zogavm.ru
|
110731
|
-
zohomail.com
|
110732
110635
|
zoidberg.ninja
|
110733
110636
|
zoknseybm.shop
|
110734
110637
|
zolaemporium.site
|
@@ -110767,7 +110670,6 @@ zongbopay1577.com
|
|
110767
110670
|
zongbopay2100.com
|
110768
110671
|
zonguldakgundem.xyz
|
110769
110672
|
zonland.ru
|
110770
|
-
zonnet.nl
|
110771
110673
|
zonsurvey.xyz
|
110772
110674
|
zontero.top
|
110773
110675
|
zoo-chat.ru
|
data/email_data.gemspec
CHANGED
@@ -8,7 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["Nando Vieira"]
|
9
9
|
spec.email = ["me@fnando.com"]
|
10
10
|
|
11
|
-
spec.summary = "
|
11
|
+
spec.summary = "This project is a compilation of datasets related to " \
|
12
|
+
"emails. Includes disposable emails, disposable " \
|
13
|
+
"domains, and free email services."
|
12
14
|
spec.description = spec.summary
|
13
15
|
spec.homepage = "https://github.com/fnando/email_data"
|
14
16
|
spec.license = "MIT"
|
@@ -27,6 +29,8 @@ Gem::Specification.new do |spec|
|
|
27
29
|
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
|
28
30
|
spec.require_paths = ["lib"]
|
29
31
|
|
32
|
+
spec.add_development_dependency "activesupport"
|
33
|
+
spec.add_development_dependency "aitch"
|
30
34
|
spec.add_development_dependency "bundler"
|
31
35
|
spec.add_development_dependency "minitest"
|
32
36
|
spec.add_development_dependency "minitest-utils"
|
data/package.json
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "@fnando/email_data",
|
3
|
+
"description": "This project is a compilation of datasets related to emails. Includes disposable emails, disposable domains, and free email services.",
|
4
|
+
"version": "1601260789.0.0",
|
5
|
+
"license": "MIT",
|
6
|
+
"repository": {
|
7
|
+
"type": "git",
|
8
|
+
"url": "https://github.com/fnando/email_data.git"
|
9
|
+
},
|
10
|
+
"homepage": "https://github.com/fnando/email_data",
|
11
|
+
"author": "Nando Vieira <me@fnando.com>",
|
12
|
+
"files": [
|
13
|
+
"package.json",
|
14
|
+
"README.md",
|
15
|
+
"LICENSE.txt",
|
16
|
+
"data/json/**/*.json"
|
17
|
+
]
|
18
|
+
}
|
metadata
CHANGED
@@ -1,15 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: email_data
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '1601260789'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nando Vieira
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-09-
|
11
|
+
date: 2020-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: aitch
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
13
41
|
- !ruby/object:Gem::Dependency
|
14
42
|
name: bundler
|
15
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,7 +150,8 @@ dependencies:
|
|
122
150
|
- - ">="
|
123
151
|
- !ruby/object:Gem::Version
|
124
152
|
version: '0'
|
125
|
-
description:
|
153
|
+
description: This project is a compilation of datasets related to emails. Includes
|
154
|
+
disposable emails, disposable domains, and free email services.
|
126
155
|
email:
|
127
156
|
- me@fnando.com
|
128
157
|
executables: []
|
@@ -132,6 +161,7 @@ files:
|
|
132
161
|
- ".github/FUNDING.yml"
|
133
162
|
- ".gitignore"
|
134
163
|
- ".rubocop.yml"
|
164
|
+
- ".tool-versions"
|
135
165
|
- ".travis.yml"
|
136
166
|
- CODE_OF_CONDUCT.md
|
137
167
|
- Gemfile
|
@@ -141,7 +171,9 @@ files:
|
|
141
171
|
- VERSION
|
142
172
|
- bin/console
|
143
173
|
- bin/helpers.rb
|
174
|
+
- bin/publish
|
144
175
|
- bin/publish-gem
|
176
|
+
- bin/publish-npm
|
145
177
|
- bin/setup
|
146
178
|
- bin/sync
|
147
179
|
- bin/sync-disposable-emails
|
@@ -158,6 +190,7 @@ files:
|
|
158
190
|
- email_data.gemspec
|
159
191
|
- lib/email_data.rb
|
160
192
|
- lib/email_data/version.rb
|
193
|
+
- package.json
|
161
194
|
homepage: https://github.com/fnando/email_data
|
162
195
|
licenses:
|
163
196
|
- MIT
|
@@ -182,5 +215,6 @@ requirements: []
|
|
182
215
|
rubygems_version: 3.1.2
|
183
216
|
signing_key:
|
184
217
|
specification_version: 4
|
185
|
-
summary:
|
218
|
+
summary: This project is a compilation of datasets related to emails. Includes disposable
|
219
|
+
emails, disposable domains, and free email services.
|
186
220
|
test_files: []
|