email-disposable 1.0.2 → 1.0.4
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.
- package/LICENSE +20 -20
- package/disposable.json +208452 -117112
- package/disposable.txt +208452 -117112
- package/index.js +29 -29
- package/package.json +48 -45
- package/src/config/blacklist.js +458 -458
- package/src/config/sources.js +70 -70
- package/src/config/whitelist.js +185 -185
- package/src/fetch.js +117 -71
package/src/config/sources.js
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export const sources = [
|
|
2
|
-
{
|
|
3
|
-
url: "https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/refs/heads/main/disposable_email_blocklist.conf",
|
|
4
|
-
parser: "text"
|
|
5
|
-
},
|
|
6
|
-
{
|
|
7
|
-
url: "https://raw.githubusercontent.com/TempMailDetector/Temporary-Email-Domain-Blocklist/refs/heads/main/domains.txt",
|
|
8
|
-
parser: "text"
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
url: "https://gist.githubusercontent.com/adamloving/4401361/raw/e81212c3caecb54b87ced6392e0a0de2b6466287/temporary-email-address-domains",
|
|
12
|
-
parser: "text"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
url: "https://gist.githubusercontent.com/jamesonev/7e188c35fd5ca754c970e3a1caf045ef/raw/9ee7a249c2287c19cb7a31127fd4c82c56f6463f/disposableEmailDomains.txt",
|
|
16
|
-
parser: "text"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
url: "https://raw.githubusercontent.com/GeroldSetz/emailondeck.com-domains/refs/heads/master/emailondeck.com_domains_from_bdea.cc.txt",
|
|
20
|
-
parser: "text"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
url: "https://raw.githubusercontent.com/disposable/static-disposable-lists/refs/heads/master/mailservices.json",
|
|
24
|
-
parser: "json-hosts"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
url: "https://raw.githubusercontent.com/Propaganistas/Laravel-Disposable-Email/refs/heads/master/domains.json",
|
|
28
|
-
parser: "json"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
url: "https://raw.githubusercontent.com/wesbos/burner-email-providers/refs/heads/master/emails.txt",
|
|
32
|
-
parser: "text"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
url: "https://raw.githubusercontent.com/disposable/disposable-email-domains/master/domains.txt",
|
|
36
|
-
parser: "text"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
url: "https://raw.githubusercontent.com/unkn0w/disposable-email-domain-list/refs/heads/main/domains.txt",
|
|
40
|
-
parser: "text"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
url: "https://raw.githubusercontent.com/tompec/disposable-email-domains/refs/heads/main/
|
|
44
|
-
parser: "json"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
url: "https://raw.githubusercontent.com/flotwig/disposable-email-addresses/refs/heads/master/domains.txt",
|
|
48
|
-
parser: "text"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
url: "https://raw.githubusercontent.com/7c/fakefilter/refs/heads/main/txt/data.txt",
|
|
52
|
-
parser: "text"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
url: "https://
|
|
56
|
-
parser: "text"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
url: "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt",
|
|
60
|
-
parser: "text"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
url: "https://raw.githubusercontent.com/FGRibreau/mailchecker/refs/heads/master/list.txt",
|
|
64
|
-
parser: "text"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
url: "https://disify.com/blacklist/domains",
|
|
68
|
-
parser: "text"
|
|
69
|
-
}
|
|
70
|
-
]
|
|
1
|
+
export const sources = [
|
|
2
|
+
{
|
|
3
|
+
url: "https://raw.githubusercontent.com/disposable-email-domains/disposable-email-domains/refs/heads/main/disposable_email_blocklist.conf",
|
|
4
|
+
parser: "text"
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
url: "https://raw.githubusercontent.com/TempMailDetector/Temporary-Email-Domain-Blocklist/refs/heads/main/domains.txt",
|
|
8
|
+
parser: "text"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
url: "https://gist.githubusercontent.com/adamloving/4401361/raw/e81212c3caecb54b87ced6392e0a0de2b6466287/temporary-email-address-domains",
|
|
12
|
+
parser: "text"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
url: "https://gist.githubusercontent.com/jamesonev/7e188c35fd5ca754c970e3a1caf045ef/raw/9ee7a249c2287c19cb7a31127fd4c82c56f6463f/disposableEmailDomains.txt",
|
|
16
|
+
parser: "text"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
url: "https://raw.githubusercontent.com/GeroldSetz/emailondeck.com-domains/refs/heads/master/emailondeck.com_domains_from_bdea.cc.txt",
|
|
20
|
+
parser: "text"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
url: "https://raw.githubusercontent.com/disposable/static-disposable-lists/refs/heads/master/mailservices.json",
|
|
24
|
+
parser: "json-hosts"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
url: "https://raw.githubusercontent.com/Propaganistas/Laravel-Disposable-Email/refs/heads/master/domains.json",
|
|
28
|
+
parser: "json"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
url: "https://raw.githubusercontent.com/wesbos/burner-email-providers/refs/heads/master/emails.txt",
|
|
32
|
+
parser: "text"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
url: "https://raw.githubusercontent.com/disposable/disposable-email-domains/master/domains.txt",
|
|
36
|
+
parser: "text"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
url: "https://raw.githubusercontent.com/unkn0w/disposable-email-domain-list/refs/heads/main/domains.txt",
|
|
40
|
+
parser: "text"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
url: "https://raw.githubusercontent.com/tompec/disposable-email-domains/refs/heads/main/index.json",
|
|
44
|
+
parser: "json"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
url: "https://raw.githubusercontent.com/flotwig/disposable-email-addresses/refs/heads/master/domains.txt",
|
|
48
|
+
parser: "text"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
url: "https://raw.githubusercontent.com/7c/fakefilter/refs/heads/main/txt/data.txt",
|
|
52
|
+
parser: "text"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
url: "https://raw.githubusercontent.com/daisy1754/jp-disposable-emails/master/list.txt",
|
|
56
|
+
parser: "text"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
url: "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt",
|
|
60
|
+
parser: "text"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
url: "https://raw.githubusercontent.com/FGRibreau/mailchecker/refs/heads/master/list.txt",
|
|
64
|
+
parser: "text"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
url: "https://disify.com/blacklist/domains",
|
|
68
|
+
parser: "text"
|
|
69
|
+
}
|
|
70
|
+
]
|
package/src/config/whitelist.js
CHANGED
|
@@ -1,186 +1,186 @@
|
|
|
1
|
-
export const whitelist = [
|
|
2
|
-
"123mail.org",
|
|
3
|
-
"126.com",
|
|
4
|
-
"139.com",
|
|
5
|
-
"150mail.com",
|
|
6
|
-
"150ml.com",
|
|
7
|
-
"163.com",
|
|
8
|
-
"16mail.com",
|
|
9
|
-
"2-mail.com",
|
|
10
|
-
"420blaze.it",
|
|
11
|
-
"4email.net",
|
|
12
|
-
"50mail.com",
|
|
13
|
-
"8chan.co",
|
|
14
|
-
"gmail.com",
|
|
15
|
-
"googlemail.com",
|
|
16
|
-
"aaathats3as.com",
|
|
17
|
-
"airmail.cc",
|
|
18
|
-
"airpost.net",
|
|
19
|
-
"allmail.net",
|
|
20
|
-
"antichef.com",
|
|
21
|
-
"antichef.net",
|
|
22
|
-
"bestmail.us",
|
|
23
|
-
"bluewin.ch",
|
|
24
|
-
"c2.hu",
|
|
25
|
-
"cluemail.com",
|
|
26
|
-
"cocaine.ninja",
|
|
27
|
-
"cock.email",
|
|
28
|
-
"cock.li",
|
|
29
|
-
"cock.lu",
|
|
30
|
-
"cumallover.me",
|
|
31
|
-
"dfgh.net",
|
|
32
|
-
"dicksinhisan.us",
|
|
33
|
-
"dicksinmyan.us",
|
|
34
|
-
"elitemail.org",
|
|
35
|
-
"emailcorner.net",
|
|
36
|
-
"emailengine.net",
|
|
37
|
-
"emailengine.org",
|
|
38
|
-
"emailgroups.net",
|
|
39
|
-
"emailplus.org",
|
|
40
|
-
"emailuser.net",
|
|
41
|
-
"eml.cc",
|
|
42
|
-
"f-m.fm",
|
|
43
|
-
"fast-email.com",
|
|
44
|
-
"fast-mail.org",
|
|
45
|
-
"fastem.com",
|
|
46
|
-
"fastemail.us",
|
|
47
|
-
"fastemailer.com",
|
|
48
|
-
"fastest.cc",
|
|
49
|
-
"fastimap.com",
|
|
50
|
-
"fastmail.cn",
|
|
51
|
-
"fastmail.co.uk",
|
|
52
|
-
"fastmail.com",
|
|
53
|
-
"fastmail.com.au",
|
|
54
|
-
"fastmail.es",
|
|
55
|
-
"fastmail.fm",
|
|
56
|
-
"fastmail.im",
|
|
57
|
-
"fastmail.in",
|
|
58
|
-
"fastmail.jp",
|
|
59
|
-
"fastmail.mx",
|
|
60
|
-
"fastmail.net",
|
|
61
|
-
"fastmail.nl",
|
|
62
|
-
"fastmail.se",
|
|
63
|
-
"fastmail.to",
|
|
64
|
-
"fastmail.tw",
|
|
65
|
-
"fastmail.uk",
|
|
66
|
-
"fastmail.us",
|
|
67
|
-
"fastmailbox.net",
|
|
68
|
-
"fastmessaging.com",
|
|
69
|
-
"fea.st",
|
|
70
|
-
"firemail.cc",
|
|
71
|
-
"fmail.co.uk",
|
|
72
|
-
"fmailbox.com",
|
|
73
|
-
"fmgirl.com",
|
|
74
|
-
"fmguy.com",
|
|
75
|
-
"freemail.hu",
|
|
76
|
-
"ftml.net",
|
|
77
|
-
"getbackinthe.kitchen",
|
|
78
|
-
"gmx.com",
|
|
79
|
-
"gmx.us",
|
|
80
|
-
"goat.si",
|
|
81
|
-
"h-mail.us",
|
|
82
|
-
"hailmail.net",
|
|
83
|
-
"hitler.rocks",
|
|
84
|
-
"horsefucker.org",
|
|
85
|
-
"hush.ai",
|
|
86
|
-
"hush.com",
|
|
87
|
-
"hushmail.com",
|
|
88
|
-
"hushmail.me",
|
|
89
|
-
"imap-mail.com",
|
|
90
|
-
"imap.cc",
|
|
91
|
-
"imapmail.org",
|
|
92
|
-
"inoutbox.com",
|
|
93
|
-
"internet-e-mail.com",
|
|
94
|
-
"internet-mail.org",
|
|
95
|
-
"internetemails.net",
|
|
96
|
-
"internetmailing.net",
|
|
97
|
-
"jetemail.net",
|
|
98
|
-
"justemail.net",
|
|
99
|
-
"kakao.com",
|
|
100
|
-
"letterboxes.org",
|
|
101
|
-
"liamekaens.com",
|
|
102
|
-
"mail-central.com",
|
|
103
|
-
"mail-page.com",
|
|
104
|
-
"mail2world.com",
|
|
105
|
-
"mailandftp.com",
|
|
106
|
-
"mailas.com",
|
|
107
|
-
"mailbolt.com",
|
|
108
|
-
"mailc.net",
|
|
109
|
-
"mailcan.com",
|
|
110
|
-
"mailforce.net",
|
|
111
|
-
"mailftp.com",
|
|
112
|
-
"mailhaven.com",
|
|
113
|
-
"mailingaddress.org",
|
|
114
|
-
"mailite.com",
|
|
115
|
-
"mailmight.com",
|
|
116
|
-
"mailnew.com",
|
|
117
|
-
"mailsent.net",
|
|
118
|
-
"mailservice.ms",
|
|
119
|
-
"mailup.net",
|
|
120
|
-
"mailworks.org",
|
|
121
|
-
"memeware.net",
|
|
122
|
-
"ml1.net",
|
|
123
|
-
"mm.st",
|
|
124
|
-
"mozmail.com",
|
|
125
|
-
"myfastmail.com",
|
|
126
|
-
"mymacmail.com",
|
|
127
|
-
"naver.com",
|
|
128
|
-
"neverbox.com",
|
|
129
|
-
"nigge.rs",
|
|
130
|
-
"nospammail.net",
|
|
131
|
-
"nus.edu.sg",
|
|
132
|
-
"onet.pl",
|
|
133
|
-
"ownmail.net",
|
|
134
|
-
"petml.com",
|
|
135
|
-
"postinbox.com",
|
|
136
|
-
"postpro.net",
|
|
137
|
-
"proinbox.com",
|
|
138
|
-
"promessage.com",
|
|
139
|
-
"qq.com",
|
|
140
|
-
"realemail.net",
|
|
141
|
-
"reallyfast.biz",
|
|
142
|
-
"reallyfast.info",
|
|
143
|
-
"recursor.net",
|
|
144
|
-
"redchan.it",
|
|
145
|
-
"ruffrey.com",
|
|
146
|
-
"rushpost.com",
|
|
147
|
-
"safe-mail.net",
|
|
148
|
-
"sent.as",
|
|
149
|
-
"sent.at",
|
|
150
|
-
"sent.com",
|
|
151
|
-
"shitposting.agency",
|
|
152
|
-
"shitware.nl",
|
|
153
|
-
"sibmail.com",
|
|
154
|
-
"sneakemail.com",
|
|
155
|
-
"snkmail.com",
|
|
156
|
-
"snkml.com",
|
|
157
|
-
"spamcannon.com",
|
|
158
|
-
"spamcannon.net",
|
|
159
|
-
"spamgourmet.com",
|
|
160
|
-
"spamgourmet.net",
|
|
161
|
-
"spamgourmet.org",
|
|
162
|
-
"speedpost.net",
|
|
163
|
-
"speedymail.org",
|
|
164
|
-
"ssl-mail.com",
|
|
165
|
-
"swift-mail.com",
|
|
166
|
-
"tfwno.gf",
|
|
167
|
-
"the-fastest.net",
|
|
168
|
-
"the-quickest.com",
|
|
169
|
-
"theinternetemail.com",
|
|
170
|
-
"tweakly.net",
|
|
171
|
-
"veryfast.biz",
|
|
172
|
-
"veryspeedy.net",
|
|
173
|
-
"waifu.club",
|
|
174
|
-
"warpmail.net",
|
|
175
|
-
"xoxy.net",
|
|
176
|
-
"xwaretech.com",
|
|
177
|
-
"xwaretech.info",
|
|
178
|
-
"xwaretech.net",
|
|
179
|
-
"xsmail.com",
|
|
180
|
-
"yahoo.com.ph",
|
|
181
|
-
"yahoo.com.vn",
|
|
182
|
-
"yeah.net",
|
|
183
|
-
"yepmail.net",
|
|
184
|
-
"your-mail.com",
|
|
185
|
-
"yahoo.us"
|
|
1
|
+
export const whitelist = [
|
|
2
|
+
"123mail.org",
|
|
3
|
+
"126.com",
|
|
4
|
+
"139.com",
|
|
5
|
+
"150mail.com",
|
|
6
|
+
"150ml.com",
|
|
7
|
+
"163.com",
|
|
8
|
+
"16mail.com",
|
|
9
|
+
"2-mail.com",
|
|
10
|
+
"420blaze.it",
|
|
11
|
+
"4email.net",
|
|
12
|
+
"50mail.com",
|
|
13
|
+
"8chan.co",
|
|
14
|
+
"gmail.com",
|
|
15
|
+
"googlemail.com",
|
|
16
|
+
"aaathats3as.com",
|
|
17
|
+
"airmail.cc",
|
|
18
|
+
"airpost.net",
|
|
19
|
+
"allmail.net",
|
|
20
|
+
"antichef.com",
|
|
21
|
+
"antichef.net",
|
|
22
|
+
"bestmail.us",
|
|
23
|
+
"bluewin.ch",
|
|
24
|
+
"c2.hu",
|
|
25
|
+
"cluemail.com",
|
|
26
|
+
"cocaine.ninja",
|
|
27
|
+
"cock.email",
|
|
28
|
+
"cock.li",
|
|
29
|
+
"cock.lu",
|
|
30
|
+
"cumallover.me",
|
|
31
|
+
"dfgh.net",
|
|
32
|
+
"dicksinhisan.us",
|
|
33
|
+
"dicksinmyan.us",
|
|
34
|
+
"elitemail.org",
|
|
35
|
+
"emailcorner.net",
|
|
36
|
+
"emailengine.net",
|
|
37
|
+
"emailengine.org",
|
|
38
|
+
"emailgroups.net",
|
|
39
|
+
"emailplus.org",
|
|
40
|
+
"emailuser.net",
|
|
41
|
+
"eml.cc",
|
|
42
|
+
"f-m.fm",
|
|
43
|
+
"fast-email.com",
|
|
44
|
+
"fast-mail.org",
|
|
45
|
+
"fastem.com",
|
|
46
|
+
"fastemail.us",
|
|
47
|
+
"fastemailer.com",
|
|
48
|
+
"fastest.cc",
|
|
49
|
+
"fastimap.com",
|
|
50
|
+
"fastmail.cn",
|
|
51
|
+
"fastmail.co.uk",
|
|
52
|
+
"fastmail.com",
|
|
53
|
+
"fastmail.com.au",
|
|
54
|
+
"fastmail.es",
|
|
55
|
+
"fastmail.fm",
|
|
56
|
+
"fastmail.im",
|
|
57
|
+
"fastmail.in",
|
|
58
|
+
"fastmail.jp",
|
|
59
|
+
"fastmail.mx",
|
|
60
|
+
"fastmail.net",
|
|
61
|
+
"fastmail.nl",
|
|
62
|
+
"fastmail.se",
|
|
63
|
+
"fastmail.to",
|
|
64
|
+
"fastmail.tw",
|
|
65
|
+
"fastmail.uk",
|
|
66
|
+
"fastmail.us",
|
|
67
|
+
"fastmailbox.net",
|
|
68
|
+
"fastmessaging.com",
|
|
69
|
+
"fea.st",
|
|
70
|
+
"firemail.cc",
|
|
71
|
+
"fmail.co.uk",
|
|
72
|
+
"fmailbox.com",
|
|
73
|
+
"fmgirl.com",
|
|
74
|
+
"fmguy.com",
|
|
75
|
+
"freemail.hu",
|
|
76
|
+
"ftml.net",
|
|
77
|
+
"getbackinthe.kitchen",
|
|
78
|
+
"gmx.com",
|
|
79
|
+
"gmx.us",
|
|
80
|
+
"goat.si",
|
|
81
|
+
"h-mail.us",
|
|
82
|
+
"hailmail.net",
|
|
83
|
+
"hitler.rocks",
|
|
84
|
+
"horsefucker.org",
|
|
85
|
+
"hush.ai",
|
|
86
|
+
"hush.com",
|
|
87
|
+
"hushmail.com",
|
|
88
|
+
"hushmail.me",
|
|
89
|
+
"imap-mail.com",
|
|
90
|
+
"imap.cc",
|
|
91
|
+
"imapmail.org",
|
|
92
|
+
"inoutbox.com",
|
|
93
|
+
"internet-e-mail.com",
|
|
94
|
+
"internet-mail.org",
|
|
95
|
+
"internetemails.net",
|
|
96
|
+
"internetmailing.net",
|
|
97
|
+
"jetemail.net",
|
|
98
|
+
"justemail.net",
|
|
99
|
+
"kakao.com",
|
|
100
|
+
"letterboxes.org",
|
|
101
|
+
"liamekaens.com",
|
|
102
|
+
"mail-central.com",
|
|
103
|
+
"mail-page.com",
|
|
104
|
+
"mail2world.com",
|
|
105
|
+
"mailandftp.com",
|
|
106
|
+
"mailas.com",
|
|
107
|
+
"mailbolt.com",
|
|
108
|
+
"mailc.net",
|
|
109
|
+
"mailcan.com",
|
|
110
|
+
"mailforce.net",
|
|
111
|
+
"mailftp.com",
|
|
112
|
+
"mailhaven.com",
|
|
113
|
+
"mailingaddress.org",
|
|
114
|
+
"mailite.com",
|
|
115
|
+
"mailmight.com",
|
|
116
|
+
"mailnew.com",
|
|
117
|
+
"mailsent.net",
|
|
118
|
+
"mailservice.ms",
|
|
119
|
+
"mailup.net",
|
|
120
|
+
"mailworks.org",
|
|
121
|
+
"memeware.net",
|
|
122
|
+
"ml1.net",
|
|
123
|
+
"mm.st",
|
|
124
|
+
"mozmail.com",
|
|
125
|
+
"myfastmail.com",
|
|
126
|
+
"mymacmail.com",
|
|
127
|
+
"naver.com",
|
|
128
|
+
"neverbox.com",
|
|
129
|
+
"nigge.rs",
|
|
130
|
+
"nospammail.net",
|
|
131
|
+
"nus.edu.sg",
|
|
132
|
+
"onet.pl",
|
|
133
|
+
"ownmail.net",
|
|
134
|
+
"petml.com",
|
|
135
|
+
"postinbox.com",
|
|
136
|
+
"postpro.net",
|
|
137
|
+
"proinbox.com",
|
|
138
|
+
"promessage.com",
|
|
139
|
+
"qq.com",
|
|
140
|
+
"realemail.net",
|
|
141
|
+
"reallyfast.biz",
|
|
142
|
+
"reallyfast.info",
|
|
143
|
+
"recursor.net",
|
|
144
|
+
"redchan.it",
|
|
145
|
+
"ruffrey.com",
|
|
146
|
+
"rushpost.com",
|
|
147
|
+
"safe-mail.net",
|
|
148
|
+
"sent.as",
|
|
149
|
+
"sent.at",
|
|
150
|
+
"sent.com",
|
|
151
|
+
"shitposting.agency",
|
|
152
|
+
"shitware.nl",
|
|
153
|
+
"sibmail.com",
|
|
154
|
+
"sneakemail.com",
|
|
155
|
+
"snkmail.com",
|
|
156
|
+
"snkml.com",
|
|
157
|
+
"spamcannon.com",
|
|
158
|
+
"spamcannon.net",
|
|
159
|
+
"spamgourmet.com",
|
|
160
|
+
"spamgourmet.net",
|
|
161
|
+
"spamgourmet.org",
|
|
162
|
+
"speedpost.net",
|
|
163
|
+
"speedymail.org",
|
|
164
|
+
"ssl-mail.com",
|
|
165
|
+
"swift-mail.com",
|
|
166
|
+
"tfwno.gf",
|
|
167
|
+
"the-fastest.net",
|
|
168
|
+
"the-quickest.com",
|
|
169
|
+
"theinternetemail.com",
|
|
170
|
+
"tweakly.net",
|
|
171
|
+
"veryfast.biz",
|
|
172
|
+
"veryspeedy.net",
|
|
173
|
+
"waifu.club",
|
|
174
|
+
"warpmail.net",
|
|
175
|
+
"xoxy.net",
|
|
176
|
+
"xwaretech.com",
|
|
177
|
+
"xwaretech.info",
|
|
178
|
+
"xwaretech.net",
|
|
179
|
+
"xsmail.com",
|
|
180
|
+
"yahoo.com.ph",
|
|
181
|
+
"yahoo.com.vn",
|
|
182
|
+
"yeah.net",
|
|
183
|
+
"yepmail.net",
|
|
184
|
+
"your-mail.com",
|
|
185
|
+
"yahoo.us"
|
|
186
186
|
]
|