-
Notifications
You must be signed in to change notification settings - Fork 0
/
public_email_services.go
105 lines (104 loc) · 2.88 KB
/
public_email_services.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package emailproviders
// https://email-verify.my-addr.com/list-of-most-popular-email-domains.php
var publicEmailServices = map[string]struct{}{
"gmail.com": empty,
"yahoo.com": empty,
"hotmail.com": empty,
"aol.com": empty,
"hotmail.co.uk": empty,
"hotmail.fr": empty,
"msn.com": empty,
"yahoo.fr": empty,
"wanadoo.fr": empty,
"orange.fr": empty,
"comcast.net": empty,
"yahoo.co.uk": empty,
"yahoo.com.br": empty,
"yahoo.co.in": empty,
"live.com": empty,
"rediffmail.com": empty,
"free.fr": empty,
"gmx.de": empty,
"web.de": empty,
"yandex.ru": empty,
"ymail.com": empty,
"libero.it": empty,
"outlook.com": empty,
"uol.com.br": empty,
"bol.com.br": empty,
"mail.ru": empty,
"cox.net": empty,
"hotmail.it": empty,
"sbcglobal.net": empty,
"sfr.fr": empty,
"live.fr": empty,
"verizon.net": empty,
"live.co.uk": empty,
"googlemail.com": empty,
"yahoo.es": empty,
"ig.com.br": empty,
"live.nl": empty,
"bigpond.com": empty,
"terra.com.br": empty,
"yahoo.it": empty,
"neuf.fr": empty,
"yahoo.de": empty,
"alice.it": empty,
"rocketmail.com": empty,
"att.net": empty,
"laposte.net": empty,
"facebook.com": empty,
"bellsouth.net": empty,
"yahoo.in": empty,
"hotmail.es": empty,
"charter.net": empty,
"yahoo.ca": empty,
"yahoo.com.au": empty,
"rambler.ru": empty,
"hotmail.de": empty,
"tiscali.it": empty,
"shaw.ca": empty,
"yahoo.co.jp": empty,
"sky.com": empty,
"earthlink.net": empty,
"optonline.net": empty,
"freenet.de": empty,
"t-online.de": empty,
"aliceadsl.fr": empty,
"virgilio.it": empty,
"home.nl": empty,
"qq.com": empty,
"telenet.be": empty,
"me.com": empty,
"yahoo.com.ar": empty,
"tiscali.co.uk": empty,
"yahoo.com.mx": empty,
"voila.fr": empty,
"gmx.net": empty,
"mail.com": empty,
"planet.nl": empty,
"tin.it": empty,
"live.it": empty,
"ntlworld.com": empty,
"arcor.de": empty,
"yahoo.co.id": empty,
"frontiernet.net": empty,
"hetnet.nl": empty,
"live.com.au": empty,
"yahoo.com.sg": empty,
"zonnet.nl": empty,
"club-internet.fr": empty,
"juno.com": empty,
"optusnet.com.au": empty,
"blueyonder.co.uk": empty,
"bluewin.ch": empty,
"skynet.be": empty,
"sympatico.ca": empty,
"windstream.net": empty,
"mac.com": empty,
"centurytel.net": empty,
"chello.nl": empty,
"live.ca": empty,
"aim.com": empty,
"bigpond.net.au": empty,
}