1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* IsBizMail tells you whether a given email address |
4
|
|
|
* is free e.g. gmail.com, yahoo.es, yandex.ru etc or not. |
5
|
|
|
* The list of emails used by IsBizMail is taken from here: |
6
|
|
|
* http://svn.apache.org/repos/asf/spamassassin/trunk/rules/20_freemail_domains.cf |
7
|
|
|
* All credits for the list itself go to SpamAssasin authors and contributors |
8
|
|
|
* |
9
|
|
|
* @category PHPUnit |
10
|
|
|
* @package IsBizMail |
11
|
|
|
* @author Zhmayev Yaroslav <[email protected]> |
12
|
|
|
* @license MIT https://opensource.org/licenses/MIT |
13
|
|
|
* @link https://github.com/salaros/free-mailchecker |
14
|
|
|
*/ |
15
|
|
|
|
16
|
|
|
namespace Salaros\Email; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Tells you whether a given email address is free or not |
20
|
|
|
*/ |
21
|
|
|
class IsBizMail |
22
|
|
|
{ |
23
|
|
|
private static $freeMailDomains; |
24
|
|
|
private static $freeMailPatterns; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Tells you if a given email is valid in terms of structure |
28
|
|
|
* and if it does not belong to one of known free mail box providers |
29
|
|
|
* |
30
|
|
|
* @param string $email Email address |
31
|
|
|
* |
32
|
|
|
* @return bool |
33
|
|
|
*/ |
34
|
6 |
|
public function isValid($email) |
35
|
|
|
{ |
36
|
6 |
|
if (false === filter_var($email, FILTER_VALIDATE_EMAIL)) { |
37
|
|
|
return false; |
38
|
|
|
} |
39
|
|
|
|
40
|
6 |
|
return (isset($this) && $this instanceof self) |
41
|
6 |
|
? !$this->isFreeMailAddress($email) |
42
|
6 |
|
: !self::isFreeMailAddress($email); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Returns true if a given email belong to one of known free mail box providers |
47
|
|
|
* |
48
|
|
|
* @param string $email Email address |
49
|
|
|
* |
50
|
|
|
* @return bool |
51
|
|
|
*/ |
52
|
44 |
|
public function isFreeMailAddress($email) |
53
|
|
|
{ |
54
|
44 |
|
$parts = explode("@", $email); |
55
|
44 |
|
$emailDomain = strtolower(end($parts)); |
56
|
|
|
|
57
|
44 |
|
if (empty($emailDomain)) { |
58
|
|
|
throw new \InvalidArgumentException("You have supplied an invalid email address"); |
59
|
|
|
} |
60
|
|
|
|
61
|
44 |
|
if (false !== stripos($emailDomain, '*')) { |
62
|
|
|
throw new \InvalidArgumentException( |
63
|
|
|
sprintf( |
64
|
|
|
"Domain part of the the following email contains a wildcard, which is not allowed: '%s'", |
65
|
|
|
$email |
66
|
|
|
) |
67
|
|
|
); |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
// Check if the giveb domain is among known free providers |
71
|
44 |
|
if (in_array($emailDomain, self::getFreeDomains())) { |
|
|
|
|
72
|
26 |
|
return true; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
// Check if patterns match the given domain |
76
|
18 |
|
foreach (self::getFreeDomainPatterns() as $pattern) { |
|
|
|
|
77
|
18 |
|
if (fnmatch($pattern, $emailDomain)) { |
78
|
15 |
|
return true; |
79
|
|
|
} |
80
|
8 |
|
} |
81
|
|
|
|
82
|
6 |
|
return false; |
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
/** |
86
|
|
|
* Gets the list of all known free mail box providers |
87
|
|
|
* @codeCoverageIgnore |
88
|
|
|
* |
89
|
|
|
* @return array |
90
|
|
|
*/ |
91
|
|
|
public function getFreeDomains() |
92
|
|
|
{ |
93
|
|
|
if (is_null(self::$freeMailDomains)) { |
94
|
|
|
self::init(); |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
return self::$freeMailDomains; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
/** |
101
|
|
|
* Gets the list of wildcards matching some free mail box providers |
102
|
|
|
* @codeCoverageIgnore |
103
|
|
|
* |
104
|
|
|
* @return array |
105
|
|
|
*/ |
106
|
|
|
public function getFreeDomainPatterns() |
107
|
|
|
{ |
108
|
|
|
if (is_null(self::$freeMailPatterns)) { |
109
|
|
|
self::init(); |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
return self::$freeMailPatterns; |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
/** |
116
|
|
|
* Initializes the array of known free email domains |
117
|
|
|
* contains both full domains and widlcards |
118
|
|
|
* |
119
|
|
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength) |
120
|
|
|
* @codeCoverageIgnore |
121
|
|
|
* |
122
|
|
|
* @return void |
123
|
|
|
*/ |
124
|
|
|
public static function init() |
125
|
|
|
{ |
126
|
|
|
// phpcs:disable Generic.Files.LineLength |
127
|
|
|
self::$freeMailPatterns = array( |
128
|
|
|
// free email patterns start |
129
|
|
|
"aol.*", "aol.co*.*", "*.att.ne.jp", "excite.*", "excite.co*.*", "fastmail.*", |
130
|
|
|
"fastmail.co*.*", "freemail.*", "freemail.*.*", "gmx.*", "hotmail.*", "hotmail.co*.*", |
131
|
|
|
"live.*", "lycos.*", "lycos.co*.*", "mail2*.com", "ms*.hinet.net", "outlook.*", |
132
|
|
|
"strompost.*", "terra.*", "terra.co*.*", "tiscali.*", "tiscali.co*.*", "vodafone.*", |
133
|
|
|
"xemail.*", "yahoo.*", "yahoo.co*.*", "yandex.*", "runbox.*", "*.onmicrosoft.com", |
134
|
|
|
// free email patterns end |
135
|
|
|
); |
136
|
|
|
|
137
|
|
|
self::$freeMailDomains = array( |
138
|
|
|
// free email providers start |
139
|
|
|
"020.co.uk", "123.com", "123box.net", "123india.com", "123mail.cl", "123mail.org", |
140
|
|
|
"123qwe.co.uk", "138mail.com", "141.ro", "150mail.com", "150ml.com", "16mail.com", |
141
|
|
|
"1963chevrolet.com", "1963pontiac.com", "1netdrive.com", "1st-website.com", "1stpd.net", "2-mail.com", |
142
|
|
|
"20after4.com", "21cn.com", "24h.co.jp", "24horas.com", "271soundview.com", "2die4.com", |
143
|
|
|
"2mydns.com", "2net.us", "3000.it", "3ammagazine.com", "3email.com", "3xl.net", |
144
|
|
|
"444.net", "4email.com", "4email.net", "4newyork.com", "50mail.com", "55mail.cc", |
145
|
|
|
"5fm.za.com", "6210.hu", "6sens.com", "702mail.co.za", "7110.hu", "8848.net", |
146
|
|
|
"8m.com", "8m.net", "8x.com.br", "8u8.com", "8u8.hk", "8u8.tw", |
147
|
|
|
"9.cn", "a-topmail.at", "about.com", "abv.bg", "acceso.or.cr", "access4less.net", |
148
|
|
|
"accessgcc.com", "acmemail.net", "adiga.com", "adinet.com.uy", "adres.nl", "advalvas.be", |
149
|
|
|
"aeiou.pt", "aeneasmail.com", "afrik.com", "afropoets.com", "aggies.com", "ahaa.dk", |
150
|
|
|
"aichi.com", "aim.com", "airpost.net", "aiutamici.com", "aklan.com", "aknet.kg", |
151
|
|
|
"alabama.usa.com", "alaska.usa.com", "alavatotal.com", "albafind.com", "albawaba.com", "alburaq.net", |
152
|
|
|
"aldeax.com", "aldeax.com.ar", "alex4all.com", "aliyun.com", "alexandria.cc", "algeria.com", |
153
|
|
|
"alice.it", "alinto.com", "allmail.net", "alskens.dk", "altavista.se", "altbox.org", |
154
|
|
|
"alternativagratis.com", "alum.com", "alunos.unipar.br", "alvilag.hu", "amenworld.com", "america.hm", |
155
|
|
|
"americamail.com", "amnetsal.com", "amorous.com", "ananzi.co.za", "anet.ne.jp", "anfmail.com", |
156
|
|
|
"angelfire.com", "animail.net", "aniverse.com", "anjungcafe.com", "another.com", "antedoonsub.com", |
157
|
|
|
"antwerpen.com", "anunciador.net", "anytimenow.com", "aon.at", "apexmail.com", "apollo.lv", |
158
|
|
|
"approvers.net", "aprava.com", "apropo.ro", "arcor.de", "argentina.com", "arizona.usa.com", |
159
|
|
|
"arkansas.usa.com", "armmail.com", "army.com", "arnet.com.ar", "aroma.com", "arrl.net", |
160
|
|
|
"aruba.it", "asheville.com", "asia-links.com", "asiamail.com", "assala.com", "assamesemail.com", |
161
|
|
|
"asurfer.com", "atl.lv", "atlas.cz", "atlas.sk", "atozasia.com", "atreillou.com", |
162
|
|
|
"att.net", "au.ru", "aubenin.com", "aus-city.com", "aussiemail.com.au", "avasmail.com.mv", |
163
|
|
|
"axarnet.com", "ayna.com", "azet.sk", "babbalu.com", "badgers.com", "bakpaka.com", |
164
|
|
|
"bakpaka.net", "balochistan.org", "baluch.com", "bama-fan.com", "bancora.net", "bankersmail.com", |
165
|
|
|
"barlick.net", "beeebank.com", "beehive.org", "been-there.com", "beirut.com", "belizehome.com", |
166
|
|
|
"belizemail.net", "belizeweb.com", "bellsouth.net", "berlin.de", "bestmail.us", "bflomail.com", |
167
|
|
|
"bgnmail.com", "bharatmail.com", "big-orange.com", "bigboss.cz", "bigfoot.com", "bigger.com", |
168
|
|
|
"bigmailbox.com", "bigmir.net", "bigstring.com", "bip.net", "bigpond.com", "bitwiser.com", |
169
|
|
|
"biz.by", "bizhosting.com", "black-sea.ro", "blackburnmail.com", "blackglobalnetwork.net", "blink182.net", |
170
|
|
|
"blue.devils.com", "bluebottle.com", "bluemail.ch", "blumail.org", "blvds.com", "bol.com.br", |
171
|
|
|
"bolando.com", "bollywood2000.com", "bollywoodz.com", "bolt.com", "bombka.dyn.pl", "bonbon.net", |
172
|
|
|
"boom.com", "bootmail.com", "bostonoffice.com", "box.az", "boxbg.com", "boxemail.com", |
173
|
|
|
"brain.com.pk", "brasilia.net", "bravanese.com", "brazilmail.com.br", "breathe.com", "brestonline.com", |
174
|
|
|
"brfree.com.br", "brujula.net", "btcc.org", "buffaloes.com", "bulgaria.com", "bulldogs.com", |
175
|
|
|
"bumerang.ro", "burntmail.com", "butch-femme.net", "buzy.com", "buzzjakkerz.com", "c-box.cz", |
176
|
|
|
"c3.hu", "c4.com", "cadinfo.net", "calcfacil.com.br", "calcware.org", "california.usa.com", |
177
|
|
|
"callnetuk.com", "camaroclubsweden.com", "canada-11.com", "canada.com", "canal21.com", "canoemail.com", |
178
|
|
|
"caramail.com", "cardblvd.com", "care-mail.com", "care2.com", "caress.com", "carioca.net", |
179
|
|
|
"cashette.com", "casino.com", "casinomail.com", "cataloniamail.com", "catalunyamail.com", "cataz.com", |
180
|
|
|
"catcha.com", "catholic.org", "caths.co.uk", "caxess.net", "cbrmail.com", "cc.lv", |
181
|
|
|
"cemelli.com", "centoper.it", "centralpets.com", "centrum.cz", "centrum.sk", "centurylink.net", |
182
|
|
|
"cercaziende.it", "cgac.es", "chaiyo.com", "chaiyomail.com", "chance2mail.com", "channelonetv.com", |
183
|
|
|
"charter.net", "chattown.com", "checkitmail.at", "chelny.com", "cheshiremail.com", "chil-e.com", |
184
|
|
|
"chillimail.com", "china.com", "christianmail.org", "ciaoweb.it", "cine.com", "ciphercom.net", |
185
|
|
|
"circlemail.com", "cititrustbank1.cjb.net", "citromail.hu", "citynetusa.com", "ciudad.com.ar", "claramail.com", |
186
|
|
|
"classicmail.co.za", "cliffhanger.com", "clix.pt", "close2you.net", "cluemail.com", "clujnapoca.ro", |
187
|
|
|
"collegeclub.com", "colombia.com", "colorado.usa.com", "comcast.net", "comfortable.com", "compaqnet.fr", |
188
|
|
|
"compuserve.com", "computer.net", "computermail.net", "computhouse.com", "conevyt.org.mx", "connect4free.net", |
189
|
|
|
"connecticut.usa.com", "coolgoose.com", "coolkiwi.com", "coollist.com", "coxinet.net", "coolmail.com", |
190
|
|
|
"coolmail.net", "coolsend.com", "cooltoad.com", "cooperation.net", "copacabana.com", "copticmail.com", |
191
|
|
|
"corporateattorneys.com", "corporation.net", "correios.net.br", "correomagico.com", "cosmo.com", "cosmosurf.net", |
192
|
|
|
"cougars.com", "count.com", "countrybass.com", "couple.com", "criticalpath.net", "critterpost.com", |
193
|
|
|
"crosspaths.net", "crosswinds.net", "cryingmail.com", "cs.com", "csucsposta.hu", "cumbriamail.com", |
194
|
|
|
"curio-city.com", "custmail.com", "cwazy.co.uk", "cwazy.net", "cww.de", "cyberaccess.com.pk", |
195
|
|
|
"cybergirls.dk", "cyberguys.dk", "cybernet.it", "cymail.net", "dabsol.net", "dada.net", |
196
|
|
|
"dadanet.it", "dailypioneer.com", "damuc.org.br", "dansegulvet.com", "darkhorsefan.net", "data54.com", |
197
|
|
|
"davegracey.com", "dayzers.com", "daum.net", "dbmail.com", "dcemail.com", "dcsi.net", |
198
|
|
|
"deacons.com", "deadlymob.org", "deal-maker.com", "dearriba.com", "degoo.com", "delajaonline.org", |
199
|
|
|
"delaware.usa.com", "delfi.lv", "delhimail.com", "demon.deacons.com", "desertonline.com", "desidrivers.com", |
200
|
|
|
"deskpilot.com", "despammed.com", "detik.com", "devils.com", "dexara.net", "dhmail.net", |
201
|
|
|
"di-ve.com", "didamail.com", "digitaltrue.com", "direccion.com", "director-general.com", "diri.com", |
202
|
|
|
"discardmail.com", "discoverymail.net", "disinfo.net", "djmillenium.com", "dmailman.com", "dnsmadeeasy.com", |
203
|
|
|
"do.net.ar", "dodgeit.com", "dogmail.co.uk", "doityourself.com", "domaindiscover.com", "domainmanager.com", |
204
|
|
|
"doneasy.com", "dontexist.org", "dores.com", "dostmail.com", "dot5hosting.com", "dotcom.fr", |
205
|
|
|
"dotnow.com", "dott.it", "doubt.com", "dplanet.ch", "dragoncon.net", "dragonfans.com", |
206
|
|
|
"dropzone.com", "dserver.org", "dubaiwebcity.com", "dublin.ie", "dustdevil.com", "dynamitemail.com", |
207
|
|
|
"dyndns.org", "e-apollo.lv", "e-hkma.com", "e-mail.cz", "e-mail.ph", "e-mailanywhere.com", |
208
|
|
|
"e-milio.com", "e-tapaal.com", "e-webtec.com", "earthalliance.com", "earthling.net", "eastmail.com", |
209
|
|
|
"eastrolog.com", "easy-pages.com", "easy.com", "easyinfomail.co.za", "easypeasy.com", "echina.com", |
210
|
|
|
"ecn.org", "ecplaza.net", "eircom.net", "edsamail.com.ph", "educacao.te.pt", "edumail.co.za", |
211
|
|
|
"eeism.com", "ego.co.th", "ekolay.net", "elforotv.com.ar", "elitemail.org", "elsitio.com", |
212
|
|
|
"eltimon.com", "elvis.com", "email.com.br", "email.cz", "email.bg", "email.it", |
213
|
|
|
"email.lu", "email.lviv.ua", "email.nu", "email.ro", "email.si", "email2me.com", |
214
|
|
|
"emailacc.com", "emailaccount.com", "emailaddresses.com", "emailchoice.com", "emailcorner.net", "emailn.de", |
215
|
|
|
"emailengine.net", "emailengine.org", "emailgaul.com", "emailgroups.net", "emailhut.net", "emailpinoy.com", |
216
|
|
|
"emailplanet.com", "emailplus.org", "emailuser.net", "ematic.com", "embarqmail.com", "embroideryforums.com", |
217
|
|
|
"eml.cc", "emoka.ro", "emptymail.com", "enel.net", "enelpunto.net", "england.com", |
218
|
|
|
"enterate.com.ar", "entryweb.it", "entusiastisk.com", "enusmail.com", "epatra.com", "epix.net", |
219
|
|
|
"epomail.com", "epost.de", "eprompter.com", "eqqu.com", "eramail.co.za", "eresmas.com", |
220
|
|
|
"eriga.lv", "ertelecom.ru", "esde-s.org", "esfera.cl", "estadao.com.br", "etllao.com", |
221
|
|
|
"euromail.net", "euroseek.com", "euskalmail.com", "evafan.com", "everyday.com.kh", "everymail.net", |
222
|
|
|
"everyone.net", "execs2k.com", "executivemail.co.za", "expn.com", "ezilon.com", "ezrs.com", |
223
|
|
|
"f-m.fm", "facilmail.com", "fadrasha.net", "fadrasha.org", "faithhighway.com", "faithmail.com", |
224
|
|
|
"familymailbox.com", "familyroll.com", "familysafeweb.net", "fan.com", "fan.net", "faroweb.com", |
225
|
|
|
"fast-email.com", "fast-mail.org", "fastem.com", "fastemail.us", "fastemailer.com", "fastermail.com", |
226
|
|
|
"fastest.cc", "fastimap.com", "fastmailbox.net", "fastmessaging.com", "fastwebmail.it", "fawz.net", |
227
|
|
|
"fea.st", "federalcontractors.com", "fedxmail.com", "feelings.com", "female.ru", "fepg.net", |
228
|
|
|
"ffanet.com", "fiberia.com", "filipinolinks.com", "financesource.com", "findmail.com", "fiscal.net", |
229
|
|
|
"flashmail.com", "flipcode.com", "florida.usa.com", "floridagators.com", "fmail.co.uk", "fmailbox.com", |
230
|
|
|
"fmgirl.com", "fmguy.com", "fnmail.com", "footballer.com", "foxmail.com", "forfree.at", |
231
|
|
|
"forsythmissouri.org", "fortuncity.com", "forum.dk", "free.com.pe", "free.fr", "free.net.nz", |
232
|
|
|
"freeaccess.nl", "freegates.be", "freeghana.com", "freehosting.nl", "freei.co.th", "freeler.nl", |
233
|
|
|
"freemail.globalsite.com.br", "freemuslim.net", "freenet.de", "freenet.kg", "freeola.net", "freepgs.com", |
234
|
|
|
"freesbee.fr", "freeserve.co.uk", "freeservers.com", "freestart.hu", "freesurf.ch", "freesurf.fr", |
235
|
|
|
"freesurf.nl", "freeuk.com", "freeuk.net", "freeweb.it", "freewebemail.com", "freeyellow.com", |
236
|
|
|
"frisurf.no", "frontiernet.net", "fsmail.net", "fsnet.co.uk", "ftml.net", "fuelie.org", |
237
|
|
|
"fun-greetings-jokes.com", "fun.21cn.com", "fusemail.com", "fut.es", "gala.net", "galmail.co.za", |
238
|
|
|
"gamebox.net", "gamecocks.com", "gawab.com", "gay.com", "gaymailbox.com", "gaza.net", |
239
|
|
|
"gazeta.pl", "gci.net", "gdi.net", "geeklife.com", "gemari.or.id", "genxemail.com", |
240
|
|
|
"geopia.com", "georgia.usa.com", "getmail.no", "ggaweb.ch", "giga4u.de", "gjk.dk", |
241
|
|
|
"glay.org", "glendale.net", "globalfree.it", "globomail.com", "globalpinoy.com", "globalsite.com.br", |
242
|
|
|
"globalum.com", "globetrotter.net", "gmail.com", "go-bama.com", "go-cavs.com", "go-chargers.com", |
243
|
|
|
"go-dawgs.com", "go-gators.com", "go-hogs.com", "go-irish.com", "go-spartans.com", "go-tigers.com", |
244
|
|
|
"go.aggies.com", "go.air-force.com", "go.badgers.com", "go.big-orange.com", "go.blue.devils.com", "go.buffaloes.com", |
245
|
|
|
"go.bulldogs.com", "go.com", "go.cougars.com", "go.dores.com", "go.gamecocks.com", "go.huskies.com", |
246
|
|
|
"go.longhorns.com", "go.mustangs.com", "go.rebels.com", "go.ro", "go.ru", "go.terrapins.com", |
247
|
|
|
"go.wildcats.com", "go.wolverines.com", "go.yellow-jackets.com", "go2net.com", "go4.it", "gofree.co.uk", |
248
|
|
|
"golfemail.com", "goliadtexas.com", "gomail.com.ua", "gonowmail.com", "gonuts4free.com", "googlemail.com", |
249
|
|
|
"goplay.com", "gorontalo.net", "gotmail.com", "gotomy.com", "govzone.com", "grad.com", |
250
|
|
|
"graffiti.net", "gratisweb.com", "gtechnics.com", "guate.net", "guessmail.com", "gwalla.com", |
251
|
|
|
"h-mail.us", "haberx.com", "hailmail.net", "halejob.com", "hamptonroads.com", "handbag.com", |
252
|
|
|
"hanmail.net", "happemail.com", "happycounsel.com", "hawaii.com", "hawaii.usa.com", "hayahaya.tg", |
253
|
|
|
"hedgeai.com", "heesun.net", "heremail.com", "hetnet.nl", "highveldmail.co.za", "hildebrands.de", |
254
|
|
|
"hingis.org", "hispavista.com", "hitmanrecords.com", "hockeyghiaccio.com", "hockeymail.com", "holapuravida.com", |
255
|
|
|
"home.no.net", "home.ro", "home.se", "homelocator.com", "homemail.co.za", "homenetmail.com", |
256
|
|
|
"homestead.com", "homosexual.net", "hongkong.com", "hong-kong-1.com", "hopthu.com", "hosanna.net", |
257
|
|
|
"hot.ee", "hotbot.com", "hotbox.ru", "hotcoolmail.com", "hotdak.com", "hotfire.net", |
258
|
|
|
"hotinbox.com", "hotpop.com", "hotvoice.com", "hour.com", "howling.com", "huhmail.com", |
259
|
|
|
"humour.com", "hurra.de", "hush.ai", "hush.com", "hushmail.com", "huskies.com", |
260
|
|
|
"hutchcity.com", "i-france.com", "i-p.com", "i12.com", "i2828.com", "ibatam.com", |
261
|
|
|
"ibest.com.br", "ibizdns.com", "icafe.com", "ice.is", "icestorm.com", "icloud.com", |
262
|
|
|
"icq.com", "icqmail.com", "icrazy.com", "id.ru", "idaho.usa.com", "idirect.com", |
263
|
|
|
"idncafe.com", "ieg.com.br", "iespalomeras.net", "iespana.es", "ifrance.com", "ig.com.br", |
264
|
|
|
"ignazio.it", "illinois.usa.com", "ilse.net", "ilse.nl", "imail.ru", "imailbox.com", |
265
|
|
|
"imap-mail.com", "imap.cc", "imapmail.org", "imel.org", "in-box.net", "inbox.com", |
266
|
|
|
"inbox.ge", "inbox.lv", "inbox.net", "inbox.ru", "in.com", "incamail.com", |
267
|
|
|
"indexa.fr", "india.com", "indiamail.com", "indiana.usa.com", "indiatimes.com", "induquimica.org", |
268
|
|
|
"inet.com.ua", "infinito.it", "infoapex.com", "infohq.com", "infomail.es", "infomart.or.jp", |
269
|
|
|
"infosat.net", "infovia.com.ar", "inicia.es", "inmail.sk", "inmail24.com", "inoutbox.com", |
270
|
|
|
"intelnet.net.gt", "intelnett.com", "interblod.com", "interfree.it", "interia.pl", "interlap.com.ar", |
271
|
|
|
"intermail.hu", "internet-e-mail.com", "internet-mail.org", "internet.lu", "internetegypt.com", "internetemails.net", |
272
|
|
|
"internetmailing.net", "inwind.it", "iobox.com", "iobox.fi", "iol.it", "iol.pt", |
273
|
|
|
"iowa.usa.com", "ip3.com", "ipermitmail.com", "iqemail.com", "iquebec.com", "iran.com", |
274
|
|
|
"irangate.net", "iscool.net", "islandmama.com", "ismart.net", "isonews2.com", "isonfire.com", |
275
|
|
|
"isp9.net", "ispey.com", "itelgua.com", "itloox.com", "itmom.com", "ivenus.com", |
276
|
|
|
"iwan-fals.com", "iwon.com", "ixp.net", "japan.com", "jaydemail.com", "jedrzejow.pl", |
277
|
|
|
"jetemail.net", "jingjo.net", "jippii.fi", "jmail.co.za", "jojomail.com", "jovem.te.pt", |
278
|
|
|
"joymail.com", "jubii.dk", "jubiipost.dk", "jumpy.it", "juno.com", "justemail.net", |
279
|
|
|
"justmailz.com", "k.ro", "kaazoo.com", "kabissa.org", "kaixo.com", "kalluritimes.com", |
280
|
|
|
"kalpoint.com", "kansas.usa.com", "katamail.com", "kataweb.it", "kayafmmail.co.za", "keko.com.ar", |
281
|
|
|
"kentucky.usa.com", "keptprivate.com", "kimo.com", "kiwitown.com", "klik.it", "klikni.cz", |
282
|
|
|
"kmtn.ru", "koko.com", "kolozsvar.ro", "kombud.com", "koreanmail.com", "kotaksuratku.info", |
283
|
|
|
"krunis.com", "kukamail.com", "kuronowish.com", "kyokodate.com", "kyokofukada.net", "ladymail.cz", |
284
|
|
|
"lagoon.nc", "lahaonline.com", "lamalla.net", "lancsmail.com", "land.ru", "laposte.net", |
285
|
|
|
"latinmail.com", "lawyer.com", "lawyersmail.com", "lawyerzone.com", "lebanonatlas.com", "leehom.net", |
286
|
|
|
"leonardo.it", "leonlai.net", "letsjam.com", "letterbox.org", "letterboxes.org", "levele.com", |
287
|
|
|
"lexpress.net", "libero.it", "liberomail.com", "libertysurf.net", "libre.net", "lightwines.org", |
288
|
|
|
"linkmaster.com", "linuxfreemail.com", "lionsfan.com.au", "livedoor.com", "llandudno.com", "llangollen.com", |
289
|
|
|
"lmxmail.sk", "loggain.net", "loggain.nu", "lolnetwork.net", "london.com", "longhorns.com", |
290
|
|
|
"look.com", "looksmart.co.uk", "looksmart.com", "looksmart.com.au", "loteria.net", "lotonazo.com", |
291
|
|
|
"louisiana.usa.com", "louiskoo.com", "loveable.com", "lovemail.com", "lovingjesus.com", "lpemail.com", |
292
|
|
|
"luckymail.com", "luso.pt", "lusoweb.pt", "luukku.com", "lycosmail.com", "mac.com", |
293
|
|
|
"machinecandy.com", "macmail.com", "mad.scientist.com", "madcrazy.com", "madonno.com", "madrid.com", |
294
|
|
|
"mag2.com", "magicmail.co.za", "magik-net.com", "mail-atlas.net", "mail-awu.de", "mail-box.cz", |
295
|
|
|
"mail.by", "mail-center.com", "mail-central.com", "mail-jp.org", "mail-online.dk", "mail-page.com", |
296
|
|
|
"mail-x-change.com", "mail.austria.com", "mail.az", "mail.de", "mail.be", "mail.bg", |
297
|
|
|
"mail.bulgaria.com", "mail.co.za", "mail.dk", "mail.ee", "mail.goo.ne.jp", "mail.gr", |
298
|
|
|
"mail.lawguru.com", "mail.md", "mail.mn", "mail.org", "mail.pf", "mail.pt", |
299
|
|
|
"mail.ru", "mail.yahoo.co.jp", "mail15.com", "mail3000.com", "mail333.com", "mail8.com", |
300
|
|
|
"mailandftp.com", "mailandnews.com", "mailas.com", "mailasia.com", "mailbg.com", "mailblocks.com", |
301
|
|
|
"mailbolt.com", "mailbox.as", "mailbox.co.za", "mailbox.gr", "mailbox.hu", "mailbox.sk", |
302
|
|
|
"mailc.net", "mailcan.com", "mailcircuit.com", "mailclub.fr", "mailclub.net", "maildozy.com", |
303
|
|
|
"mailfly.com", "mailforce.net", "mailftp.com", "mailglobal.net", "mailhaven.com", "mailinator.com", |
304
|
|
|
"mailingaddress.org", "mailingweb.com", "mailisent.com", "mailite.com", "mailme.dk", "mailmight.com", |
305
|
|
|
"mailmij.nl", "mailnew.com", "mailops.com", "mailpanda.com", "mailpersonal.com", "mailroom.com", |
306
|
|
|
"mailru.com", "mails.de", "mailsent.net", "mailserver.dk", "mailservice.ms", "mailsnare.net", |
307
|
|
|
"mailsurf.com", "mailup.net", "mailvault.com", "mailworks.org", "maine.usa.com", "majorana.martina-franca.ta.it", |
308
|
|
|
"maktoob.com", "malayalamtelevision.net", "malayalapathram.com", "male.ru", "manager.de", "manlymail.net", |
309
|
|
|
"mantrafreenet.com", "mantramail.com", "mantraonline.com", "marihuana.ro", "marijuana.nl", "marketweighton.com", |
310
|
|
|
"maryland.usa.com", "masrawy.com", "massachusetts.usa.com", "mauimail.com", "mbox.com.au", "mcrmail.com", |
311
|
|
|
"me.by", "me.com", "medicinatv.com", "meetingmall.com", "megamail.pt", "menara.ma", |
312
|
|
|
"merseymail.com", "mesra.net", "messagez.com", "metacrawler.com", "mexico.com", "miaoweb.net", |
313
|
|
|
"michigan.usa.com", "micro2media.com", "miesto.sk", "mighty.co.za", "milacamn.net", "milmail.com", |
314
|
|
|
"mindless.com", "mindviz.com", "minnesota.usa.com", "mississippi.usa.com", "missouri.usa.com", "mixmail.com", |
315
|
|
|
"ml1.net", "ml2clan.com", "mlanime.com", "mm.st", "mmail.com", "mobimail.mn", |
316
|
|
|
"mobsters.com", "mobstop.com", "modemnet.net", "modomail.com", "moldova.com", "moldovacc.com", |
317
|
|
|
"monarchy.com", "montana.usa.com", "montevideo.com.uy", "moomia.com", "moose-mail.com", "mosaicfx.com", |
318
|
|
|
"motormania.com", "movemail.com", "mr.outblaze.com", "mrspender.com", "mscold.com", "msn.com", |
319
|
|
|
"msn.co.uk", "msnzone.cn", "mundo-r.com", "muslimsonline.com", "mustangs.com", "mxs.de", |
320
|
|
|
"myblue.cc", "mycabin.com", "mycity.com", "mycommail.com", "mycool.com", "mydomain.com", |
321
|
|
|
"myeweb.com", "myfastmail.com", "myfunnymail.com", "mykolab.com", "mygamingconsoles.com", "myiris.com", |
322
|
|
|
"myjazzmail.com", "mymacmail.com", "mymail.dk", "mymail.ph.inter.net", "mymail.ro", "mynet.com", |
323
|
|
|
"mynet.com.tr", "myotw.net", "myopera.com", "myownemail.com", "mypersonalemail.com", "myplace.com", |
324
|
|
|
"myrealbox.com", "myspace.com", "myt.mu", "myway.com", "mzgchaos.de", "n2.com", |
325
|
|
|
"n2business.com", "n2mail.com", "n2software.com", "nabble.com", "name.com", "nameplanet.com", |
326
|
|
|
"nanamail.co.il", "nanaseaikawa.com", "nandomail.com", "naseej.com", "nastything.com", "national-champs.com", |
327
|
|
|
"nativeweb.net", "narod.ru", "nate.com", "naveganas.com", "naver.com", "nebraska.usa.com", |
328
|
|
|
"nemra1.com", "nenter.com", "nerdshack.com", "nervhq.org", "net.hr", "net4b.pt", |
329
|
|
|
"net4jesus.com", "net4you.at", "netbounce.com", "netcabo.pt", "netcape.net", "netcourrier.com", |
330
|
|
|
"netexecutive.com", "netfirms.com", "netkushi.com", "netmongol.com", "netpiper.com", "netposta.net", |
331
|
|
|
"netscape.com", "netscape.net", "netscapeonline.co.uk", "netsquare.com", "nettaxi.com", "netti.fi", |
332
|
|
|
"networld.com", "netzero.com", "netzero.net", "neustreet.com", "nevada.usa.com", "newhampshire.usa.com", |
333
|
|
|
"newjersey.usa.com", "newmail.com", "newmail.net", "newmail.ok.com", "newmail.ru", "newmexico.usa.com", |
334
|
|
|
"newspaperemail.com", "newyork.com", "newyork.usa.com", "newyorkcity.com", "nfmail.com", "nicegal.com", |
335
|
|
|
"nightimeuk.com", "nightly.com", "nightmail.com", "nightmail.ru", "noavar.com", "noemail.com", |
336
|
|
|
"nonomail.com", "nokiamail.com", "noolhar.com", "northcarolina.usa.com", "northdakota.usa.com", "nospammail.net", |
337
|
|
|
"nowzer.com", "ny.com", "nyc.com", "nz11.com", "nzoomail.com", "o2.pl", |
338
|
|
|
"oceanfree.net", "ocsnet.net", "oddpost.com", "odeon.pl", "odmail.com", "offshorewebmail.com", |
339
|
|
|
"ofir.dk", "ohio.usa.com", "oicexchange.com", "ok.ru", "oklahoma.usa.com", "ole.com", |
340
|
|
|
"oleco.net", "olympist.net", "omaninfo.com", "onatoo.com", "ondikoi.com", "onebox.com", |
341
|
|
|
"onenet.com.ar", "onet.pl", "ongc.net", "oninet.pt", "online.ie", "online.ru", |
342
|
|
|
"onlinewiz.com", "onobox.com", "open.by", "openbg.com", "openforyou.com", "opentransfer.com", |
343
|
|
|
"operamail.com", "oplusnet.com", "orange.fr", "orangehome.co.uk", "orange.es", "orange.jo", |
344
|
|
|
"orange.pl", "orbitel.bg", "orcon.net.nz", "oregon.usa.com", "oreka.com", "organizer.net", |
345
|
|
|
"orgio.net", "orthodox.com", "osite.com.br", "oso.com", "ourbrisbane.com", "ournet.md", |
346
|
|
|
"ourprofile.net", "ourwest.com", "outgun.com", "ownmail.net", "oxfoot.com", "ozu.es", |
347
|
|
|
"pacer.com", "paginasamarillas.com", "pakistanmail.com", "pandawa.com", "pando.com", "pandora.be", |
348
|
|
|
"paris.com", "parsimail.com", "parspage.com", "patmail.com", "pattayacitythailand.com", "pc4me.us", |
349
|
|
|
"pcpostal.com", "penguinmaster.com", "pennsylvania.usa.com", "peoplepc.com", "peopleweb.com", "personal.ro", |
350
|
|
|
"personales.com", "peru.com", "petml.com", "phreaker.net", "pigeonportal.com", "pilu.com", |
351
|
|
|
"pimagop.com", "pinoymail.com", "pipni.cz", "pisem.net", "planet-school.de", "planetaccess.com", |
352
|
|
|
"planetout.com", "plasa.com", "playersodds.com", "playful.com", "pluno.com", "plusmail.com.br", |
353
|
|
|
"pmail.net", "pnetmail.co.za", "pobox.ru", "pobox.sk", "pochtamt.ru", "pochta.ru", |
354
|
|
|
"poczta.fm", "poetic.com", "pogowave.com", "polbox.com", "pop3.ru", "pop.co.th", |
355
|
|
|
"popmail.com", "poppymail.com", "popsmail.com", "popstar.com", "portafree.com", "portaldosalunos.com", |
356
|
|
|
"portugalmail.com", "portugalmail.pt", "post.cz", "post.expart.ne.jp", "post.pl", "post.sk", |
357
|
|
|
"posta.ge", "postaccesslite.com", "postiloota.net", "postinbox.com", "postino.ch", "postino.it", |
358
|
|
|
"postmaster.co.uk", "postpro.net", "praize.com", "press.co.jp", "primposta.com", "printesamargareta.ro", |
359
|
|
|
"private.21cn.com", "probemail.com", "profesional.com", "profession.freemail.com.br", "proinbox.com", "promessage.com", |
360
|
|
|
"prontomail.com", "protonmail.com", "protonmail.ch", "provincial.net", "publicaccounting.com", "punkass.com", |
361
|
|
|
"puppy.com.my", "q.com", "qatar.io", "qlmail.com", "qq.com", "qrio.com", |
362
|
|
|
"qsl.net", "qudsmail.com", "queerplaces.com", "quepasa.com", "quick.cz", "quickwebmail.com", |
363
|
|
|
"r-o-o-t.com", "r320.hu", "raakim.com", "rbcmail.ru", "racingseat.com", "radicalz.com", |
364
|
|
|
"radiojobbank.com", "ragingbull.com", "raisingadaughter.com", "rallye-webmail.com", "rambler.ru", "ranmamail.com", |
365
|
|
|
"ravearena.com", "ravemail.co.za", "razormail.com", "real.ro", "realemail.net", "reallyfast.biz", |
366
|
|
|
"reallyfast.info", "rebels.com", "recife.net", "recme.net", "rediffmail.com", "rediffmailpro.com", |
367
|
|
|
"redseven.de", "redwhitearmy.com", "relia.com", "revenue.com", "rexian.com", "rhodeisland.usa.com", |
368
|
|
|
"ritmes.net", "rn.com", "roanokemail.com", "rochester-mail.com", "rock.com", "rocketmail.com", |
369
|
|
|
"rockfan.com", "rockinghamgateway.com", "rojname.com", "rol.ro", "rollin.com", "rome.com", |
370
|
|
|
"romymichele.com", "royal.net", "rpharmacist.com", "rt.nl", "ru.ru", "rushpost.com", |
371
|
|
|
"russiamail.com", "rxpost.net", "s-mail.com", "saabnet.com", "sacbeemail.com", "sacmail.com", |
372
|
|
|
"safe-mail.net", "safe-mailbox.com", "saigonnet.vn", "saint-mike.org", "samilan.net", "sandiego.com", |
373
|
|
|
"sanook.com", "sanriotown.com", "sapibon.com", "sapo.pt", "saturnfans.com", "sayhi.net", |
374
|
|
|
"sbcglobal.com", "scfn.net", "schweiz.org", "sci.fi", "sciaga.pl", "scrapbookscrapbook.com", |
375
|
|
|
"seapole.com", "search417.com", "seark.com", "sebil.com", "secretservices.net", "secure-jlnet.com", |
376
|
|
|
"seductive.com", "sendmail.ru", "sendme.cz", "sent.as", "sent.at", "sent.com", |
377
|
|
|
"serga.com.ar", "sermix.com", "server4free.de", "serverwench.com", "sesmail.com", "sexmagnet.com", |
378
|
|
|
"seznam.cz", "shadango.com", "she.com", "shuf.com", "siamlocalhost.com", "siamnow.net", |
379
|
|
|
"sify.com", "sinamail.com", "singapore.com", "singmail.com", "singnet.com.sg", "siraj.org", |
380
|
|
|
"sirindia.com", "sirunet.com", "sister.com", "sina.com", "sina.cn", "sinanail.com", |
381
|
|
|
"sistersbrothers.com", "sizzling.com", "slamdunkfan.com", "slickriffs.co.uk", "slingshot.com", "slo.net", |
382
|
|
|
"slomusic.net", "smartemail.co.uk", "smtp.ru", "snail-mail.net", "sndt.net", "sneakemail.com", |
383
|
|
|
"snoopymail.com", "snowboarding.com", "so-simple.org", "socamail.com", "softhome.net", "sohu.com", |
384
|
|
|
"sol.dk", "solidmail.com", "soon.com", "sos.lv", "soundvillage.org", "southcarolina.usa.com", |
385
|
|
|
"southdakota.usa.com", "sp.nl", "space.com", "spacetowns.com", "spamex.com", "spartapiet.com", |
386
|
|
|
"speed-racer.com", "speedpost.net", "speedymail.org", "spils.com", "spinfinder.com", "sportemail.com", |
387
|
|
|
"spray.net", "spray.no", "spray.se", "spymac.com", "srbbs.com", "srilankan.net", |
388
|
|
|
"ssan.com", "ssl-mail.com", "stade.fr", "stalag13.com", "stampmail.com", "starbuzz.com", |
389
|
|
|
"starline.ee", "starmail.com", "starmail.org", "starmedia.com", "starspath.com", "start.com.au", |
390
|
|
|
"start.no", "stribmail.com", "student.com", "student.ednet.ns.ca", "studmail.com", "sudanmail.net", |
391
|
|
|
"suisse.org", "sunbella.net", "sunmail1.com", "sunpoint.net", "sunrise.ch", "sunumail.sn", |
392
|
|
|
"sunuweb.net", "suomi24.fi", "superdada.it", "supereva.com", "supereva.it", "supermailbox.com", |
393
|
|
|
"superposta.com", "surf3.net", "surfassistant.com", "surfsupnet.net", "surfy.net", "surimail.com", |
394
|
|
|
"surnet.cl", "sverige.nu", "svizzera.org", "sweb.cz", "swift-mail.com", "swissinfo.org", |
395
|
|
|
"swissmail.net", "switzerland.org", "syom.com", "syriamail.com", "t-mail.com", "t-net.net.ve", |
396
|
|
|
"t2mail.com", "tabasheer.com", "talk21.com", "talkcity.com", "tangmonkey.com", "tatanova.com", |
397
|
|
|
"taxcutadvice.com", "techemail.com", "technisamail.co.za", "teenmail.co.uk", "teenmail.co.za", "tejary.com", |
398
|
|
|
"telebot.com", "telefonica.net", "telegraf.by", "teleline.es", "telinco.net", "telkom.net", |
399
|
|
|
"telpage.net", "telstra.com", "telenet.be", "telusplanet.net", "tempting.com", "tenchiclub.com", |
400
|
|
|
"tennessee.usa.com", "terrapins.com", "texas.usa.com", "texascrossroads.com", "tfz.net", "thai.com", |
401
|
|
|
"thaimail.com", "thaimail.net", "the-fastest.net", "the-quickest.com", "thegame.com", "theinternetemail.com", |
402
|
|
|
"theoffice.net", "thepostmaster.net", "theracetrack.com", "theserverbiz.com", "thewatercooler.com", "thewebpros.co.uk", |
403
|
|
|
"thinkpost.net", "thirdage.com", "thundermail.com", "tim.it", "timemail.com", "tin.it", |
404
|
|
|
"tinati.net", "tiscalinet.it", "tjohoo.se", "tkcity.com", "tlcfan.com", "tlen.pl", |
405
|
|
|
"tmicha.net", "todito.com", "todoperros.com", "tokyo.com", "topchat.com", "topmail.com.ar", |
406
|
|
|
"topmail.dk", "topmail.co.ie", "topmail.co.in", "topmail.co.nz", "topmail.co.uk", "topmail.co.za", |
407
|
|
|
"topsurf.com", "toquedequeda.com", "torba.com", "torchmail.com", "totalmail.com", "totalsurf.com", |
408
|
|
|
"totonline.net", "tough.com", "toughguy.net", "trav.se", "trevas.net", "tripod-mail.com", |
409
|
|
|
"triton.net", "trmailbox.com", "tsamail.co.za", "turbonett.com", "turkey.com", "tvnet.lv", |
410
|
|
|
"twc.com", "typemail.com", "u2club.com", "uae.ac", "ubbi.com", "ubbi.com.br", |
411
|
|
|
"uboot.com", "ugeek.com", "uk2.net", "uk2net.com", "ukr.net", "ukrpost.net", |
412
|
|
|
"ukrpost.ua", "uku.co.uk", "ulimit.com", "ummah.org", "unbounded.com", "unican.es", |
413
|
|
|
"unicum.de", "unimail.mn", "unitedemailsystems.com", "universal.pt", "universia.cl", "universia.edu.ve", |
414
|
|
|
"universia.es", "universia.net.co", "universia.net.mx", "universia.pr", "universia.pt", "universiabrasil.net", |
415
|
|
|
"unofree.it", "uol.com.ar", "uol.com.br", "uole.com", "uolmail.com", "uomail.com", |
416
|
|
|
"uraniomail.com", "urbi.com.br", "ureach.com", "usanetmail.com", "userbeam.com", "utah.usa.com", |
417
|
|
|
"uyuyuy.com", "v-sexi.com", "v3mail.com", "vegetarisme.be", "velnet.com", "velocall.com", |
418
|
|
|
"vercorreo.com", "verizonmail.com", "vermont.usa.com", "verticalheaven.com", "veryfast.biz", "veryspeedy.net", |
419
|
|
|
"vfemail.net", "vietmedia.com", "vip.gr", "virgilio.it", "virgin.net", "virginia.usa.com", |
420
|
|
|
"virtual-mail.com", "visitmail.com", "visto.com", "vivelared.com", "vjtimail.com", "vnn.vn", |
421
|
|
|
"vsnl.com", "vsnl.net", "vodamail.co.za", "voila.fr", "volkermord.com", "vosforums.com", |
422
|
|
|
"w.cn", "walla.com", "walla.co.il", "wallet.com", "wam.co.za", "wanadoo.co.uk", |
423
|
|
|
"wanadoo.es", "wanadoo.fr", "wanex.ge", "wap.hu", "wapda.com", "wapicode.com", |
424
|
|
|
"wappi.com", "warpmail.net", "washington.usa.com", "wassup.com", "waterloo.com", "waumail.com", |
425
|
|
|
"wazmail.com", "wearab.net", "web-mail.com.ar", "web.de", "web.nl", "web2mail.com", |
426
|
|
|
"webaddressbook.com", "webbworks.com", "webcity.ca", "webdream.com", "webemaillist.com", "webindia123.com", |
427
|
|
|
"webinfo.fi", "webjump.com", "webl-3.br.inter.net", "webmail.co.yu", "webmail.co.za", "webmails.com", |
428
|
|
|
"webmailv.com", "webpim.cc", "webspawner.com", "webstation.com", "websurfer.co.za", "webtopmail.com", |
429
|
|
|
"webtribe.net", "webtv.net", "weedmail.com", "weekonline.com", "weirdness.com", "westvirginia.usa.com", |
430
|
|
|
"whale-mail.com", "whipmail.com", "who.net", "whoever.com", "wildcats.com", "wildmail.com", |
431
|
|
|
"williams.net.ar", "winning.com", "winningteam.com", "winwinhosting.com", "wisconsin.usa.com", "witelcom.com", |
432
|
|
|
"witty.com", "wolverines.com", "wooow.it", "workmail.co.za", "worldcrossing.com", "worldemail.com", |
433
|
|
|
"worldmedic.com", "worldonline.de", "wowmail.com", "wp.pl", "wprost.pl", "wrongmail.com", |
434
|
|
|
"wtonetwork.com", "wurtele.net", "www.com", "www.consulcredit.it", "wyoming.usa.com", "x-mail.net", |
435
|
|
|
"xasa.com", "xfreehosting.com", "xmail.net", "xmsg.com", "xnmsn.cn", "xoom.com", |
436
|
|
|
"xtra.co.nz", "xuite.net", "xpectmore.com", "xrea.com", "xsmail.com", "xzapmail.com", |
437
|
|
|
"y7mail.com", "yahala.co.il", "yaho.com", "yalla.com.lb", "ya.com", "yeah.net", |
438
|
|
|
"ya.ru", "yahoomail.com", "yam.com", "yamal.info", "yapost.com", "yawmail.com", |
439
|
|
|
"yebox.com", "yehey.com", "yellow-jackets.com", "yellowstone.net", "yenimail.com", "yepmail.net", |
440
|
|
|
"yifan.net", "ymail.com", "your-mail.com", "yours.com", "yourwap.com", "yyhmail.com", |
441
|
|
|
"z11.com", "z6.com", "zednet.co.uk", "zeeman.nl", "ziplip.com", "zipmail.com.br", |
442
|
|
|
"zipmax.com", "zmail.pt", "zmail.ru", "zona-andina.net", "zonai.com", "zoneview.net", |
443
|
|
|
"zonnet.nl", "zoho.com", "zoomshare.com", "zoznam.sk", "zubee.com", "zuvio.com", |
444
|
|
|
"zwallet.com", "zworg.com", "zybermail.com", "zzn.com", "126.com", "139.com", |
445
|
|
|
"163.com", "188.com", "189.cn", "263.net", "9.cn", "vip.126.com", |
446
|
|
|
"vip.163.com", "vip.188.com", "vip.sina.com", "vip.sohu.com", "vip.sohu.net", "vip.tom.com", |
447
|
|
|
"vip.qq.com", "vipsohu.net", "clovermail.net", "mail-on.us", "chewiemail.com", "offcolormail.com", |
448
|
|
|
"powdermail.com", "tightmail.com", "toothandmail.com", "tushmail.com", "openmail.cc", "expressmail.dk", |
449
|
|
|
"4xn.de", "5x2.de", "5x2.me", "aufdrogen.de", "auf-steroide.de", "besser-als-du.de", |
450
|
|
|
"brainsurfer.de", "chillaxer.de", "cyberkriminell.de", "danneben.so", "freemailen.de", "freemailn.de", |
451
|
|
|
"ist-der-mann.de", "ist-der-wahnsinn.de", "ist-echt.so", "istecht.so", "ist-genialer.de", "ist-schlauer.de", |
452
|
|
|
"ist-supersexy.de", "kann.so", "mag-spam.net", "mega-schlau.de", "muss.so", "nerd4life.de", |
453
|
|
|
"ohne-drogen-gehts.net", "on-steroids.de", "scheint.so", "staatsterrorist.de", "super-gerissen.de", "unendlich-schlau.de", |
454
|
|
|
"vip-client.de", "will-keinen-spam.de", "zu-geil.de", "rbox.me", "rbox.co", "tunome.com", |
455
|
|
|
"acatperson.com", "adogperson.com", "all4theskins.com", "allsportsrock.com", "alwaysgrilling.com", "alwaysinthekitchen.com", |
456
|
|
|
"alwayswatchingmovies.com", "alwayswatchingtv.com", "asylum.com", "basketball-email.com", "beabookworm.com", "beagolfer.com", |
457
|
|
|
"beahealthnut.com", "believeinliberty.com", "bestcoolcars.com", "bestjobcandidate.com", "besure2vote.com", "bigtimecatperson.com", |
458
|
|
|
"bigtimedogperson.com", "bigtimereader.com", "bigtimesportsfan.com", "blackvoices.com", "capsfanatic.com", "capshockeyfan.com", |
459
|
|
|
"capsred.com", "car-nut.net", "cat-person.com", "catpeoplerule.com", "chat-with-me.com", "cheatasrule.com", |
460
|
|
|
"crazy4baseball.com", "crazy4homeimprovement.com", "crazy4mail.com", "crazyaboutfilms.net", "crazycarfan.com", "crazyforemail.com", |
461
|
|
|
"crazymoviefan.com", "descriptivemail.com", "differentmail.com", "dog-person.com", "dogpeoplerule.com", "easydoesit.com", |
462
|
|
|
"expertrenovator.com", "expressivemail.com", "fanaticos.com", "fanofbooks.com", "fanofcomputers.com", "fanofcooking.com", |
463
|
|
|
"fanoftheweb.com", "fieldmail.com", "fleetmail.com", "focusedonprofits.com", "focusedonreturns.com", "futboladdict.com", |
464
|
|
|
"games.com", "getintobooks.com", "hail2theskins.com", "hitthepuck.com", "i-dig-movies.com", "i-love-restaurants.com", |
465
|
|
|
"idigcomputers.com", "idigelectronics.com", "idigvideos.com", "ilike2helpothers.com", "ilike2invest.com", "ilike2workout.com", |
466
|
|
|
"ilikeelectronics.com", "ilikeworkingout.com", "ilovehomeprojects.com", "iloveourteam.com", "iloveworkingout.com", "in2autos.net", |
467
|
|
|
"interestedinthejob.com", "intomotors.com", "iwatchrealitytv.com", "lemondrop.com", "love2exercise.com", "love2workout.com", |
468
|
|
|
"lovefantasysports.com", "lovetoexercise.com", "luvfishing.com", "luvgolfing.com", "luvsoccer.com", "mail4me.com", |
469
|
|
|
"majorgolfer.com", "majorshopaholic.com", "majortechie.com", "mcom.com", "motor-nut.com", "moviefan.com", |
470
|
|
|
"mycapitalsmail.com", "mycatiscool.com", "myfantasyteamrules.com", "myteamisbest.com", "netbusiness.com", "news-fanatic.com", |
471
|
|
|
"newspaperfan.com", "onlinevideosrock.com", "realbookfan.com", "realhealthnut.com", "realitytvaddict.net", "realitytvnut.com", |
472
|
|
|
"reallyintomusic.com", "realtravelfan.com", "redskinscheer.com", "redskinsfamily.com", "redskinsfancentral.com", "redskinshog.com", |
473
|
|
|
"redskinsrule.com", "redskinsspecialteams.com", "redskinsultimatefan.com", "scoutmail.com", "skins4life.com", "stargate2.com", |
474
|
|
|
"stargateatlantis.com", "stargatefanclub.com", "stargatesg1.com", "stargateu.com", "switched.com", "thegamefanatic.com", |
475
|
|
|
"total-techie.com", "totalfoodnut.com", "totally-into-cooking.com", "totallyintobaseball.com", "totallyintobasketball.com", "totallyintocooking.com", |
476
|
|
|
"totallyintofootball.com", "totallyintogolf.com", "totallyintohockey.com", "totallyintomusic.com", "totallyintoreading.com", "totallyintosports.com", |
477
|
|
|
"totallyintotravel.com", "totalmoviefan.com", "travel2newplaces.com", "tvchannelsurfer.com", "ultimateredskinsfan.com", "videogamesrock.com", |
478
|
|
|
"volunteeringisawesome.com", "wayintocomputers.com", "whatmail.com", "when.com", "wild4music.com", "wildaboutelectronics.com", |
479
|
|
|
"workingaroundthehouse.com", "workingonthehouse.com", "writesoon.com", "xmasmail.com", "arab.ir", "denmark.ir", |
480
|
|
|
"egypt.ir", "icq.ir", "ir.ae", "iraq.ir", "ire.ir", "ireland.ir", |
481
|
|
|
"irr.ir", "jpg.ir", "ksa.ir", "kuwait.ir", "london.ir", "paltalk.ir", |
482
|
|
|
"spain.ir", "sweden.ir", "tokyo.ir", "111mail.com", "123iran.com", "37.com", |
483
|
|
|
"420email.com", "4degreez.com", "4-music-today.com", "actingbiz.com", "allhiphop.com", "anatomicrock.com", |
484
|
|
|
"animeone.com", "asiancutes.com", "a-teens.net", "ausi.com", "autoindia.com", "autopm.com", |
485
|
|
|
"barriolife.com", "b-boy.com", "beautifulboy.com", "bgay.com", "bicycledata.com", "bicycling.com", |
486
|
|
|
"bigheavyworld.com", "bigmailbox.net", "bikerheaven.net", "bikermail.com", "billssite.com", "blackandchristian.com", |
487
|
|
|
"blackcity.net", "blackvault.com", "bmxtrix.com", "boarderzone.com", "boatnerd.com", "bolbox.com", |
488
|
|
|
"bongmail.com", "bowl.com", "butch-femme.org", "byke.com", "calle22.com", "cannabismail.com", |
489
|
|
|
"catlovers.com", "certifiedbitches.com", "championboxing.com", "chatway.com", "chillymail.com", "classprod.com", |
490
|
|
|
"classycouples.com", "congiu.net", "coolshit.com", "corpusmail.com", "cyberunlimited.org", "cycledata.com", |
491
|
|
|
"darkfear.com", "darkforces.com", "dirtythird.com", "dopefiends.com", "draac.com", "drakmail.net", |
492
|
|
|
"dr-dre.com", "dreamstop.com", "egypt.net", "emailfast.com", "envirocitizen.com", "escapeartist.com", |
493
|
|
|
"ezsweeps.com", "famous.as", "farts.com", "feelingnaughty.com", "firemyst.com", "freeonline.com", |
494
|
|
|
"fudge.com", "funkytimes.com", "gamerssolution.com", "gazabo.net", "glittergrrrls.com", "goatrance.com", |
495
|
|
|
"goddess.com", "gohip.com", "gospelcity.com", "gothicgirl.com", "grapemail.net", "greatautos.org", |
496
|
|
|
"guy.com", "haitisurf.com", "happyhippo.com", "hateinthebox.com", "houseofhorrors.com", "hugkiss.com", |
497
|
|
|
"hullnumber.com", "idunno4recipes.com", "ihatenetscape.com", "intimatefire.com", "irow.com", "jazzemail.com", |
498
|
|
|
"juanitabynum.com", "kanoodle.com", "kickboxing.com", "kidrock.com", "kinkyemail.com", "kool-things.com", |
499
|
|
|
"latinabarbie.com", "latinogreeks.com", "leesville.com", "loveemail.com", "lowrider.com", "lucky7lotto.net", |
500
|
|
|
"madeniggaz.net", "mailbomb.com", "marillion.net", "megarave.com", "mofa.com", "motley.com", |
501
|
|
|
"music.com", "musician.net", "musicsites.com", "netbroadcaster.com", "netfingers.com", "net-surf.com", |
502
|
|
|
"nocharge.com", "operationivy.com", "paidoffers.net", "pcbee.com", "persian.com", "petrofind.com", |
503
|
|
|
"phunkybitches.com", "pikaguam.com", "pinkcity.net", "pitbullmail.com", "planetsmeg.com", "poop.com", |
504
|
|
|
"poormail.com", "potsmokersnet.com", "primetap.com", "project420.com", "prolife.net", "puertoricowow.com", |
505
|
|
|
"puppetweb.com", "rapstar.com", "rapworld.com", "rastamall.com", "ratedx.net", "ravermail.com", |
506
|
|
|
"relapsecult.com", "remixer.com", "rockeros.com", "romance106fm.com", "singalongcenter.com", "sketchyfriends.com", |
507
|
|
|
"slayerized.com", "smartstocks.com", "soulja-beatz.org", "specialoperations.com", "speedymail.net", "spells.com", |
508
|
|
|
"streetracing.com", "subspacemail.com", "sugarray.com", "superbikeclub.com", "superintendents.net", "surfguiden.com", |
509
|
|
|
"sweetwishes.com", "tattoodesign.com", "teamster.net", "teenchatnow.com", "the5thquarter.com", "theblackmarket.com", |
510
|
|
|
"tombstone.ws", "troamail.org", "u2tours.com", "vitalogy.org", "whatisthis.com", "wrestlezone.com", |
511
|
|
|
"abha.cc", "agadir.cc", "ahsa.ws", "ajman.cc", "ajman.us", "ajman.ws", |
512
|
|
|
"albaha.cc", "algerie.cc", "alriyadh.cc", "amman.cc", "aqaba.cc", "arar.ws", |
513
|
|
|
"aswan.cc", "baalbeck.cc", "bahraini.cc", "banha.cc", "bizerte.cc", "blida.info", |
514
|
|
|
"buraydah.cc", "cameroon.cc", "dhahran.cc", "dhofar.cc", "djibouti.cc", "dominican.cc", |
515
|
|
|
"eritrea.cc", "falasteen.cc", "fujairah.cc", "fujairah.us", "fujairah.ws", "gabes.cc", |
516
|
|
|
"gafsa.cc", "giza.cc", "guinea.cc", "hamra.cc", "hasakah.com", "hebron.tv", |
517
|
|
|
"homs.cc", "ibra.cc", "irbid.ws", "ismailia.cc", "jadida.cc", "jadida.org", |
518
|
|
|
"jerash.cc", "jizan.cc", "jouf.cc", "kairouan.cc", "karak.cc", "khaimah.cc", |
519
|
|
|
"khartoum.cc", "khobar.cc", "kuwaiti.tv", "kyrgyzstan.cc", "latakia.cc", "lebanese.cc", |
520
|
|
|
"lubnan.cc", "lubnan.ws", "madinah.cc", "maghreb.cc", "manama.cc", "mansoura.tv", |
521
|
|
|
"marrakesh.cc", "mascara.ws", "meknes.cc", "muscat.tv", "muscat.ws", "nabeul.cc", |
522
|
|
|
"nabeul.info", "nablus.cc", "nador.cc", "najaf.cc", "omani.ws", "omdurman.cc", |
523
|
|
|
"oran.cc", "oued.info", "oued.org", "oujda.biz", "oujda.cc", "pakistani.ws", |
524
|
|
|
"palmyra.cc", "palmyra.ws", "portsaid.cc", "qassem.cc", "quds.cc", "rabat.cc", |
525
|
|
|
"rafah.cc", "ramallah.cc", "safat.biz", "safat.info", "safat.us", "safat.ws", |
526
|
|
|
"salalah.cc", "salmiya.biz", "sanaa.cc", "seeb.cc", "sfax.ws", "sharm.cc", |
527
|
|
|
"sinai.cc", "siria.cc", "sousse.cc", "sudanese.cc", "suez.cc", "tabouk.cc", |
528
|
|
|
"tajikistan.cc", "tangiers.cc", "tanta.cc", "tayef.cc", "tetouan.cc", "timor.cc", |
529
|
|
|
"tunisian.cc", "urdun.cc", "yanbo.cc", "yemeni.cc", "yunus.cc", "zagazig.cc", |
530
|
|
|
"zambia.cc", "5005.lv", "a.org.ua", "bmx.lv", "company.org.ua", "coolmail.ru", |
531
|
|
|
"dino.lv", "eclub.lv", "e-mail.am", "fit.lv", "hacker.am", "human.lv", |
532
|
|
|
"iphon.biz", "latchess.com", "loveis.lv", "lv-inter.net", "pookmail.com", "sexriga.lv", |
533
|
|
|
"accountant.com", "acdcfan.com", "activist.com", "adexec.com", "africamail.com", "aircraftmail.com", |
534
|
|
|
"allergist.com", "alumni.com", "alumnidirector.com", "angelic.com", "appraiser.net", "archaeologist.com", |
535
|
|
|
"arcticmail.com", "artlover.com", "asia-mail.com", "asia.com", "atheist.com", "auctioneer.net", |
536
|
|
|
"australiamail.com", "bartender.net", "bellair.net", "berlin.com", "bikerider.com", "birdlover.com", |
537
|
|
|
"blader.com", "boardermail.com", "brazilmail.com", "brew-master.com", "brew-meister.com", "bsdmail.com", |
538
|
|
|
"californiamail.com", "cash4u.com", "catlover.com", "cheerful.com", "chef.net", "chemist.com", |
539
|
|
|
"chinamail.com", "clerk.com", "clubmember.org", "collector.org", "columnist.com", "comic.com", |
540
|
|
|
"computer4u.com", "consultant.com", "contractor.net", "coolsite.net", "counsellor.com", "cutey.com", |
541
|
|
|
"cyber-wizard.com", "cyberdude.com", "cybergal.com", "cyberservices.com", "dallasmail.com", "dbzmail.com", |
542
|
|
|
"deliveryman.com", "diplomats.com", "disciples.com", "discofan.com", "disposable.com", "doctor.com", |
543
|
|
|
"doglover.com", "doramail.com", "dr.com", "dublin.com", "dutchmail.com", "elvisfan.com", |
544
|
|
|
"email.com", "engineer.com", "englandmail.com", "europe.com", "europemail.com", "execs.com", |
545
|
|
|
"fastservice.com", "financier.com", "fireman.net", "galaxyhit.com", "gardener.com", "geologist.com", |
546
|
|
|
"germanymail.com", "graduate.org", "graphic-designer.com", "greenmail.net", "groupmail.com", "hackermail.com", |
547
|
|
|
"hairdresser.net", "hilarious.com", "hiphopfan.com", "homemail.com", "hot-shot.com", "housemail.com", |
548
|
|
|
"humanoid.net", "iname.acom", "iname.com", "innocent.com", "inorbit.com", "instruction.com", |
549
|
|
|
"instructor.net", "insurer.com", "irelandmail.com", "israelmail.com", "italymail.com", "job4u.com", |
550
|
|
|
"journalist.com", "keromail.com", "kissfans.com", "kittymail.com", "koreamail.com", "legislator.com", |
551
|
|
|
"linuxmail.org", "lobbyist.com", "lovecat.com", "madonnafan.com", "mail-me.com", "mail.com", |
552
|
|
|
"marchmail.com", "metalfan.com", "mexicomail.com", "minister.com", "moscowmail.com", "munich.com", |
553
|
|
|
"musician.org", "muslim.com", "myself.com", "net-shopping.com", "ninfan.com", "nonpartisan.com", |
554
|
|
|
"null.net", "nycmail.com", "oath.com", "optician.com", "orthodontist.net", "pacific-ocean.com", |
555
|
|
|
"pacificwest.com", "pediatrician.com", "petlover.com", "photographer.net", "physicist.net", "planetmail.com", |
556
|
|
|
"planetmail.net", "polandmail.com", "politician.com", "post.com", "presidency.com", "priest.com", |
557
|
|
|
"programmer.net", "protestant.com", "publicist.com", "qualityservice.com", "radiologist.net", "ravemail.com", |
558
|
|
|
"realtyagent.com", "reborn.com", "reggaefan.com", "registerednurses.com", "reincarnate.com", "religious.com", |
559
|
|
|
"repairman.com", "representative.com", "rescueteam.com", "rocketship.com", "safrica.com", "saintly.com", |
560
|
|
|
"salesperson.net", "samerica.com", "sanfranmail.com", "scientist.com", "scotlandmail.com", "secretary.net", |
561
|
|
|
"snakebite.com", "socialworker.net", "sociologist.com", "solution4u.com", "songwriter.net", "spainmail.com", |
562
|
|
|
"surgical.net", "swedenmail.com", "swissmail.com", "teachers.org", "tech-center.com", "techie.com", |
563
|
|
|
"technologist.com", "theplate.com", "therapist.net", "toke.com", "toothfairy.com", "torontomail.com", |
564
|
|
|
"tvstar.com", "umpire.com", "usa.com", "uymail.com", "webname.com", "worker.com", |
565
|
|
|
"workmail.com", "writeme.com", "cloud.me", "indamail.hu", "irj.hu", "qip.ru", |
566
|
|
|
"zooglemail.com", "a.ua", "fm.com.ua", "ua.fm", "inet.ua", "meta.ua", |
567
|
|
|
"bk.ru", "list.ru", "borda.ru", "fromru.com", "front.ru", "hotmail.ru", |
568
|
|
|
"krovatka.su", "nm.ru", "5ballov.ru", "aeterna.ru", "ziza.ru", "memori.ru", |
569
|
|
|
"photofile.ru", "fotoplenka.ru", "pochta.com", "webmail.ru", "email.ru", "fax.ru", |
570
|
|
|
"aport.ru", "omen.ru", "atrus.ru", "aport2000.ru", "nm.ru", "tut.by", |
571
|
|
|
// free email providers end |
572
|
|
|
); |
573
|
|
|
} |
574
|
|
|
} |
575
|
|
|
|