This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump version for 5.35.11
[perl5.git] / Porting / checkAUTHORS.pl
CommitLineData
5649b9c9 1#!/usr/bin/perl -w
b0a2ad1a 2package Porting::checkAUTHORS;
5649b9c9 3use strict;
74ecc54f
N
4use warnings;
5
6use v5.026;
7
cdad3b53 8use utf8;
5649b9c9 9use Getopt::Long;
0be47eca 10use Unicode::Collate;
7582f0f6
JV
11use Text::Wrap;
12$Text::Wrap::columns = 80;
5649b9c9 13
b0a2ad1a 14my ($committer, $patch, $author);
74ecc54f 15my ($rank, $ta, $ack, $who, $tap, $update) = (0) x 6;
b0a2ad1a 16my ($percentage, $cumulative, $reverse);
946fbe37 17my (%authors, %untraced, %patchers, %committers, %real_names);
74ecc54f 18my ( $from_commit, $to_commit );
b0a2ad1a
YO
19my ( $map, $preferred_email_or_github );
20my $AUTHORS_header;
21my $author_file= './AUTHORS';
22
23sub main {
24 my $result = GetOptions (
25 # modes
26 "who" => \$who,
27 "rank" => \$rank,
28 "thanks-applied" => \$ta,
29 "missing" => \$ack ,
30 "tap" => \$tap,
31 "update" => \$update,
32
33 # modifiers
34 "authors=s" => \$author_file,
35 "percentage" => \$percentage, # show as %age
36 "cumulative" => \$cumulative,
37 "reverse" => \$reverse,
38 "from=s" => \$from_commit,
39 "to=s" => \$to_commit,
40
41 );
42
43
44 my $has_from_commit = defined $from_commit ? 1 : 0;
45
46 if ( !$result # GetOptions failed
47 or ( $rank + $ta + $who + $ack + $tap + $update != 1 ) # use one and one exactly 'mode'
48 or !( scalar @ARGV + $has_from_commit ) # gitlog provided from --from or stdin
49 ) {
50 usage();
51 }
946fbe37 52
b0a2ad1a
YO
53 die "Can't locate '$author_file'. Specify it with '--authors <path>'."
54 unless -f $author_file;
55
56 ( $map, $preferred_email_or_github ) = generate_known_author_map();
57
58 my $preserve_case = $update ? 1 : 0;
59 my $AUTHORS_header = read_authors_file($author_file, $preserve_case);
60
61 if ($rank) {
62 parse_commits();
63 display_ordered(\%patchers);
64 } elsif ($ta) {
65 parse_commits();
66 display_ordered(\%committers);
67 } elsif ($tap) {
68 parse_commits_authors();
69 display_test_output(\%patchers, \%authors, \%real_names);
70 } elsif ($ack) {
71 parse_commits();
72 display_missing_authors(\%patchers, \%authors, \%real_names);
73 } elsif ($who) {
74 parse_commits();
75 list_authors(\%patchers, \%authors);
76 } elsif ( $update ) {
77 update_authors_files( \%authors, $map, $preferred_email_or_github, $author_file );
78 } else {
79 die "unknown mode";
80 }
7582f0f6 81
b0a2ad1a 82 exit(0);
7582f0f6
JV
83}
84
b0a2ad1a 85main() unless caller;
7582f0f6
JV
86
87sub usage {
88
5649b9c9 89 die <<"EOS";
946fbe37
DG
90Usage: $0 [modes] [modifiers] <git-log-output-file>
91
92Modes (use only one):
93 --who # show list of unique authors by full name
94 --rank # rank authors by patches
95 --thanks-applied # ranks committers of others' patches
96 --missing # display authors not in AUTHORS
97 --tap # show authors present/missing as TAP
74ecc54f 98 --update # update the AUTHORS file with missing
946fbe37
DG
99
100Modifiers:
101 --authors <authors-file> # path to authors file (default: ./AUTHORS)
102 --percentage # show rankings as percentages
103 --cumulative # show rankings cumulatively
104 --reverse # show rankings in reverse
74ecc54f
N
105 --from # git commit ID used for 'git log' source (use file from STDIN when missing)
106 --to[=HEAD] # git commit ID used for 'git log' destination, default to HEAD.
107
108Sample Usages:
109
110 \$ perl Porting/checkAUTHORS.pl --who --from=v5.31.6 --to=v5.31.7
111 \$ perl Porting/checkAUTHORS.pl --rank --percentage --from=v5.31.6
112 \$ perl Porting/checkAUTHORS.pl --thanks-applied --from=v5.31.6
113 \$ perl Porting/checkAUTHORS.pl --missing --from=v5.31.6
114 \$ perl Porting/checkAUTHORS.pl --tap --from=v5.31.6
115 \$ perl Porting/checkAUTHORS.pl --update --from=v5.31.6
116
117or the split int two and generate your own git log output
946fbe37
DG
118
119Generate git-log-output-file with git log --pretty=fuller rev1..rev2
47e01c32 120(or pipe by specifying '-' for stdin). For example:
74ecc54f 121 \$ git log --pretty=fuller v5.31.6..v5.31.7 > gitlog
946fbe37 122 \$ perl Porting/checkAUTHORS.pl --rank --percentage gitlog
74ecc54f
N
123
124
5649b9c9
NC
125EOS
126}
127
64265e98 128sub list_authors {
946fbe37
DG
129 my ($patchers, $authors) = @_;
130 binmode(STDOUT, ":utf8");
0be47eca 131 print wrap '', '', join(', ', Unicode::Collate->new(level => 1)->sort(
946fbe37 132 map { $authors->{$_} }
74ecc54f 133 grep { length $_ > 1 } # skip the exception '!' and '?'
0be47eca 134 keys %$patchers)) . ".\n";
64265e98 135}
7582f0f6 136
74ecc54f
N
137# use --from [and --to] if provided
138# otherwise fallback to stdin for backward compatibility
139sub _git_log {
140 if ( length $from_commit ) {
141 my ( $from, $to ) = ( $from_commit, $to_commit );
142 $to //= 'HEAD';
143 my $gitlog = [ qx{git log --pretty=fuller $from..$to} ];
144 die "git log failed: $!" unless $? == 0;
145 return $gitlog;
146 }
147
148 return [ <> ];
149}
150
151sub parse_commits {
152 my ( $process ) = @_;
153
154 $process //= \&process; # default processor
155
156 my $git_log = _git_log();
157
158 my @lines = split( /^commit\s*/sm, join( '', $git_log->@* ) );
159 foreach (@lines) {
7582f0f6
JV
160 next if m/^$/;
161 next if m/^(\S*?)^Merge:/ism; # skip merge commits
8a5e2fa6 162 if (m/^(.*?)^Author:\s*(.*?)^AuthorDate:\s*.*?^Commit:\s*(.*?)^(.*)$/gism) {
7582f0f6
JV
163
164 # new patch
8a5e2fa6 165 ( $patch, $author, $committer ) = ( $1, $2, $3 );
7582f0f6
JV
166 chomp($author);
167 unless ($author) { die $_ }
168 chomp($committer);
169 unless ($committer) { die $_ }
74ecc54f
N
170
171 $process->( $committer, $patch, $author );
7582f0f6
JV
172 } else {
173 die "XXX $_ did not match";
174 }
e427132c 175 }
e427132c 176
74ecc54f 177 return;
e427132c
JV
178}
179
74ecc54f
N
180# just grab authors. Quicker than parse_commits
181
182sub parse_commits_authors {
183
184 my $git_log = _git_log();
3877da06 185
74ecc54f 186 foreach ($git_log->@*) {
3877da06 187 next unless /^Author:\s*(.*)$/;
74ecc54f
N
188 my $author = $1;
189 $author = _raw_address($author);
190 $patchers{$author}++;
3877da06 191 }
3877da06 192
74ecc54f
N
193 return;
194}
e427132c 195
7582f0f6
JV
196sub generate_known_author_map {
197 my %map;
e427132c 198
74ecc54f
N
199 my %preferred_email_or_github;
200
201 my $previous_name = "";
202 my $previous_preferred_contact = "";
7582f0f6 203 while (<DATA>) {
74ecc54f
N
204 next if m{^\s*#};
205
7582f0f6
JV
206 chomp;
207 s/\\100/\@/g;
74ecc54f 208
7582f0f6 209 $_ = lc;
74ecc54f
N
210 if ( my ( $name, $contact ) = /^\s*([^#\s]\S*)\s+(.*\S)/ ) {
211
212 $name =~ s/^\\043/#/;
213 # use the previous stored email if the line starts by a '+'
214 if ( $name eq '+' ) {
215 $name = $previous_name;
216 }
217 else {
218 $previous_name = $name;
219 $previous_preferred_contact = $contact;
220 if ( index($name, '@' ) > 0 ) {
221 # if name is an email, then this is our preferred email... legacy list
222 $previous_preferred_contact = $name;
223 }
224 }
225
226 $map{$contact} = $name;
227
228 if ( $contact ne $previous_preferred_contact ) {
229 $preferred_email_or_github{$contact} = $previous_preferred_contact;
230 }
231 if ( $name ne '+' ) {
232 $preferred_email_or_github{$name} = $previous_preferred_contact;
233 }
7582f0f6
JV
234 }
235 }
8513229b 236
7582f0f6
JV
237 #
238 # Email addresses for we do not have names.
239 #
240 $map{$_} = "?"
241 for
242 "bah\100longitude.com",
243 "bbucklan\100jpl-devvax.jpl.nasa.gov",
244 "bilbo\100ua.fm",
245 "bob\100starlabs.net",
246 "cygwin\100cygwin.com",
247 "david\100dhaller.de", "erik\100cs.uni-jena.de", "info\100lingo.kiev.ua", # Lingo Translation agency
248 "jms\100mathras.comcast.net",
249 "premchai21\100yahoo.com",
250 "pxm\100nubz.org",
251 "raf\100tradingpost.com.au",
252 "smoketst\100hp46t243.cup.hp.com", "root\100chronos.fi.muni.cz", # no clue - jrv 20090803
253 "gomar\100md.media-web.de", # no clue - jrv 20090803
254 "data-drift\100so.uio.no", # no data. originally private message from 199701282014.VAA12645@selters.uio.no
255 "arbor\100al37al08.telecel.pt"
256 , # reported perlbug ticket 5196 - no actual code contribution. no real name - jrv 20091006
257 "oracle\100pcr8.pcr.com", # Reported perlbug ticket 1015 - no patch - Probably Ed Eddington ed@pcr.com
48f3d0c6 258 "snaury\100gmail.com", # Reported cpan ticket 35943, with patch for fix
7582f0f6
JV
259 ;
260
261 #
262 # Email addresses for people that don't have an email address in AUTHORS
263 # Presumably deliberately?
264 #
265
266 $map{$_} = '!' for
267
268 # Nick Ing-Simmons has passed away (2006-09-25).
269 "nick\100ing-simmons.net",
270 "nik\100tiuk.ti.com",
271 "nick.ing-simmons\100elixent.com",
272 "nick\100ni-s.u-net.com",
273 "nick.ing-simmons\100tiuk.ti.com",
274
275 # Iain Truskett has passed away (2003-12-29).
276 "perl\100dellah.anu.edu.au", "spoon\100dellah.org", "spoon\100cpan.org",
277
278 # Ton Hospel
279 "me-02\100ton.iguana.be", "perl-5.8.0\100ton.iguana.be", "perl5-porters\100ton.iguana.be",
280
281 # Beau Cox
282 "beau\100beaucox.com",
283
284 # Randy W. Sims
285 "ml-perl\100thepierianspring.org",
286
41dadfe2
JK
287 # Jason Hord
288 "pravus\100cpan.org",
289
7582f0f6
JV
290 # perl internal addresses
291 "perl5-porters\100africa.nicoh.com",
292 "perlbug\100perl.org",,
293 "perl5-porters.nicoh.com",
294 "perlbug-followup\100perl.org",
295 "perlbug-comment\100perl.org",
296 "bug-module-corelist\100rt.cpan.org",
297 "bug-storable\100rt.cpan.org",
298 "bugs-perl5\100bugs6.perl.org",
299 "unknown",
300 "unknown\100unknown",
301 "unknown\100longtimeago",
302 "unknown\100perl.org",
303 "",
304 "(none)",
305 ;
306
74ecc54f 307 return ( \%map, \%preferred_email_or_github );
7582f0f6 308}
e427132c 309
74ecc54f
N
310sub read_authors_file {
311 my ( $filename, $preserve_case ) = @_;
312 return unless defined $filename;
313
314 my @headers;
315
946fbe37 316 my (%count, %raw);
74ecc54f
N
317 {
318 open my $fh, '<', $filename or die "Can't open $filename: $!";
319 binmode $fh, ':encoding(UTF-8)';
320 my $in_header = 1;
321 while (<$fh>) {
7582f0f6 322 next if /^\#/;
74ecc54f 323 do { $in_header = 0; next } if /^-- /;
946fbe37 324 if (/^([^<]+)<([^>]+)>/) {
7582f0f6 325 # Easy line.
946fbe37
DG
326 my ($name, $email) = ($1, $2);
327 $name =~ s/\s*\z//;
328 $raw{$email} = $name;
329 $count{$email}++;
74ecc54f
N
330 } elsif ( /^([^@]+)\s+(\@\S+)\s*$/ ) {
331 my ($name, $github) = ($1, $2);
332 $name =~ s/\s*\z//;
333 $raw{$github} = $name;
334 $count{$github}++;
daeedd11 335 } elsif (/^([- .'\w]+)[\t\n]/) {
7582f0f6
JV
336
337 # Name only
338 $untraced{$1}++;
339 } elsif ( length $_ ) {
340 chomp;
341 warn "Can't parse line '$_'";
342 } else {
343 next;
344 }
345 }
74ecc54f
N
346 continue {
347 push @headers, $_ if $in_header;
348 }
8513229b 349 }
74ecc54f
N
350 foreach my $contact ( sort keys %raw ) {
351 print "E-mail $contact occurs $count{$contact} times\n" if $count{$contact} > 1;
352 my $lc = lc $contact;
353 my $key = $preserve_case ? $contact : $lc;
354 $authors{ $map->{$lc} || $key } = $raw{$contact};
7582f0f6 355 }
946fbe37 356 $authors{$_} = $_ for qw(? !);
74ecc54f
N
357
358 push @headers, '-- ', "\n";
359
360 return join( '', @headers );
361}
362
363sub update_authors_files {
364 my ( $authors, $known_authors, $preferred_email_or_github, $author_file ) = @_;
365
366 die qq[Cannot find AUTHORS file '$author_file'] unless -f $author_file;
367 binmode(STDOUT, ":utf8");
368
369 # add missing authors from the recent commits
370 _detect_new_authors_from_recent_commit( $authors, $known_authors );
371
372 my @author_names = sort { $a cmp $b } values %$authors;
373 my $maxlen = length [ sort { length $b <=> length $a } @author_names ]->[0];
374
375 my @list;
376 foreach my $github_or_email ( sort keys %authors ) {
377
378 next if length $github_or_email == 1;
379
380 my $name = $authors{$github_or_email};
381 $name =~ s{\s+$}{};
382
383 #$github_or_email = $known_authors->{ $github_or_email } // $github_or_email;
384 $github_or_email = $preferred_email_or_github->{ $github_or_email } // $github_or_email;
385
386 if ( index( $github_or_email, '@' ) != 0 ) { # preserve '<>' for unicode consortium
387 $github_or_email = '<' . $github_or_email . '>';
388 }
389
390 push @list, sprintf( "%-${maxlen}s %s\n", $name, $github_or_email);
391 }
392
393 # preserve the untraced authors :-) [without email or GitHub account]
394 push @list, map { "$_\n" } keys %untraced;
395
396 {
397 open my $fh, '>', $author_file or die "Can't open $author_file: $!";
27a8225f 398 binmode $fh, ':raw:encoding(UTF-8)';
74ecc54f
N
399
400 print {$fh} $AUTHORS_header;
401
402 map { print {$fh} $_ } sort { lc $a cmp lc $b } @list;
403
404 close $fh;
405
406 }
407
408 return;
8513229b
A
409}
410
74ecc54f
N
411# read all recent commits and check if the author email is known
412# if the email is unknown add the author's GitHub account if possible or his email
413sub _detect_new_authors_from_recent_commit {
414 my ( $authors, $known_authors ) = @_;
415
416 my $check_if_email_known = sub {
417 my ( $email ) = @_;
418
419 my $preferred = $map->{$email} // $map->{lc $email}
420 // $preferred_email_or_github->{$email}
421 // $preferred_email_or_github->{lc $email}
422 // $email;
423
424 return $authors{$preferred} || $authors{ lc $preferred } ? 1 : 0;
425 };
426
427 my $already_checked = {};
428 my $process = sub {
429 my ( $committer, $patch, $author ) = @_;
430
431 foreach my $person ( $author, $committer ) {
432 next unless length $person;
433 next if $already_checked->{$person};
434 $already_checked->{$person} = 1;
435
436 my $is_author = $person eq $author;
437
438 if ( $person =~ m{^(.+)\s+<(.+)>$} ) {
439 my ( $name, $email ) = ( $1, $2 );
440
441 # skip unicode consortium and bad emails
442 if ( index( $email, '@' ) <= 0 ) {
443 warn "# Skipping new author: $person - bad email";
444 next;
445 }
446
447 next if $check_if_email_known->( $email );
448
449 # for new users we would prefer using the GitHub account
450 my $github_or_email = _commit_to_github_id( $patch, $is_author ) // $email;
451
452 next if $check_if_email_known->( $github_or_email );
453
454 print "# Detected a new author: $name using email $email [ $github_or_email ]\n";
455 $authors{$github_or_email} = $name; # add it to the list of authors
456 } else {
457 warn "Fail to parse author: $person";
458 }
459 }
460 };
461
462 parse_commits( $process );
463
464 return;
465}
466
467sub _commit_to_github_id {
468 my ( $commit, $is_author ) = @_;
469
470 chomp $commit if defined $commit;
471 return unless length $commit;
472
473 eval { require HTTP::Tiny; 1 } or do {
474 warn "HTTP::Tiny is missing, cannot detect GitHub account from commit id.";
475 no warnings;
476 *_commit_to_github_id = sub {};
477 return;
478 };
479
480 my $github_url_for_commit = q[https://github.com/Perl/perl5/commit/] . $commit;
481 my $response = HTTP::Tiny->new->get( $github_url_for_commit );
482
483 if ( ! $response->{success} ) {
484 warn "HTTP Request Failed: '$github_url_for_commit'";
485 return;
486 }
487
488 my $content = $response->{content} // '';
489
490 # poor man scrapping - probably have to be improved over time
491 # try to parse something like: <a href="/Perl/perl5/commits?author=ThisIsMyGitHubID"
492 my @github_ids; # up to two entries author and committer
493 while ( $content =~ s{\Q<a href="/Perl/perl5/commits?author=\E(.+)"}{} ) {
494 push @github_ids, '@' . $1;
495 }
496
497 warn "Found more than two github ids for $github_url_for_commit" if scalar @github_ids > 2;
498
499 return $github_ids[0] if $is_author;
500 if ( !$is_author && scalar @github_ids >= 2 ) {
501 return $github_ids[1]; # committer is the second entry
502 }
503
504 return $github_ids[0];
505}
506
507
7582f0f6
JV
508sub display_test_output {
509 my $patchers = shift;
510 my $authors = shift;
511 my $real_names = shift;
512 my $count = 0;
3877da06 513 printf "1..%d\n", scalar keys %$patchers;
74ecc54f
N
514
515 foreach my $email ( sort keys %$patchers ) {
3877da06 516 $count++;
74ecc54f
N
517 if ($authors->{$email}) {
518 print "ok $count - ".$real_names->{$email} ." $email\n";
7582f0f6 519 } else {
a5931453
YO
520 print "not ok $count - Contributor not found in AUTHORS. ",
521 ($real_names->{$email} || '???' )." $email\n",
522 "# To fix run Porting/updateAUTHORS.pl and then review",
523 " and commit the result.\n";
524 print STDERR "# ", ($real_names->{$email} || '???' ), " <$email>",
525 " not found in AUTHORS.\n",
526 "# To fix run Porting/updateAUTHORS.pl and then review",
527 " and commit the result.\n";
7582f0f6 528 }
7582f0f6 529 }
74ecc54f
N
530
531 return;
5649b9c9
NC
532}
533
e427132c 534sub display_missing_authors {
7582f0f6
JV
535 my $patchers = shift;
536 my $authors = shift;
e427132c 537 my $real_names = shift;
7582f0f6
JV
538 my %missing;
539 foreach ( sort keys %$patchers ) {
540 next if $authors->{$_};
541
542 # Sort by number of patches, then name.
543 $missing{ $patchers{$_} }->{$_}++;
544 }
545 foreach my $patches ( sort { $b <=> $a } keys %missing ) {
546 print "\n\n=head1 $patches patch(es)\n\n";
547 foreach my $author ( sort keys %{ $missing{$patches} } ) {
548 my $xauthor = $author;
549 $xauthor =~ s/@/\\100/g; # xxx temp hack
550 print "" . ( $real_names->{$author} || $author ) . "\t\t\t<" . $xauthor . ">\n";
551 }
5649b9c9 552 }
74ecc54f
N
553
554 return;
5649b9c9
NC
555}
556
557sub display_ordered {
7582f0f6
JV
558 my $what = shift;
559 my @sorted;
560 my $total;
561
562 while ( my ( $name, $count ) = each %$what ) {
563 push @{ $sorted[$count] }, $name;
564 $total += $count;
565 }
566
567 my $i = @sorted;
568 return unless @sorted;
569 my $sum = 0;
570 foreach my $i ( $reverse ? 0 .. $#sorted : reverse 0 .. $#sorted ) {
571 next unless $sorted[$i];
572 my $prefix;
573 $sum += $i * @{ $sorted[$i] };
574
575 # Value to display is either this one, or the cumulative sum.
576 my $value = $cumulative ? $sum : $i;
577 if ($percentage) {
578 $prefix = sprintf "%6.2f:\t", 100 * $value / $total;
579 } else {
580 $prefix = "$value:\t";
581 }
582 print wrap ( $prefix, "\t", join( " ", sort @{ $sorted[$i] } ), "\n" );
15b8f96d 583 }
74ecc54f
N
584
585 return;
5649b9c9
NC
586}
587
588sub process {
7582f0f6
JV
589 my ( $committer, $patch, $author ) = @_;
590 return unless $author;
591 return unless $committer;
592
593 $author = _raw_address($author);
594 $patchers{$author}++;
595
596 $committer = _raw_address($committer);
597 if ( $committer ne $author ) {
598
599 # separate commit credit only if committing someone else's patch
600 $committers{$committer}++;
601 }
74ecc54f
N
602
603 return;
5649b9c9
NC
604}
605
00229b97
JV
606sub _raw_address {
607 my $addr = shift;
608 my $real_name;
350bd8f1 609 if ($addr =~ /(?:\\?")?\s*\(via RT\) <perlbug-followup\@perl\.org>$/p) {
08dc3bc8 610 my $name = ${^PREMATCH};
e529a387 611 $addr = 'perlbug-followup@perl.org';
08dc3bc8
A
612 #
613 # Try to find the author
614 #
ac664a5e
DR
615 if (exists $map->{$name}) {
616 $addr = $map->{$name};
617 $real_name = $authors{$addr};
618 }
619 else {
620 while (my ($email, $author_name) = each %authors) {
621 if ($name eq $author_name) {
622 $addr = $email;
623 $real_name = $name;
624 last;
625 }
08dc3bc8
A
626 }
627 }
628 }
629 elsif ( $addr =~ /<.*>/ ) {
7582f0f6
JV
630 $addr =~ s/^\s*(.*)\s*<\s*(.*?)\s*>.*$/$2/;
631 $real_name = $1;
00229b97 632 }
5a528087
CB
633 $addr =~ s/\[mailto://;
634 $addr =~ s/\]//;
00229b97 635 $addr = lc $addr;
e427132c 636 $addr = $map->{$addr} || $addr;
7582f0f6 637 $addr =~ s/\\100/@/g; # Sometimes, there are encoded @ signs in the git log.
5e8353a0 638
7582f0f6 639 if ($real_name) { $real_names{$addr} = $real_name }
74ecc54f 640
00229b97
JV
641 return $addr;
642}
643
b0a2ad1a 6441; # make sure we return true in case we are required.
8513229b
A
645__DATA__
646
647#
74ecc54f
N
648# List of mappings. First entry the "correct" email address or GitHub account,
649# as appears in the AUTHORS file. Other lines are "alias" mapped to it.
8513229b 650#
a695a9ef 651# If the "correct" email address is a '+', the entry above it is reused;
8513229b
A
652# this for addresses with more than one alias.
653#
654# Note that all entries are in lowercase. Further, no '@' signs should
655# appear; use \100 instead.
656#
657#
658# Committers.
659#
d1bce42c
N
660adamh \100BytesGuy
661+ bytesguy\100users.noreply.github.com
662+ git\100ahartley.com
8513229b
A
663adi enache\100rdslink.ro
664alanbur alan.burlison\100sun.com
665+ alan.burlison\100uk.sun.com
00229b97
JV
666+ aburlison\100cix.compulink.co.uk
667ams ams\100toroid.org
668+ ams\100wiw.org
74ecc54f
N
669atoomic \100atoomic
670+ atoomic\100cpan.org
671+ cpan\100atoomic.org
672+ nicolas\100atoomic.org
8513229b 673chip chip\100pobox.com
00229b97
JV
674+ chip\100perl.com
675+ salzench\100nielsenmedia.com
676+ chip\100atlantic.net
677+ chip\100rio.atlantic.net
678+ salzench\100dun.nielsen.com
3bf51dad 679+ chip\100ci005.sv2.upperbeyond.com
74ecc54f 680craigb craigberry\100mac.com
8513229b
A
681+ craig.berry\100metamorgs.com
682+ craig.berry\100signaltreesolutions.com
74ecc54f 683+ craig.berry\100psinetcs.com
a94e4597 684+ craig.a.berry\100gmail.com
e82692ac 685+ craig a. berry)
74ecc54f
N
686davem davem\100iabyn.nospamdeletethisbit.com
687+ davem\100fdgroup.com
a94e4597 688+ davem\100iabyn.com
8513229b
A
689+ davem\100fdgroup.co.uk
690+ davem\100fdisolutions.com
691+ davem\100iabyn.com
692demerphq demerphq\100gmail.com
693+ yves.orton\100de.mci.com
694+ yves.orton\100mciworldcom.de
745b54e4 695+ yves.orton\100booking.com
00229b97
JV
696+ demerphq\100dromedary.booking.com
697+ demerphq\100gemini.(none)
698+ demerphq\100camel.booking.com
699+ demerphq\100hotmail.com
8513229b 700doughera doughera\100lafayette.edu
00229b97
JV
701+ doughera\100lafcol.lafayette.edu
702+ doughera\100fractal.phys.lafayette.edu
703+ doughera.lafayette.edu
704+ doughera\100newton.phys.lafayette.edu
705
8513229b 706gbarr gbarr\100pobox.com
00229b97
JV
707+ bodg\100tiuk.ti.com
708+ gbarr\100ti.com
709+ graham.barr\100tiuk.ti.com
e82692ac 710+ gbarr\100monty.mutatus.co.uk
74ecc54f
N
711gisle gisle\100aas.no
712+ gisle\100activestate.com
00229b97
JV
713+ aas\100aas.no
714+ aas\100bergen.sn.no
74ecc54f
N
715gsar gsar\100cpan.org
716+ gsar\100activestate.com
00229b97 717+ gsar\100engin.umich.edu
74ecc54f
N
718hv hv\100crypt.org
719+ hv\100crypt.compulink.co.uk
00229b97 720+ hv\100iii.co.uk
8513229b
A
721jhi jhi\100iki.fi
722+ jhietaniemi\100gmail.com
723+ jhi\100kosh.hut.fi
00229b97 724+ jhi\100alpha.hut.fi
8513229b 725+ jhi\100cc.hut.fi
fda5b70a 726+ jhi\100hut.fi
8513229b 727+ jarkko.hietaniemi\100nokia.com
00229b97 728+ jarkko.hietaniemi\100cc.hut.fi
63d7924f 729+ jarkko.hietaniemi\100booking.com
74ecc54f
N
730jesse jesse\100fsck.com
731+ jesse\100bestpractical.com
00229b97 732+ jesse\100perl.org
8513229b 733merijn h.m.brand\100xs4all.nl
b14d03de
MB
734+ h.m.brand\100procura.nl
735+ merijn.brand\100procura.nl
8513229b
A
736+ h.m.brand\100hccnet.nl
737+ merijn\100l1.procura.nl
e82692ac 738+ merijn\100a5.(none)
c2e6241c 739+ perl5\100tux.freedom.nl
8513229b 740mhx mhx-perl\100gmx.net
e82692ac 741+ mhx\100r2d2.(none)
2ce8ebb9 742+ mhx\100cpan.org
93456aa7
JV
743mst mst\100shadowcat.co.uk
744+ matthewt\100hercule.scsys.co.uk
74ecc54f
N
745nicholas nick\100ccl4.org
746+ nick\100unfortu.net
8513229b
A
747+ nick\100talking.bollo.cx
748+ nick\100plum.flirble.org
749+ nick\100babyhippo.co.uk
750+ nick\100bagpuss.unfortu.net
e82692ac 751+ nick\100babyhippo.com
93456aa7 752+ nicholas\100dromedary.ams6.corp.booking.com
e82692ac 753+ Nicholas Clark (sans From field in mail header)
8513229b 754pudge pudge\100pobox.com
74ecc54f
N
755rgs rgs@consttype.org
756+ rgarciasuarez\100free.fr
8513229b
A
757+ rgarciasuarez\100mandrakesoft.com
758+ rgarciasuarez\100mandriva.com
759+ rgarciasuarez\100gmail.com
760+ raphel.garcia-suarez\100hexaflux.com
74ecc54f
N
761sky artur\100contiller.se
762+ sky\100nanisky.com
8513229b 763+ arthur\100contiller.se
74ecc54f
N
764smueller smueller\100cpan.org
765+ 7k8lrvf02\100sneakemail.com
86e2f329
S
766+ kjx9zthh3001\100sneakemail.com
767+ dtr8sin02\100sneakemail.com
768+ rt8363b02\100sneakemail.com
769+ o6hhmk002\100sneakemail.com
86e2f329
S
770+ l2ot9pa02\100sneakemail.com
771+ wyp3rlx02\100sneakemail.com
772+ 0mgwtfbbq\100sneakemail.com
773+ xyey9001\100sneakemail.com
03c4920e
SH
774steveh steve.m.hay\100googlemail.com
775+ stevehay\100planit.com
b692cd7a 776+ steve.hay\100uk.radan.com
8513229b
A
777stevep steve\100fisharerojo.org
778+ steve.peters\100gmail.com
e82692ac 779+ root\100dixie.cscaper.com
00229b97
JV
780timb Tim.Bunce\100pobox.com
781+ tim.bunce\100ig.co.uk
87ff2bbe
TC
782tonyc tony\100develop-help.com
783+ tony\100openbsd32.tony.develop-help.com
a2d496af 784+ tony\100saturn.(none)
8513229b
A
785
786#
787# Mere mortals.
788#
00229b97 789\043####\100juerd.nl juerd\100cpan.org
212682ea 790+ juerd\100c3.convolution.nl
00229b97 791+ juerd\100convolution.nl
00229b97 792a.r.ferreira\100gmail.com aferreira\100shopzilla.com
8513229b 793abe\100ztreet.demon.nl abeltje\100cpan.org
00229b97 794abela\100hsc.fr abela\100geneanet.org
8513229b
A
795abigail\100abigail.be abigail\100foad.org
796+ abigail\100abigail.nl
00229b97 797+ abigail\100fnx.com
e82692ac 798aburt\100isis.cs.du.edu isis!aburt
00229b97 799ach\100mpe.mpg.de ach\100rosat.mpe-garching.mpg.de
e82692ac 800adavies\100ptc.com alex.davies\100talktalk.net
8513229b 801ajohnson\100nvidia.com ajohnson\100wischip.com
e82692ac 802+ anders\100broadcom.com
8513229b 803alexm\100netli.com alexm\100w-m.ru
a94e4597 804alex-p5p\100earth.li alex\100rcon.rog
00229b97 805alexmv\100mit.edu alex\100chmrr.net
8513229b 806alian\100cpan.org alian\100alianwebserver.com
00229b97
JV
807allen\100grumman.com allen\100gateway.grumman.com
808allen\100huarp.harvard.edu nort\100bottesini.harvard.edu
e82692ac 809+ nort\100qnx.com
8513229b 810allens\100cpan.org easmith\100beatrice.rutgers.edu
e82692ac 811+ root\100dogberry.rutgers.edu
fcacab09 812ambs\100cpan.org hashashin\100gmail.com
74ecc54f
N
813andrea a.koenig@mind.de
814+ andreas.koenig\100anima.de
815+ andreas.koenig.gmwojprw\100franz.ak.mind.de
00229b97 816+ andreas.koenig.7os6vvqr\100franz.ak.mind.de
8513229b 817+ a.koenig\100mind.de
00229b97
JV
818+ k\100anna.in-berlin.de
819+ andk\100cpan.org
820+ koenig\100anna.mind.de
821+ k\100anna.mind.de
e82692ac
MB
822+ root\100ak-71.mind.de
823+ root\100ak-75.mind.de
824+ k\100sissy.in-berlin.de
825+ a.koenig\100kulturbox.de
826+ k\100sissy.in-berlin.de
827+ root\100dubravka.in-berlin.de
8513229b
A
828anno4000\100lublin.zrz.tu-berlin.de anno4000\100mailbox.tu-berlin.de
829+ siegel\100zrz.tu-berlin.de
25b68122 830apocal@cpan.org perl\1000ne.us
e82692ac
MB
831arnold\100gnu.ai.mit.edu arnold\100emoryu2.arpa
832+ gatech!skeeve!arnold
7dbe2044 833arodland\100cpan.org andrew\100hbslabs.com
e82692ac 834arussell\100cs.uml.edu adam\100adam-pc.(none)
8513229b 835ash\100cpan.org ash_cpan\100firemirror.com
74ecc54f
N
836avar avar\100cpan.org
837+ avarab\100gmail.com
00229b97
JV
838bailey\100newman.upenn.edu bailey\100hmivax.humgen.upenn.edu
839+ bailey\100genetics.upenn.edu
e82692ac 840+ bailey.charles\100gmail.com
8513229b 841bah\100ecnvantage.com bholzman\100longitude.com
e82692ac
MB
842barries\100slaysys.com root\100jester.slaysys.com
843bkedryna\100home.com bart\100cg681574-a.adubn1.nj.home.com
00229b97 844bcarter\100gumdrop.flyinganvil.org q.eibcartereio.=~m-b.{6}-cgimosx\100gumdrop.flyinganvil.org
8513229b 845ben_tilly\100operamail.com btilly\100gmail.com
e82692ac
MB
846+ ben_tilly\100hotmail.com
847ben\100morrow.me.uk mauzo\100csv.warwick.ac.uk
848+ mauzo\100.(none)
849bepi\100perl.it enrico.sorcinelli\100gmail.com
850bert\100alum.mit.edu bert\100genscan.com
93456aa7 851bigbang7\100gmail.com ddascalescu+github\100gmail.com
f8a89dce 852blgl\100stacken.kth.se blgl\100hagernas.com
6fd0ab63 853+ 2bfjdsla52kztwejndzdstsxl9athp\100gmail.com
61cf68d3
KW
854b@os13.org brad+github\10013os.net
855khw\100cpan.org khw\100karl.(none)
d203773f 856brian.d.foy\100gmail.com bdfoy\100cpan.org
e82692ac 857BQW10602\100nifty.com sadahiro\100cpan.org
ac664a5e 858bulk88\100hotmail.com bulk88
8513229b 859
4bba85d0 860chad.granum\100dreamhost.com exodist7\100gmail.com
4d88742b 861choroba\100cpan.org choroba\100weed.(none)
cfffcaf6 862+ choroba\100matfyz.cz
8513229b 863chromatic\100wgz.org chromatic\100rmci.net
201da6ff 864ckuskie\100cadence.com colink\100perldreamer.com
040d2336 865claes\100surfar.nu claes\100versed.se
e82692ac 866clintp\100geeksalad.org cpierce1\100ford.com
8513229b 867clkao\100clkao.org clkao\100bestpractical.com
00229b97 868corion\100corion.net corion\100cpan.org
74ecc54f 869+ github@corion.net
8513229b
A
870cp\100onsitetech.com publiustemp-p5p\100yahoo.com
871+ publiustemp-p5p3\100yahoo.com
56e374c7 872+ ovid\100cpan.org
8513229b
A
873cpan\100audreyt.org autrijus\100egb.elixus.org
874+ autrijus\100geb.elixus.org
875+ autrijus\100gmail.com
876+ autrijus\100ossf.iis.sinica.edu.tw
877+ autrijus\100autrijus.org
878+ audreyt\100audreyt.org
e82692ac 879cpan\100ton.iguana.be me-01\100ton.iguana.be
d203773f 880crt\100kiski.net perl\100ctweten.amsite.com
b5525597 881cp\100onsitetech.com ovid\100cpan.org
e82692ac 882dairiki\100dairiki.org dairiki at dairiki.org
fda5b70a 883dagolden\100cpan.org xdaveg\100gmail.com
6fb5c52d 884+ xdg\100xdg.me
895db057 885damian\100conway.org damian\100cs.monash.edu.au
00229b97
JV
886dan\100sidhe.org sugalsd\100lbcc.cc.or.us
887+ sugalskd\100osshe.edu
e82692ac 888daniel\100bitpusher.com daniel\100biz.bitpusher.com
83cad695 889dave\100mag-sol.com dave\100dave.org.uk
cc4fcefc 890+ dave\100perlhacks.com
8513229b 891david.dyck\100fluke.com dcd\100tc.fluke.com
9d1ee727
KW
892david\100justatheory.com david\100wheeler.net
893+ david\100kineticode.com
894+ david\100wheeler.com
e82692ac 895+ david\100wheeler.net
c2e08204 896whatever\100davidnicol.com davidnicol\100gmail.com
3bf51dad 897dennis\100booking.com dennis\100camel.ams6.corp.booking.com
6439ee77 898+ dennis.kaarsemaker\100booking.com
a4d824de 899+ dennis\100kaarsemaker.net
d203773f 900dev-perl\100pimb.org knew-p5p\100pimb.org
5a528087 901+ lists-p5p\100pimb.org
e82692ac 902djberg86\100attbi.com djberg96\100attbi.com
09c3cef4 903dk\100tetsuo.karasik.eu.org dmitry\100karasik.eu.org
79bd11b0 904dma+github@stripysock.com dominichamon@users.noreply.github.com
61edc94a 905dom\100earth.li dom\100semmle.com
8513229b 906domo\100computer.org shouldbedomo\100mac.com
00229b97 907+ domo\100slipper.ip.lu
e82692ac 908+ domo\100tcp.ip.lu
00229b97
JV
909dougm\100covalent.net dougm\100opengroup.org
910+ dougm\100osf.org
e82692ac
MB
911dougw\100cpan.org doug_wilson\100intuit.com
912dwegscheid\100qtm.net wegscd\100whirlpool.com
913edwardp\100excitehome.net epeschko\100den-mdev1
914+ epeschko\100elmer.tci.com
915+ esp5\100pge.com
00229b97 916egf7\100columbia.edu efifer\100sanwaint.com
e82692ac 917eggert\100twinsun.com eggert\100sea.sm.unisys.com
2330d9b7 918etj\100cpan.org mohawk2\100users.noreply.github.com
8513229b
A
919
920fugazi\100zyx.net larrysh\100cpan.org
e82692ac 921+ lshatzer\100islanddata.com
8513229b 922
e82692ac 923gbacon\100itsc.uah.edu gbacon\100adtrn-srv4.adtran.com
d203773f 924gerberb\100zenez.com root\100devsys0.zenez.com
e82692ac 925gfuji\100cpan.org g.psy.va\100gmail.com
14ccab5a 926genesullivan50\100yahoo.com gsullivan\100cpan.org
e82692ac 927gerard\100ggoossen.net gerard\100tty.nl
fda5b70a
JV
928gibreel\100pobox.com stephen.zander\100interlock.mckesson.com
929+ srz\100loopback
b9ff0c49 930gideon\100cpan.org gidisrael\100gmail.com
00229b97 931gnat\100frii.com gnat\100prometheus.frii.com
8513229b
A
932gp\100familiehaase.de gerrit\100familiehaase.de
933grazz\100pobox.com grazz\100nyc.rr.com
d203773f 934gward\100ase.com greg\100bic.mni.mcgill.ca
a22ececd
AHA
935haggai\100cpan.org alanhaggai\100alanhaggai.org
936+ alanhaggai\100gmail.com
00229b97
JV
937hansmu\100xs4all.nl hansm\100icgroup.nl
938+ hansm\100icgned.nl
939+ hans\100icgned.nl
b5e2dde1 940+ hans\100icgroup.nl
00229b97 941+ hansm\100euronet.nl
e82692ac 942+ hansm\100euro.net
8513229b 943hio\100ymir.co.jp hio\100hio.jp
e82692ac 944hops\100sco.com hops\100scoot.pdev.sco.com
8513229b 945
74314d7a 946ian.goodacre\100xtra.co.nz ian\100debian.lan
e82692ac 947ingo_weinhold\100gmx.de bonefish\100cs.tu-berlin.de
c07671d7 948
e82692ac 949james\100mastros.biz theorb\100desert-island.me.uk
5ab3d1b3
JD
950jan\100jandubois.com jand\100activestate.com
951+ jan.dubois\100ibm.net
8513229b
A
952japhy\100pobox.com japhy\100pobox.org
953+ japhy\100perlmonk.org
954+ japhy\100cpan.org
e82692ac 955+ jeffp\100crusoe.net
8513229b 956jari.aalto\100poboxes.com jari.aalto\100cante.net
e82692ac
MB
957jarausch\100numa1.igpm.rwth-aachen.de helmutjarausch\100unknown
958jasons\100cs.unm.edu jasons\100sandy-home.arc.unm.edu
959jbuehler\100hekimian.com jhpb\100hekimian.com
74ecc54f 960jcromie\100cpan.org jcromie\100100divsol.com
8513229b 961+ jim.cromie\100gmail.com
1ae6ead9 962jd\100cpanel.net lightsey\100debian.org
9c2db7b8
JL
963+ john\10004755.net
964+ john\100nixnuts.net
8513229b
A
965jdhedden\100cpan.org jerry\100hedden.us
966+ jdhedden\1001979.usna.com
967+ jdhedden\100gmail.com
968+ jdhedden\100yahoo.com
e82692ac 969+ jhedden\100pn100-02-2-356p.corp.bloomberg.com
9846bace 970+ jdhedden\100solydxk
e82692ac 971jeremy\100zawodny.com jzawodn\100wcnet.org
d203773f 972jesse\100sig.bsh.com jesse\100ginger
8513229b 973jfriedl\100yahoo.com jfriedl\100yahoo-inc.com
e82692ac 974jfs\100fluent.com jfs\100jfs.fluent.com
fd548ba4
FC
975jhannah\100mutationgrid.com jay\100jays.net
976+ jhannah\100omnihotels.com
977jidanni\100jidanni.org jidanni\100hoffa.dreamhost.com
8513229b 978jjore\100cpan.org twists\100gmail.com
dfe12d64
JK
979jkeenan\100cpan.org jkeen\100verizon.net
980+ jkeenan\100dromedary-001.ams6.corp.booking.com
fda5b70a
JV
981jns\100integration-house.com jns\100gellyfish.com
982+ gellyfish\100gellyfish.com
e82692ac
MB
983john\100atlantech.com john\100titanic.atlantech.com
984john\100johnwright.org john.wright\100hp.com
985joseph\100cscaper.com joseph\1005sigma.com
986joshua\100rodd.us jrodd\100pbs.org
987jtobey\100john-edwin-tobey.org jtobey\100user1.channel1.com
9feb1316 988jpeacock\100messagesystems.com john.peacock\100havurah-software.org
fda5b70a 989+ jpeacock\100havurah-software.org
e82692ac 990+ jpeacock\100dsl092-147-156.wdc1.dsl.speakeasy.net
feaafc86 991+ jpeacock\100jpeacock-hp.doesntexist.org
05ddb96b 992+ jpeacock\100cpan.org
9feb1316 993+ jpeacock\100rowman.com
a25f3052 994james.schneider\100db.com jschneid\100netilla.com
277c21af 995jpl.jpl\100gmail.com jpl\100research.att.com
d203773f 996jql\100accessone.com jql\100jql.accessone.com
e82692ac 997jsm28\100hermes.cam.ac.uk jsm28\100cam.ac.uk
8513229b
A
998
999kane\100dwim.org kane\100xs4all.net
1000+ kane\100cpan.org
1001+ kane\100xs4all.nl
1002+ jos\100dwim.org
1003+ jib\100ripe.net
60d42009 1004keith.s.thompson\100gmail.com kst\100mib.org
00229b97 1005ken\100mathforum.org kenahoo\100gmail.com
e82692ac 1006+ ken.williams\100thomsonreuters.com
31a15f36 1007kentfredric\100gmail.com kentnl\100cpan.org
63781094
RS
1008kmx\100volny.cz kmx\100volny.cz
1009+ kmx\100cpan.org
8513229b 1010kroepke\100dolphin-services.de kay\100dolphin-services.de
78d25b6c
JV
1011kst\100mib.org kst\100cts.com
1012+ kst\100SDSC.EDU
8513229b 1013kstar\100wolfetech.com kstar\100cpan.org
00229b97 1014+ kurt_starsinic\100ml.com
e82692ac
MB
1015+ kstar\100www.chapin.edu
1016+ kstar\100chapin.edu
00229b97
JV
1017larry\100wall.org lwall\100jpl-devvax.jpl.nasa.gov
1018+ lwall\100netlabs.com
1019+ larry\100netlabs.com
1020+ lwall\100sems.com
1021+ lwall\100scalpel.netlabs.com
e82692ac
MB
1022laszlo.molnar\100eth.ericsson.se molnarl\100cdata.tvnet.hu
1023+ ml1050\100freemail.hu
946fbe37 1024lewart\100uiuc.edu lewart\100vadds.cvm.uiuc.edu
00229b97 1025+ d-lewart\100uiuc.edu
86e663be 1026lindblad@gmx.com 52227507+apparluk\100users.noreply.github.com
84ad9c6c 1027lkundrak\100v3.sk lubo.rintel\100gooddata.com
e82692ac
MB
1028lstein\100cshl.org lstein\100formaggio.cshl.org
1029+ lstein\100genome.wi.mit.edu
84ad9c6c 1030l.mai\100web.de plokinom\100gmail.com
e82692ac
MB
1031lupe\100lupe-christoph.de lupe\100alanya.m.isar.de
1032lutherh\100stratcom.com lutherh\100infinet.com
1033mab\100wdl.loral.com markb\100rdcf.sm.unisys.com
00229b97 1034marcel\100codewerk.com gr\100univie.ac.at
06fdbb00 1035+ hanekomu\100gmail.com
9d0e037a 1036marcgreen\100cpan.org marcgreen\100wpi.edu
d4cb306b 1037markleightonfisher\100gmail.com fisherm\100tce.com
a8a7611f 1038+ mark-fisher\100mindspring.com
e82692ac
MB
1039mark.p.lutz\100boeing.com tecmpl1\100triton.ca.boeing.com
1040marnix\100gmail.com pttesac!marnix!vanam
88048be8 1041marty+p5p\100kasei.com marty\100martian.org
8513229b
A
1042mats\100sm6sxl.net mats\100sm5sxl.net
1043mbarbon\100dsi.unive.it mattia.barbon\100libero.it
a73beef9 1044+ mattia\100barbon.org
8513229b 1045mcmahon\100ibiblio.org mcmahon\100metalab.unc.edu
e82692ac
MB
1046me\100davidglasser.net glasser\100tang-eleven-seventy-nine.mit.edu
1047merijnb\100iloquent.nl merijnb\100ms.com
1048+ merijnb\100iloquent.com
d203773f 1049merlyn\100stonehenge.com merlyn\100gadget.cscaper.com
d5564dc4 1050mestre.smash\100gmail.com smash\100cpan.org
8513229b 1051mgjv\100comdyn.com.au mgjv\100tradingpost.com.au
e82692ac 1052mlh\100swl.msd.ray.com webtools\100uewrhp03.msd.ray.com
8513229b
A
1053michael.schroeder\100informatik.uni-erlangen.de mls\100suse.de
1054mike\100stok.co.uk mike\100exegenix.com
65160686 105561100689+mikefultondev\100users.noreply.github.com mikefultonpersonal\100gmail.com
e7613a67 1056miyagawa\100bulknews.net miyagawa\100edge.co.jp
8513229b 1057mjtg\100cam.ac.uk mjtg\100cus.cam.ac.uk
e82692ac 1058mikedlr\100tardis.ed.ac.uk mikedlr\100it.com.pl
fda5b70a 1059moritz\100casella.verplant.org moritz\100faui2k3.org
e82692ac 1060+ moritz lenz
fda5b70a 1061
e82692ac 1062neale\100VMA.TABNSW.COM.AU neale\100pucc.princeton.edu
d203773f 1063neeracher\100mac.com neeri\100iis.ee.ethz.ch
d3529994
NB
1064neilb\100neilb.org neilb\100cre.canon.co.uk
1065+ neil\100bowers.com
20b15ed1 1066
8513229b
A
1067nospam-abuse\100bloodgate.com tels\100bloodgate.com
1068+ perl_dummy\100bloodgate.com
00229b97 1069
e82692ac
MB
1070ian.phillipps\100iname.com ian_phillipps\100yahoo.co.uk
1071+ ian\100dial.pipex.com
00229b97 1072ignasi.roca\100fujitsu-siemens.com ignasi.roca\100fujitsu.siemens.es
e82692ac 1073ikegami\100adaelis.com eric\100fmdev10.(none)
d203773f 1074ilmari\100ilmari.org ilmari\100vesla.ilmari.org
e82692ac 1075illpide\100telecel.pt arbor\100al37al08.telecel.pt
20b15ed1
JV
1076# see http://www.nntp.perl.org/group/perl.perl5.porters/2001/01/msg28925.html
1077#
a94e4597
S
1078ilya\100math.berkeley.edu ilya\100math.ohio-state.edu
1079+ nospam-abuse\100ilyaz.org
e82692ac 1080+ [9]ilya\100math.ohio-state.edu
d203773f 1081ilya\100martynov.org ilya\100juil.nonet
8513229b 1082
74ecc54f 1083joshua\100paloalto.com joshua.pritikin\100db.com
31febfb6 1084
9fcef2a0
FC
1085litt\100acm.org tlhackque\100yahoo.com
1086
3b8d3bda
FC
1087meyering@asic.sc.ti.com jim\100meyering.net
1088
00229b97 1089okamoto\100corp.hp.com okamoto\100hpcc123.corp.hp.com
e82692ac 1090orwant\100oreilly.com orwant\100media.mit.edu
00229b97 1091
8513229b
A
1092p5-authors\100crystalflame.net perl\100crystalflame.net
1093+ rs\100crystalflame.net
00229b97
JV
1094+ coral\100eekeek.org
1095+ coral\100moonlight.crystalflame.net
1096+ rs\100oregonnet.com
93456aa7 1097+ rs\100topsy.com
8513229b 1098paul.green\100stratus.com paul_greenvos\100vos.stratus.com
e82692ac 1099+ pgreen\100seussnt.stratus.com
74ecc54f
N
1100pmqs pmqs\100cpan.org
1101+ paul.marquess\100btinternet.com
1102+ paul_marquess\100yahoo.co.uk
8513229b
A
1103+ paul.marquess\100ntlworld.com
1104+ paul.marquess\100openwave.com
00229b97
JV
1105+ pmarquess\100bfsec.bt.co.uk
1106+ pmqs\100cpan.org
e82692ac
MB
1107+ paul\100paul-desktop.(none)
1108Pavel.Zakouril\100mff.cuni.cz root\100egg.karlov.mff.cuni.cz
8513229b 1109pcg\100goof.com schmorp\100schmorp.de
00229b97 1110perl\100cadop.com cdp\100hpescdp.fc.hp.com
e82692ac 1111perl\100greerga.m-l.org greerga\100m-l.org
00229b97
JV
1112perl\100profvince.com vince\100profvince.com
1113perl-rt\100wizbit.be p5p\100perl.wizbit.be
8513229b 1114# Maybe we should special case this to get real names out?
946fbe37 1115Peter.Dintelmann\100Dresdner-Bank.com peter.dintelmann\100dresdner-bank.com
fda5b70a 1116# NOTE: There is an intentional trailing space in the line above
00229b97 1117pfeifer\100wait.de pfeifer\100charly.informatik.uni-dortmund.de
e82692ac 1118+ upf\100de.uu.net
820179ea 1119pjacklam\100online.no pjacklam\100gmail.com
36a4e1d1
NC
1120ribasushi@cpan.org rabbit\100rabbit.us
1121+ rabbit+bugs\100rabbit.us
74ecc54f
N
1122arc\100cpan.org perl\100aaroncrane.co.uk
1123+ arc@users.noreply.github.com
8513229b
A
1124phil\100perkpartners.com phil\100finchcomputer.com
1125pimlott\100idiomtech.com andrew\100pimlott.net
e82692ac
MB
1126+ pimlott\100abel.math.harvard.edu
1127pixel\100mandriva.com pixel\100mandrakesoft.com
8513229b
A
1128pne\100cpan.org philip.newton\100gmx.net
1129+ philip.newton\100datenrevision.de
1130+ pnewton\100gmx.de
00229b97 1131pprymmer\100factset.com pvhp\100forte.com
3eab96ca
KW
1132khw\100cpan.org khw\100karl.(none)
1133+ public\100khwilliamson.com
e82692ac 1134+ khw\100khw-desktop.(none)
8513229b
A
1135
1136radu\100netsoft.ro rgreab\100fx.ro
d1bce42c
N
1137raiph \100raiph
1138+ raiph.mellor\100gmail.com
549122ae 1139rajagopa\100pauline.schrodinger.com rajagopa\100schrodinger.com
00229b97 1140raphael.manfredi\100pobox.com raphael_manfredi\100grenoble.hp.com
11c344ff 1141info\100perl-services.de renee.baecker\100smart-websolutions.de
117a8c22 1142+ reneeb\100reneeb-desktop.(none)
2a0a66b0 1143+ github\100renee-baecker.de
2bacf451 1144+ otrs\100ubuntu.(none)
524cd813 1145+ perl\100renee-baecker.de
7bb7565a 1146+ reb\100perl-services.de
11c344ff 1147+ module\100renee-baecker.de
2a0a66b0 1148rich+perl\100hyphen-dash-hyphen.info richardleach\100users.noreply.github.com
f157ad77 1149richard.foley\100rfi.net richard.foley\100t-online.de
8513229b 1150+ richard.foley\100ubs.com
f157ad77 1151+ richard.foley\100ubsw.com
8513229b
A
1152rick\100consumercontact.com rick\100bort.ca
1153+ rick.delaney\100rogers.com
a94e4597 1154+ rick\100bort.ca
e82692ac 1155+ rick.delaney\100home.com
4bc69901 1156rjbs\100cpan.org rjbs-perl-p5p\100lists.manxome.org
e82692ac 1157+ perl.p5p\100rjbs.manxome.org
e32da612 1158+ rjbs\100semiotic.systems
45e193f5 1159+ rjbs\100users.noreply.github.com
8513229b
A
1160rjk\100linguist.dartmouth.edu rjk\100linguist.thayer.dartmouth.edu
1161+ rjk-perl-p5p\100tamias.net
ec36440e 1162+ rjk\100tamias.net
e82692ac 1163rjray\100redhat.com rjray\100uswest.com
8513229b 1164rmgiroux\100acm.org rmgiroux\100hotmail.com
e82692ac 1165+ mgiroux\100bear.com
a94e4597
S
1166rmbarker\100cpan.org rmb1\100cise.npl.co.uk
1167+ robin.barker\100npl.co.uk
00229b97 1168+ rmb\100cise.npl.co.uk
5b2081f5 1169+ robin\100spade-ubuntu.(none)
b2061475 1170+ r.m.barker\100btinternet.com
34c029c7 1171+ rmbarker.cpan\100btinternet.com
00229b97 1172robertmay\100cpan.org rob\100themayfamily.me.uk
d203773f 1173roberto\100keltia.freenix.fr roberto\100eurocontrol.fr
00229b97
JV
1174robin\100cpan.org robin\100kitsite.com
1175roderick\100argon.org roderick\100gate.net
e82692ac 1176+ roderick\100ibcinc.com
3560ee4d 1177argrath\100ub32.org root\100ub32.org
8513229b 1178rootbeer\100teleport.com rootbeer\100redcat.com
e82692ac 1179+ tomphoenix\100unknown
76bea4b7 1180rra\100stanford.edu rra\100cpan.org
74ecc54f 1181rurban\100cpan.org rurban\100x-ray.at
080d4cd3 1182+ rurban\100cpanel.net
2515a12c 1183rvtol+news\100isolution.nl rvtol\100isolution.nl
74ecc54f 1184sartak\100gmail.com sartak\100bestpractical.com
a3d8b840 1185+ code\100sartak.org
74ecc54f 1186danny-cpan\100sadinoff.com sadinoff\100olf.com
8513229b
A
1187schubiger\100cpan.org steven\100accognoscere.org
1188+ sts\100accognoscere.org
00229b97 1189+ schubiger\100gmail.com
f273d1e7 1190+ stsc\100refcnt.org
8513229b 1191schwern\100pobox.com schwern\100gmail.com
8ed05479
MS
1192+ schwern\100athens.arena-i.com
1193+ schwern\100blackrider.aocn.com
1194+ schwern\100ool-18b93024.dyn.optonline.net
a6580681 1195scop\100cs132170.pp.htv.fi ville.skytta\100iki.fi
e82692ac
MB
1196scotth\100sgi.com author scotth\100sgi.com 842220273 +0000
1197+ schotth\100sgi.com
1198schwab\100suse.de schwab\100issan.informatik.uni-dortmund.de
1199+ schwab\100ls5.informatik.uni-dortmund.de
8513229b
A
1200sebastien\100aperghis.net maddingue\100free.fr
1201+ saper\100cpan.org
1048cfac 1202shigeya\100wide.ad.jp shigeya\100foretune.co.jp
917cc27d
SF
1203shlomif\100cpan.org shlomif\100vipe.technion.ac.il
1204+ shlomif\100iglu.org.il
ff47f462 1205+ shlomif+processed-by-perl\100gmail.com
be235cc1 1206+ shlomif\100shlomifish.org
74ecc54f
N
1207simon\100netthink.co.uk simon\100simon-cozens.org
1208+ simon\100pembro4.pmb.ox.ac.uk
8513229b
A
1209+ simon\100brecon.co.uk
1210+ simon\100othersideofthe.earth.li
1211+ simon\100cozens.net
74ecc54f 1212+
2dcd19f0
S
1213sisyphus\100cpan.org sisyphus1\100optusnet.com.au
1214+ sisyphus359\100gmail.com
cd799e5a
SL
1215lannings\100who.int lannings\100gmail.com
1216+ slanning\100cpan.org
8513229b 1217slaven\100rezic.de slaven.rezic\100berlin.de
a94e4597 1218+ srezic\100iconmobile.com
00229b97 1219+ srezic\100cpan.org
e82692ac
MB
1220+ eserte\100cs.tu-berlin.de
1221+ eserte\100vran.herceg.de
8513229b
A
1222smcc\100mit.edu smcc\100ocf.berkeley.edu
1223+ smcc\100csua.berkeley.edu
00229b97 1224+ alias\100mcs.com
fda5b70a 1225+ smccam\100uclink4.berkeley.edu
8513229b
A
1226spider\100orb.nashua.nh.us spider\100web.zk3.dec.com
1227+ spider\100leggy.zk3.dec.com
1228+ spider-perl\100orb.nashua.nh.us
1229+ spider\100peano.zk3.dec.com
fda5b70a
JV
1230+ spider.boardman\100orb.nashua.nh.us>
1231+ spidb\100cpan.org
e82692ac
MB
1232+ spider.boardman\100orb.nashua.nh.us
1233+ root\100peano.zk3.dec.com
74ecc54f 1234s.denaxas\100gmail.com spiros\100lokku.com
00229b97 1235spp\100ds.net spp\100psa.pencom.com
fda5b70a
JV
1236+ spp\100psasolar.colltech.com
1237+ spp\100spotter.yi.org
8513229b
A
1238stef\100mongueurs.net stef\100payrard.net
1239+ s.payrard\100wanadoo.fr
e82692ac
MB
1240+ properler\100freesurf.fr
1241+ stef\100francenet.fr
cb991fd8 1242stevan\100cpan.org stevan.little\100gmail.com
c6a7f572 1243+ stevan.little\100iinteractive.com
e82692ac 1244sthoenna\100efn.org ysth\100raven.shiftboard.com
8513229b
A
1245
1246tassilo.parseval\100post.rwth-aachen.de tassilo.von.parseval\100rwth-aachen.de
e82692ac
MB
1247tchrist\100perl.com tchrist\100mox.perl.com
1248+ tchrist\100jhereg.perl.com
1249thomas.dorner\100start.de tdorner\100amadeus.net
1250tjenness\100cpan.org t.jenness\100jach.hawaii.edu
1251+ timj\100jach.hawaii.edu
1252tobez\100tobez.org tobez\100plab.ku.dk
2fe8fc10 1253toddr\100cpan.org toddr\100cpanel.net
e82692ac
MB
1254tom\100compton.nu thh\100cyberscience.com
1255tom.horsley\100mail.ccur.com tom.horsley\100ccur.com
1256+ tom\100amber.ssd.hcsc.com
1257
1258vkonovalov\100lucent.com vkonovalov\100peterstar.ru
1259+ konovalo\100mail.wplus.net
1260+ vadim\100vkonovalov.ru
1261+ vkonovalov\100spb.lucent.com
1262+ vkonovalov\100alcatel-lucent.com
058a5f6c 1263+ vadim.konovalov\100alcatel-lucent.com
e82692ac
MB
1264
1265whatever\100davidnicol.com davidnicol\100gmail.com
1266wolfgang.laun\100alcatel.at wolfgang.laun\100chello.at
1267+ wolfgang.laun\100thalesgroup.com
1268+ wolfgang.laun\100gmail.com
64698074 1269wolfsage\100gmail.com mhorsfall\100darmstadtium.(none)
e82692ac 1270yath\100yath.de yath-perlbug\100yath.de