| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Email::Public; |
|
2
|
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
38462
|
use warnings; |
|
|
3
|
|
|
|
|
9
|
|
|
|
3
|
|
|
|
|
110
|
|
|
4
|
3
|
|
|
3
|
|
18
|
use strict; |
|
|
3
|
|
|
|
|
7
|
|
|
|
3
|
|
|
|
|
124
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
Email::Public - Quickly find if an email address is from a public email provider |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 0.11 |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
|
15
|
|
|
|
|
|
|
|
|
16
|
3
|
|
|
3
|
|
18
|
use vars qw/$VERSION %PUBLIC_DOMAINS/ ; |
|
|
3
|
|
|
|
|
11
|
|
|
|
3
|
|
|
|
|
2101
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
$VERSION = '0.13'; |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This module relies on a list of domains known to be |
|
23
|
|
|
|
|
|
|
public email providers (such as yahoo , gmail, hotmail ... ). |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
To include a new domain in the list, or to remove one please submit a bug at |
|
26
|
|
|
|
|
|
|
L |
|
27
|
|
|
|
|
|
|
I'll be notified and I will review it. |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Code snippet: |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
use Email::Public; |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
if ( Email::Public->isPublic($email) ){ |
|
35
|
|
|
|
|
|
|
.... |
|
36
|
|
|
|
|
|
|
} |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 isPublic |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Returns true if the given email address belongs to the public list. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Usage: |
|
47
|
|
|
|
|
|
|
if ( Email::Public->isPublic($email) ){ |
|
48
|
|
|
|
|
|
|
.... |
|
49
|
|
|
|
|
|
|
} |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=cut |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
sub isPublic{ |
|
55
|
1
|
|
|
1
|
1
|
698
|
my ($class, $email) = @_ ; |
|
56
|
1
|
|
|
|
|
3
|
my ( $user , $domain ) = split('@' , $email ) ; |
|
57
|
|
|
|
|
|
|
|
|
58
|
1
|
|
|
|
|
7
|
return $PUBLIC_DOMAINS{lc($domain)} ; |
|
59
|
|
|
|
|
|
|
} |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
sub BEGIN{ |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
# |
|
65
|
|
|
|
|
|
|
# Please keep the list alpha sorted |
|
66
|
|
|
|
|
|
|
# |
|
67
|
3
|
|
|
3
|
|
31
|
map { $PUBLIC_DOMAINS{$_} = 1 } qw/ |
|
|
1626
|
|
|
|
|
5241
|
|
|
68
|
|
|
|
|
|
|
163.com |
|
69
|
|
|
|
|
|
|
absamail.co.za |
|
70
|
|
|
|
|
|
|
adelphia.net |
|
71
|
|
|
|
|
|
|
aim.com |
|
72
|
|
|
|
|
|
|
airtel.net |
|
73
|
|
|
|
|
|
|
aliceadsl.fr |
|
74
|
|
|
|
|
|
|
alice.it |
|
75
|
|
|
|
|
|
|
aol.com |
|
76
|
|
|
|
|
|
|
aol.com.au |
|
77
|
|
|
|
|
|
|
aol.com.mx |
|
78
|
|
|
|
|
|
|
aol.co.uk |
|
79
|
|
|
|
|
|
|
aol.de |
|
80
|
|
|
|
|
|
|
aol.es |
|
81
|
|
|
|
|
|
|
aol.fr |
|
82
|
|
|
|
|
|
|
aol.in |
|
83
|
|
|
|
|
|
|
aol.it |
|
84
|
|
|
|
|
|
|
aol.nl |
|
85
|
|
|
|
|
|
|
aol.se |
|
86
|
|
|
|
|
|
|
aon.at |
|
87
|
|
|
|
|
|
|
arcor.de |
|
88
|
|
|
|
|
|
|
att.net |
|
89
|
|
|
|
|
|
|
belgacom.net |
|
90
|
|
|
|
|
|
|
bellsouth.net |
|
91
|
|
|
|
|
|
|
bestmail.us |
|
92
|
|
|
|
|
|
|
bigfoot.com |
|
93
|
|
|
|
|
|
|
bigfoot.de |
|
94
|
|
|
|
|
|
|
bigpond.com |
|
95
|
|
|
|
|
|
|
bigpond.com.au |
|
96
|
|
|
|
|
|
|
bigpond.net.au |
|
97
|
|
|
|
|
|
|
bluewin.ch |
|
98
|
|
|
|
|
|
|
blueyonder.co.uk |
|
99
|
|
|
|
|
|
|
bol.com.br |
|
100
|
|
|
|
|
|
|
bt.com |
|
101
|
|
|
|
|
|
|
btinternet.com |
|
102
|
|
|
|
|
|
|
btopenworld.com |
|
103
|
|
|
|
|
|
|
cantv.net |
|
104
|
|
|
|
|
|
|
caramail.com |
|
105
|
|
|
|
|
|
|
cbn.net.id |
|
106
|
|
|
|
|
|
|
cegetel.net |
|
107
|
|
|
|
|
|
|
cellc.co.za |
|
108
|
|
|
|
|
|
|
centrum.cz |
|
109
|
|
|
|
|
|
|
charter.net |
|
110
|
|
|
|
|
|
|
click21.com.br |
|
111
|
|
|
|
|
|
|
clix.pt |
|
112
|
|
|
|
|
|
|
club-internet.fr |
|
113
|
|
|
|
|
|
|
clubinternet.fr |
|
114
|
|
|
|
|
|
|
comcast.net |
|
115
|
|
|
|
|
|
|
copper.net |
|
116
|
|
|
|
|
|
|
cox.net |
|
117
|
|
|
|
|
|
|
dbmail.com |
|
118
|
|
|
|
|
|
|
earthlink.net |
|
119
|
|
|
|
|
|
|
eircom.net |
|
120
|
|
|
|
|
|
|
e-mailanywhere.com |
|
121
|
|
|
|
|
|
|
email.com |
|
122
|
|
|
|
|
|
|
email.cz |
|
123
|
|
|
|
|
|
|
eresmas.com |
|
124
|
|
|
|
|
|
|
euskalnet.net |
|
125
|
|
|
|
|
|
|
evc.net |
|
126
|
|
|
|
|
|
|
excite.com |
|
127
|
|
|
|
|
|
|
fastmail.fm |
|
128
|
|
|
|
|
|
|
fastmail.us |
|
129
|
|
|
|
|
|
|
fastwebnet.it |
|
130
|
|
|
|
|
|
|
fnac.net |
|
131
|
|
|
|
|
|
|
free.fr |
|
132
|
|
|
|
|
|
|
freemail.hu |
|
133
|
|
|
|
|
|
|
freeserve.co.uk |
|
134
|
|
|
|
|
|
|
freesurf.fr |
|
135
|
|
|
|
|
|
|
fsmail.net |
|
136
|
|
|
|
|
|
|
gadz.org |
|
137
|
|
|
|
|
|
|
gawab.com |
|
138
|
|
|
|
|
|
|
gamail.com |
|
139
|
|
|
|
|
|
|
gmail.co.in |
|
140
|
|
|
|
|
|
|
gmail.com |
|
141
|
|
|
|
|
|
|
gmail.com.ar |
|
142
|
|
|
|
|
|
|
gmx.at |
|
143
|
|
|
|
|
|
|
gmx.de |
|
144
|
|
|
|
|
|
|
gmx.li |
|
145
|
|
|
|
|
|
|
gmx.net |
|
146
|
|
|
|
|
|
|
go2.pl |
|
147
|
|
|
|
|
|
|
googlemail.com |
|
148
|
|
|
|
|
|
|
highveldmail.co.za |
|
149
|
|
|
|
|
|
|
hispavista.com |
|
150
|
|
|
|
|
|
|
hispeed.ch |
|
151
|
|
|
|
|
|
|
hotbox.com |
|
152
|
|
|
|
|
|
|
hotmail.be |
|
153
|
|
|
|
|
|
|
hotmail.com |
|
154
|
|
|
|
|
|
|
hotmail.com.br |
|
155
|
|
|
|
|
|
|
hotmail.com.mx |
|
156
|
|
|
|
|
|
|
hotmail.co.uk |
|
157
|
|
|
|
|
|
|
hotmail.de |
|
158
|
|
|
|
|
|
|
hotmail.es |
|
159
|
|
|
|
|
|
|
hotmail.fr |
|
160
|
|
|
|
|
|
|
hotmail.it |
|
161
|
|
|
|
|
|
|
hotmail.co.li |
|
162
|
|
|
|
|
|
|
iafrica.com |
|
163
|
|
|
|
|
|
|
ibest.com.br |
|
164
|
|
|
|
|
|
|
ifrance.com |
|
165
|
|
|
|
|
|
|
ig.com.br |
|
166
|
|
|
|
|
|
|
imode.fr |
|
167
|
|
|
|
|
|
|
inbox.ru |
|
168
|
|
|
|
|
|
|
indiatimes.com |
|
169
|
|
|
|
|
|
|
infonie.fr |
|
170
|
|
|
|
|
|
|
inicia.es |
|
171
|
|
|
|
|
|
|
interia.pl |
|
172
|
|
|
|
|
|
|
iol.pt |
|
173
|
|
|
|
|
|
|
itelefonica.com.br |
|
174
|
|
|
|
|
|
|
juno.com |
|
175
|
|
|
|
|
|
|
katamail.com |
|
176
|
|
|
|
|
|
|
kittymail.com |
|
177
|
|
|
|
|
|
|
laposte.fr |
|
178
|
|
|
|
|
|
|
laposte.net |
|
179
|
|
|
|
|
|
|
latinmail.com |
|
180
|
|
|
|
|
|
|
libero.it |
|
181
|
|
|
|
|
|
|
libertysurf.fr |
|
182
|
|
|
|
|
|
|
live.be |
|
183
|
|
|
|
|
|
|
live.com |
|
184
|
|
|
|
|
|
|
live.com.mx |
|
185
|
|
|
|
|
|
|
live.com.pt |
|
186
|
|
|
|
|
|
|
live.co.uk |
|
187
|
|
|
|
|
|
|
live.co.za |
|
188
|
|
|
|
|
|
|
live.ie |
|
189
|
|
|
|
|
|
|
live.nl |
|
190
|
|
|
|
|
|
|
lycos.com |
|
191
|
|
|
|
|
|
|
lycos.co.uk |
|
192
|
|
|
|
|
|
|
lycos.es |
|
193
|
|
|
|
|
|
|
mageos.com |
|
194
|
|
|
|
|
|
|
mail.com |
|
195
|
|
|
|
|
|
|
mail.ru |
|
196
|
|
|
|
|
|
|
mail2world.com |
|
197
|
|
|
|
|
|
|
mailmate.co.za |
|
198
|
|
|
|
|
|
|
menara.ma |
|
199
|
|
|
|
|
|
|
messagerie.net |
|
200
|
|
|
|
|
|
|
mixmail.com |
|
201
|
|
|
|
|
|
|
msn.com |
|
202
|
|
|
|
|
|
|
msn.fr |
|
203
|
|
|
|
|
|
|
mweb.co.za |
|
204
|
|
|
|
|
|
|
mynet.com |
|
205
|
|
|
|
|
|
|
myway.com |
|
206
|
|
|
|
|
|
|
navegalia.com |
|
207
|
|
|
|
|
|
|
netcourrier.com |
|
208
|
|
|
|
|
|
|
netplus.ch |
|
209
|
|
|
|
|
|
|
netscape.com |
|
210
|
|
|
|
|
|
|
netscape.net |
|
211
|
|
|
|
|
|
|
net-up.com |
|
212
|
|
|
|
|
|
|
netzero.net |
|
213
|
|
|
|
|
|
|
neuf.fr |
|
214
|
|
|
|
|
|
|
nomade.fr |
|
215
|
|
|
|
|
|
|
noos.fr |
|
216
|
|
|
|
|
|
|
ntlworld.com |
|
217
|
|
|
|
|
|
|
numericable.com |
|
218
|
|
|
|
|
|
|
numericable.fr |
|
219
|
|
|
|
|
|
|
o2.pl |
|
220
|
|
|
|
|
|
|
oi.com.br |
|
221
|
|
|
|
|
|
|
onet.eu |
|
222
|
|
|
|
|
|
|
online.fr |
|
223
|
|
|
|
|
|
|
ono.com |
|
224
|
|
|
|
|
|
|
op.pl |
|
225
|
|
|
|
|
|
|
operamail.com |
|
226
|
|
|
|
|
|
|
optusnet.com.au |
|
227
|
|
|
|
|
|
|
orange.es |
|
228
|
|
|
|
|
|
|
orange.fr |
|
229
|
|
|
|
|
|
|
orangemail.es |
|
230
|
|
|
|
|
|
|
oreka.com |
|
231
|
|
|
|
|
|
|
ozu.es |
|
232
|
|
|
|
|
|
|
pandora.be |
|
233
|
|
|
|
|
|
|
paradise.net.nz |
|
234
|
|
|
|
|
|
|
peoplepc.com |
|
235
|
|
|
|
|
|
|
peoplepc.fr |
|
236
|
|
|
|
|
|
|
poczta.fm |
|
237
|
|
|
|
|
|
|
poczta.onet.pl |
|
238
|
|
|
|
|
|
|
pop.com.br |
|
239
|
|
|
|
|
|
|
portugalmail.pt |
|
240
|
|
|
|
|
|
|
prodigy.net.mx |
|
241
|
|
|
|
|
|
|
rediffmail.com |
|
242
|
|
|
|
|
|
|
romandie.com |
|
243
|
|
|
|
|
|
|
safe-mail.net |
|
244
|
|
|
|
|
|
|
sapo.pt |
|
245
|
|
|
|
|
|
|
sbcglobal.net |
|
246
|
|
|
|
|
|
|
scarlet.be |
|
247
|
|
|
|
|
|
|
seznam.cz |
|
248
|
|
|
|
|
|
|
sfr.fr |
|
249
|
|
|
|
|
|
|
sify.com |
|
250
|
|
|
|
|
|
|
sina.com.cn |
|
251
|
|
|
|
|
|
|
skynet.be |
|
252
|
|
|
|
|
|
|
sohu.com |
|
253
|
|
|
|
|
|
|
sohu.net |
|
254
|
|
|
|
|
|
|
surfsimple.net |
|
255
|
|
|
|
|
|
|
superonline.com |
|
256
|
|
|
|
|
|
|
swing.be |
|
257
|
|
|
|
|
|
|
sympatico.ca |
|
258
|
|
|
|
|
|
|
tele2.ch |
|
259
|
|
|
|
|
|
|
tele2.fr |
|
260
|
|
|
|
|
|
|
telefonica.net |
|
261
|
|
|
|
|
|
|
telenet.be |
|
262
|
|
|
|
|
|
|
telepolis.com |
|
263
|
|
|
|
|
|
|
telkomsa.net |
|
264
|
|
|
|
|
|
|
terra.com |
|
265
|
|
|
|
|
|
|
terra.com.br |
|
266
|
|
|
|
|
|
|
terra.es |
|
267
|
|
|
|
|
|
|
tiscali.be |
|
268
|
|
|
|
|
|
|
tiscali.co.uk |
|
269
|
|
|
|
|
|
|
tiscali.fr |
|
270
|
|
|
|
|
|
|
tiscali.it |
|
271
|
|
|
|
|
|
|
tlen.pl |
|
272
|
|
|
|
|
|
|
ttmail.com |
|
273
|
|
|
|
|
|
|
tvcablenet.de |
|
274
|
|
|
|
|
|
|
t-online.de |
|
275
|
|
|
|
|
|
|
t-online.hu |
|
276
|
|
|
|
|
|
|
uol.com.ar |
|
277
|
|
|
|
|
|
|
uol.com.br |
|
278
|
|
|
|
|
|
|
uol.com.co |
|
279
|
|
|
|
|
|
|
uol.com.mx |
|
280
|
|
|
|
|
|
|
uol.com.ve |
|
281
|
|
|
|
|
|
|
verizon.net |
|
282
|
|
|
|
|
|
|
virgilio.it |
|
283
|
|
|
|
|
|
|
virgin.net |
|
284
|
|
|
|
|
|
|
vodamail.co.za |
|
285
|
|
|
|
|
|
|
voila.fr |
|
286
|
|
|
|
|
|
|
vp.pl |
|
287
|
|
|
|
|
|
|
wanadoo.com |
|
288
|
|
|
|
|
|
|
wanadoo.es |
|
289
|
|
|
|
|
|
|
wanadoo.fr |
|
290
|
|
|
|
|
|
|
web.de |
|
291
|
|
|
|
|
|
|
webmail.co.za |
|
292
|
|
|
|
|
|
|
worldonline.fr |
|
293
|
|
|
|
|
|
|
wp.pl |
|
294
|
|
|
|
|
|
|
xtra.co.nz |
|
295
|
|
|
|
|
|
|
ya.com |
|
296
|
|
|
|
|
|
|
yahoo.ar |
|
297
|
|
|
|
|
|
|
yahoo.ca |
|
298
|
|
|
|
|
|
|
yahoo.co.in |
|
299
|
|
|
|
|
|
|
yahoo.com |
|
300
|
|
|
|
|
|
|
yahoo.com.ar |
|
301
|
|
|
|
|
|
|
yahoo.com.au |
|
302
|
|
|
|
|
|
|
yahoo.com.br |
|
303
|
|
|
|
|
|
|
yahoo.com.cn |
|
304
|
|
|
|
|
|
|
yahoo.com.hk |
|
305
|
|
|
|
|
|
|
yahoo.com.is |
|
306
|
|
|
|
|
|
|
yahoo.com.mx |
|
307
|
|
|
|
|
|
|
yahoo.com.ph |
|
308
|
|
|
|
|
|
|
yahoo.com.ru |
|
309
|
|
|
|
|
|
|
yahoo.com.sg |
|
310
|
|
|
|
|
|
|
yahoo.com.ve |
|
311
|
|
|
|
|
|
|
yahoo.co.jp |
|
312
|
|
|
|
|
|
|
yahoo.co.nz |
|
313
|
|
|
|
|
|
|
yahoo.co.uk |
|
314
|
|
|
|
|
|
|
yahoo.co.jp |
|
315
|
|
|
|
|
|
|
yahoo.co.kr |
|
316
|
|
|
|
|
|
|
yahoo.co.nz |
|
317
|
|
|
|
|
|
|
yahoo.co.uk |
|
318
|
|
|
|
|
|
|
yahoo.co.za |
|
319
|
|
|
|
|
|
|
yahoo.de |
|
320
|
|
|
|
|
|
|
yahoo.dk |
|
321
|
|
|
|
|
|
|
yahoo.es |
|
322
|
|
|
|
|
|
|
yahoo.fr |
|
323
|
|
|
|
|
|
|
yahoo.gr |
|
324
|
|
|
|
|
|
|
yahoo.ie |
|
325
|
|
|
|
|
|
|
yahoo.it |
|
326
|
|
|
|
|
|
|
yahoo.jp |
|
327
|
|
|
|
|
|
|
yahoo.nl |
|
328
|
|
|
|
|
|
|
yahoo.no |
|
329
|
|
|
|
|
|
|
yahoo.se |
|
330
|
|
|
|
|
|
|
yahoomail.com |
|
331
|
|
|
|
|
|
|
yopmail.com |
|
332
|
|
|
|
|
|
|
ymail.com |
|
333
|
|
|
|
|
|
|
zipmail.com.br |
|
334
|
|
|
|
|
|
|
zwallet.com |
|
335
|
|
|
|
|
|
|
|
|
336
|
|
|
|
|
|
|
mail.com |
|
337
|
|
|
|
|
|
|
email.com |
|
338
|
|
|
|
|
|
|
usa.com |
|
339
|
|
|
|
|
|
|
consultant.com |
|
340
|
|
|
|
|
|
|
myself.com |
|
341
|
|
|
|
|
|
|
europe.com |
|
342
|
|
|
|
|
|
|
london.com |
|
343
|
|
|
|
|
|
|
post.com |
|
344
|
|
|
|
|
|
|
engineer.com |
|
345
|
|
|
|
|
|
|
iname.com |
|
346
|
|
|
|
|
|
|
cheerful.com |
|
347
|
|
|
|
|
|
|
writeme.com |
|
348
|
|
|
|
|
|
|
lawyer.com |
|
349
|
|
|
|
|
|
|
dr.com |
|
350
|
|
|
|
|
|
|
asia.com |
|
351
|
|
|
|
|
|
|
techie.com |
|
352
|
|
|
|
|
|
|
accountant.com |
|
353
|
|
|
|
|
|
|
adexec.com |
|
354
|
|
|
|
|
|
|
allergist.com |
|
355
|
|
|
|
|
|
|
alumnidirector.com |
|
356
|
|
|
|
|
|
|
archaeologist.com |
|
357
|
|
|
|
|
|
|
bartender.net |
|
358
|
|
|
|
|
|
|
brew-master.com |
|
359
|
|
|
|
|
|
|
chef.net |
|
360
|
|
|
|
|
|
|
chemist.com |
|
361
|
|
|
|
|
|
|
clerk.com |
|
362
|
|
|
|
|
|
|
columnist.com |
|
363
|
|
|
|
|
|
|
consultant.com |
|
364
|
|
|
|
|
|
|
contractor.net |
|
365
|
|
|
|
|
|
|
counsellor.com |
|
366
|
|
|
|
|
|
|
deliveryman.com |
|
367
|
|
|
|
|
|
|
diplomats.com |
|
368
|
|
|
|
|
|
|
doctor.com |
|
369
|
|
|
|
|
|
|
execs.com |
|
370
|
|
|
|
|
|
|
financier.com |
|
371
|
|
|
|
|
|
|
fireman.net |
|
372
|
|
|
|
|
|
|
footballer.com |
|
373
|
|
|
|
|
|
|
gardener.com |
|
374
|
|
|
|
|
|
|
geologist.com |
|
375
|
|
|
|
|
|
|
graphic-designer.com |
|
376
|
|
|
|
|
|
|
hairdresser.net |
|
377
|
|
|
|
|
|
|
instructor.net |
|
378
|
|
|
|
|
|
|
insurer.com |
|
379
|
|
|
|
|
|
|
journalist.com |
|
380
|
|
|
|
|
|
|
legislator.com |
|
381
|
|
|
|
|
|
|
lobbyist.com |
|
382
|
|
|
|
|
|
|
mad.scientist.com |
|
383
|
|
|
|
|
|
|
minister.com |
|
384
|
|
|
|
|
|
|
monarchy.com |
|
385
|
|
|
|
|
|
|
optician.com |
|
386
|
|
|
|
|
|
|
orthodontist.net |
|
387
|
|
|
|
|
|
|
pediatrician.com |
|
388
|
|
|
|
|
|
|
photographer.net |
|
389
|
|
|
|
|
|
|
politician.com |
|
390
|
|
|
|
|
|
|
presidency.com |
|
391
|
|
|
|
|
|
|
programmer.net |
|
392
|
|
|
|
|
|
|
publicist.com |
|
393
|
|
|
|
|
|
|
radiologist.net |
|
394
|
|
|
|
|
|
|
realtyagent.com |
|
395
|
|
|
|
|
|
|
registerednurses.com |
|
396
|
|
|
|
|
|
|
repairman.com |
|
397
|
|
|
|
|
|
|
representative.com |
|
398
|
|
|
|
|
|
|
rescueteam.com |
|
399
|
|
|
|
|
|
|
salesperson.net |
|
400
|
|
|
|
|
|
|
scientist.com |
|
401
|
|
|
|
|
|
|
secretary.net |
|
402
|
|
|
|
|
|
|
socialworker.net |
|
403
|
|
|
|
|
|
|
sociologist.com |
|
404
|
|
|
|
|
|
|
songwriter.net |
|
405
|
|
|
|
|
|
|
teachers.org |
|
406
|
|
|
|
|
|
|
teacher.com |
|
407
|
|
|
|
|
|
|
technologist.com |
|
408
|
|
|
|
|
|
|
therapist.net |
|
409
|
|
|
|
|
|
|
tvstar.com |
|
410
|
|
|
|
|
|
|
umpire.com |
|
411
|
|
|
|
|
|
|
artlover.com |
|
412
|
|
|
|
|
|
|
bikerider.com |
|
413
|
|
|
|
|
|
|
birdlover.com |
|
414
|
|
|
|
|
|
|
catlover.com |
|
415
|
|
|
|
|
|
|
collector.org |
|
416
|
|
|
|
|
|
|
comic.com |
|
417
|
|
|
|
|
|
|
cutey.com |
|
418
|
|
|
|
|
|
|
doglover.com |
|
419
|
|
|
|
|
|
|
elvisfan.com |
|
420
|
|
|
|
|
|
|
gardener.com |
|
421
|
|
|
|
|
|
|
hockeymail.com |
|
422
|
|
|
|
|
|
|
madonnafan.com |
|
423
|
|
|
|
|
|
|
musician.org |
|
424
|
|
|
|
|
|
|
petlover.com |
|
425
|
|
|
|
|
|
|
reggaefan.com |
|
426
|
|
|
|
|
|
|
rocketship.com |
|
427
|
|
|
|
|
|
|
rockfan.com |
|
428
|
|
|
|
|
|
|
thegame.com |
|
429
|
|
|
|
|
|
|
africamail.com |
|
430
|
|
|
|
|
|
|
americamail.com |
|
431
|
|
|
|
|
|
|
arcticmail.com |
|
432
|
|
|
|
|
|
|
asia-mail.com |
|
433
|
|
|
|
|
|
|
australiamail.com |
|
434
|
|
|
|
|
|
|
berlin.com |
|
435
|
|
|
|
|
|
|
brazilmail.com |
|
436
|
|
|
|
|
|
|
chinamail.com |
|
437
|
|
|
|
|
|
|
dallasmail.com |
|
438
|
|
|
|
|
|
|
delhimail.com |
|
439
|
|
|
|
|
|
|
dublin.com |
|
440
|
|
|
|
|
|
|
dutchmail.com |
|
441
|
|
|
|
|
|
|
englandmail.com |
|
442
|
|
|
|
|
|
|
europe.com |
|
443
|
|
|
|
|
|
|
europemail.com |
|
444
|
|
|
|
|
|
|
germanymail.com |
|
445
|
|
|
|
|
|
|
indiamail.com |
|
446
|
|
|
|
|
|
|
irelandmail.com |
|
447
|
|
|
|
|
|
|
israelmail.com |
|
448
|
|
|
|
|
|
|
italymail.com |
|
449
|
|
|
|
|
|
|
japan.com |
|
450
|
|
|
|
|
|
|
koreamail.com |
|
451
|
|
|
|
|
|
|
madrid.com |
|
452
|
|
|
|
|
|
|
moscowmail.com |
|
453
|
|
|
|
|
|
|
mexicomail.com |
|
454
|
|
|
|
|
|
|
munich.com |
|
455
|
|
|
|
|
|
|
nycmail.com |
|
456
|
|
|
|
|
|
|
pacific-ocean.com |
|
457
|
|
|
|
|
|
|
pacificwest.com |
|
458
|
|
|
|
|
|
|
paris.com |
|
459
|
|
|
|
|
|
|
polandmail.com |
|
460
|
|
|
|
|
|
|
rome.com |
|
461
|
|
|
|
|
|
|
russiamail.com |
|
462
|
|
|
|
|
|
|
safrica.com |
|
463
|
|
|
|
|
|
|
samerica.com |
|
464
|
|
|
|
|
|
|
scotlandmail.com |
|
465
|
|
|
|
|
|
|
singapore.com |
|
466
|
|
|
|
|
|
|
spainmail.com |
|
467
|
|
|
|
|
|
|
swedenmail.com |
|
468
|
|
|
|
|
|
|
swissmail.com |
|
469
|
|
|
|
|
|
|
usa.com |
|
470
|
|
|
|
|
|
|
alabama.usa.com |
|
471
|
|
|
|
|
|
|
alaska.usa.com |
|
472
|
|
|
|
|
|
|
arizona.usa.com |
|
473
|
|
|
|
|
|
|
arkansas.usa.com |
|
474
|
|
|
|
|
|
|
california.usa.com |
|
475
|
|
|
|
|
|
|
colorado.usa.com |
|
476
|
|
|
|
|
|
|
connecticut.usa.com |
|
477
|
|
|
|
|
|
|
delaware.usa.com |
|
478
|
|
|
|
|
|
|
florida.usa.com |
|
479
|
|
|
|
|
|
|
georgia.usa.com |
|
480
|
|
|
|
|
|
|
hawaii.usa.com |
|
481
|
|
|
|
|
|
|
idaho.usa.com |
|
482
|
|
|
|
|
|
|
illinois.usa.com |
|
483
|
|
|
|
|
|
|
indiana.usa.com |
|
484
|
|
|
|
|
|
|
iowa.usa.com |
|
485
|
|
|
|
|
|
|
kansas.usa.com |
|
486
|
|
|
|
|
|
|
kentucky.usa.com |
|
487
|
|
|
|
|
|
|
louisiana.usa.com |
|
488
|
|
|
|
|
|
|
maine.usa.com |
|
489
|
|
|
|
|
|
|
maryland.usa.com |
|
490
|
|
|
|
|
|
|
massachusetts.usa.com |
|
491
|
|
|
|
|
|
|
michigan.usa.com |
|
492
|
|
|
|
|
|
|
minnesota.usa.com |
|
493
|
|
|
|
|
|
|
mississippi.usa.com |
|
494
|
|
|
|
|
|
|
missouri.usa.com |
|
495
|
|
|
|
|
|
|
montana.usa.com |
|
496
|
|
|
|
|
|
|
nebraska.usa.com |
|
497
|
|
|
|
|
|
|
nevada.usa.com |
|
498
|
|
|
|
|
|
|
newhampshire.usa.com |
|
499
|
|
|
|
|
|
|
newjersey.usa.com |
|
500
|
|
|
|
|
|
|
newmexico.usa.com |
|
501
|
|
|
|
|
|
|
newyork.usa.com |
|
502
|
|
|
|
|
|
|
northcarolina.usa.com |
|
503
|
|
|
|
|
|
|
northdakota.usa.com |
|
504
|
|
|
|
|
|
|
ohio.usa.com |
|
505
|
|
|
|
|
|
|
oklahoma.usa.com |
|
506
|
|
|
|
|
|
|
oregon.usa.com |
|
507
|
|
|
|
|
|
|
pennsylvania.usa.com |
|
508
|
|
|
|
|
|
|
rhodeisland.usa.com |
|
509
|
|
|
|
|
|
|
southcarolina.usa.com |
|
510
|
|
|
|
|
|
|
southdakota.usa.com |
|
511
|
|
|
|
|
|
|
tennessee.usa.com |
|
512
|
|
|
|
|
|
|
texas.usa.com |
|
513
|
|
|
|
|
|
|
utah.usa.com |
|
514
|
|
|
|
|
|
|
vermont.usa.com |
|
515
|
|
|
|
|
|
|
virginia.usa.com |
|
516
|
|
|
|
|
|
|
washington.usa.com |
|
517
|
|
|
|
|
|
|
westvirginia.usa.com |
|
518
|
|
|
|
|
|
|
wisconsin.usa.com |
|
519
|
|
|
|
|
|
|
wyoming.usa.com |
|
520
|
|
|
|
|
|
|
2die4.com |
|
521
|
|
|
|
|
|
|
angelic.com |
|
522
|
|
|
|
|
|
|
activist.com |
|
523
|
|
|
|
|
|
|
alumni.com |
|
524
|
|
|
|
|
|
|
amorous.com |
|
525
|
|
|
|
|
|
|
aroma.com |
|
526
|
|
|
|
|
|
|
atheist.com |
|
527
|
|
|
|
|
|
|
been-there.com |
|
528
|
|
|
|
|
|
|
bigger.com |
|
529
|
|
|
|
|
|
|
caress.com |
|
530
|
|
|
|
|
|
|
cliffhanger.com |
|
531
|
|
|
|
|
|
|
comic.com |
|
532
|
|
|
|
|
|
|
comfortable.com |
|
533
|
|
|
|
|
|
|
count.com |
|
534
|
|
|
|
|
|
|
couple.com |
|
535
|
|
|
|
|
|
|
cyberdude.com |
|
536
|
|
|
|
|
|
|
cybergal.com |
|
537
|
|
|
|
|
|
|
cyber-wizard.com |
|
538
|
|
|
|
|
|
|
dbzmail.com |
|
539
|
|
|
|
|
|
|
disciples.com |
|
540
|
|
|
|
|
|
|
disposable.com |
|
541
|
|
|
|
|
|
|
doramail.com |
|
542
|
|
|
|
|
|
|
doubt.com |
|
543
|
|
|
|
|
|
|
earthling.net |
|
544
|
|
|
|
|
|
|
fastermail.com |
|
545
|
|
|
|
|
|
|
feelings.com |
|
546
|
|
|
|
|
|
|
graduate.org |
|
547
|
|
|
|
|
|
|
hackermail.com |
|
548
|
|
|
|
|
|
|
hilarious.com |
|
549
|
|
|
|
|
|
|
homosexual.net |
|
550
|
|
|
|
|
|
|
hot-shot.com |
|
551
|
|
|
|
|
|
|
hour.com |
|
552
|
|
|
|
|
|
|
howling.com |
|
553
|
|
|
|
|
|
|
humanoid.net |
|
554
|
|
|
|
|
|
|
indiya.com |
|
555
|
|
|
|
|
|
|
innocent.com |
|
556
|
|
|
|
|
|
|
inorbit.com |
|
557
|
|
|
|
|
|
|
instruction.com |
|
558
|
|
|
|
|
|
|
keromail.com |
|
559
|
|
|
|
|
|
|
kittymail.com |
|
560
|
|
|
|
|
|
|
linuxmail.org |
|
561
|
|
|
|
|
|
|
loveable.com |
|
562
|
|
|
|
|
|
|
mailpuppy.com |
|
563
|
|
|
|
|
|
|
mcdull.net |
|
564
|
|
|
|
|
|
|
mcmug.org |
|
565
|
|
|
|
|
|
|
mindless.com |
|
566
|
|
|
|
|
|
|
minister.com |
|
567
|
|
|
|
|
|
|
muslim.com |
|
568
|
|
|
|
|
|
|
mobsters.com |
|
569
|
|
|
|
|
|
|
monarchy.com |
|
570
|
|
|
|
|
|
|
nastything.com |
|
571
|
|
|
|
|
|
|
nightly.com |
|
572
|
|
|
|
|
|
|
nonpartisan.com |
|
573
|
|
|
|
|
|
|
null.net |
|
574
|
|
|
|
|
|
|
oath.com |
|
575
|
|
|
|
|
|
|
orthodox.com |
|
576
|
|
|
|
|
|
|
outgun.com |
|
577
|
|
|
|
|
|
|
priest.com |
|
578
|
|
|
|
|
|
|
protestant.com |
|
579
|
|
|
|
|
|
|
playful.com |
|
580
|
|
|
|
|
|
|
poetic.com |
|
581
|
|
|
|
|
|
|
reborn.com |
|
582
|
|
|
|
|
|
|
reincarnate.com |
|
583
|
|
|
|
|
|
|
religious.com |
|
584
|
|
|
|
|
|
|
revenue.com |
|
585
|
|
|
|
|
|
|
rocketmail.com |
|
586
|
|
|
|
|
|
|
rocketship.com |
|
587
|
|
|
|
|
|
|
royal.net |
|
588
|
|
|
|
|
|
|
saintly.com |
|
589
|
|
|
|
|
|
|
sailormoon.com |
|
590
|
|
|
|
|
|
|
seductive.com |
|
591
|
|
|
|
|
|
|
sister.com |
|
592
|
|
|
|
|
|
|
sizzling.com |
|
593
|
|
|
|
|
|
|
skim.com |
|
594
|
|
|
|
|
|
|
snakebite.com |
|
595
|
|
|
|
|
|
|
soon.com |
|
596
|
|
|
|
|
|
|
surgical.net |
|
597
|
|
|
|
|
|
|
tempting.com |
|
598
|
|
|
|
|
|
|
toke.com |
|
599
|
|
|
|
|
|
|
toothfairy.com |
|
600
|
|
|
|
|
|
|
tough.com |
|
601
|
|
|
|
|
|
|
tvstar.com |
|
602
|
|
|
|
|
|
|
uymail.com |
|
603
|
|
|
|
|
|
|
wallet.com |
|
604
|
|
|
|
|
|
|
webname.com |
|
605
|
|
|
|
|
|
|
weirdness.com |
|
606
|
|
|
|
|
|
|
who.net |
|
607
|
|
|
|
|
|
|
whoever.com |
|
608
|
|
|
|
|
|
|
winning.com |
|
609
|
|
|
|
|
|
|
witty.com |
|
610
|
|
|
|
|
|
|
yours.com |
|
611
|
|
|
|
|
|
|
/ |
|
612
|
|
|
|
|
|
|
|
|
613
|
|
|
|
|
|
|
; |
|
614
|
|
|
|
|
|
|
} |
|
615
|
|
|
|
|
|
|
|
|
616
|
|
|
|
|
|
|
|
|
617
|
|
|
|
|
|
|
=head1 AUTHOR |
|
618
|
|
|
|
|
|
|
|
|
619
|
|
|
|
|
|
|
Jerome Eteve C<< >> |
|
620
|
|
|
|
|
|
|
|
|
621
|
|
|
|
|
|
|
=head1 BUGS |
|
622
|
|
|
|
|
|
|
|
|
623
|
|
|
|
|
|
|
Please report any bugs or feature requests to |
|
624
|
|
|
|
|
|
|
C, or through the web interface at |
|
625
|
|
|
|
|
|
|
L. |
|
626
|
|
|
|
|
|
|
I will be notified, and then you'll automatically be notified of progress on |
|
627
|
|
|
|
|
|
|
your bug as I make changes. |
|
628
|
|
|
|
|
|
|
|
|
629
|
|
|
|
|
|
|
=head1 SUPPORT |
|
630
|
|
|
|
|
|
|
|
|
631
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
|
632
|
|
|
|
|
|
|
|
|
633
|
|
|
|
|
|
|
perldoc Email::Public |
|
634
|
|
|
|
|
|
|
|
|
635
|
|
|
|
|
|
|
You can also look for information at: |
|
636
|
|
|
|
|
|
|
|
|
637
|
|
|
|
|
|
|
=over 4 |
|
638
|
|
|
|
|
|
|
|
|
639
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
|
640
|
|
|
|
|
|
|
|
|
641
|
|
|
|
|
|
|
L |
|
642
|
|
|
|
|
|
|
|
|
643
|
|
|
|
|
|
|
=item * CPAN Ratings |
|
644
|
|
|
|
|
|
|
|
|
645
|
|
|
|
|
|
|
L |
|
646
|
|
|
|
|
|
|
|
|
647
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker |
|
648
|
|
|
|
|
|
|
|
|
649
|
|
|
|
|
|
|
L |
|
650
|
|
|
|
|
|
|
|
|
651
|
|
|
|
|
|
|
=item * Search CPAN |
|
652
|
|
|
|
|
|
|
|
|
653
|
|
|
|
|
|
|
L |
|
654
|
|
|
|
|
|
|
|
|
655
|
|
|
|
|
|
|
=back |
|
656
|
|
|
|
|
|
|
|
|
657
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
|
658
|
|
|
|
|
|
|
|
|
659
|
|
|
|
|
|
|
Many thanks to L for the initial list. |
|
660
|
|
|
|
|
|
|
|
|
661
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
|
662
|
|
|
|
|
|
|
|
|
663
|
|
|
|
|
|
|
Copyright 2007 Jerome Eteve, all rights reserved. |
|
664
|
|
|
|
|
|
|
|
|
665
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
666
|
|
|
|
|
|
|
under the same terms as Perl itself. |
|
667
|
|
|
|
|
|
|
|
|
668
|
|
|
|
|
|
|
=cut |
|
669
|
|
|
|
|
|
|
|
|
670
|
|
|
|
|
|
|
|
|
671
|
|
|
|
|
|
|
1; # End of Email::Public |