Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bad email address for 'perlbug' #15491

Closed
p5pRT opened this issue Aug 2, 2016 · 8 comments
Closed

Bad email address for 'perlbug' #15491

p5pRT opened this issue Aug 2, 2016 · 8 comments

Comments

@p5pRT
Copy link

p5pRT commented Aug 2, 2016

Migrated from rt.perl.org#128808 (status was 'resolved')

Searchable as RT128808$

@p5pRT
Copy link
Author

p5pRT commented Aug 2, 2016

From @jkeenan

#####
$ ack 'perlbug@​perl\.com' . |less
#####

... produces this output​:

#####
configure.com​:1895​:will send mail to this address in addition to perlbug@​perl.com. You may
pod/perl5005delta.pod​:973​:output of C<perl -V>, will be sent off to <F<perlbug@​perl.com>> to be
pod/perl5005delta.pod​:991​:Send omissions or corrections to <F<perlbug@​perl.com>>.
pod/perl5004delta.pod​:1591​:output of C<perl -V>, will be sent off to <F<perlbug@​perl.com>> to be
README.vms​:473​:perlbug@​perl.com.
#####

I doubt we make corrections in files as old as the deltas for perl-5.004 or perl-5.005. But shouldn't we correct the other two erroneous domains for mailing perlbug?

Patch to come.

Thank you very much.
--
James E Keenan (jkeenan@​cpan.org)

@p5pRT
Copy link
Author

p5pRT commented Aug 2, 2016

From @jkeenan

On Mon Aug 01 19​:23​:45 2016, jkeenan wrote​:

#####
$ ack 'perlbug@​perl\.com' . |less
#####

... produces this output​:

#####
configure.com​:1895​:will send mail to this address in addition to
perlbug@​perl.com. You may
pod/perl5005delta.pod​:973​:output of C<perl -V>, will be sent off to
<F<perlbug@​perl.com>> to be
pod/perl5005delta.pod​:991​:Send omissions or corrections to
<F<perlbug@​perl.com>>.
pod/perl5004delta.pod​:1591​:output of C<perl -V>, will be sent off to
<F<perlbug@​perl.com>> to be
README.vms​:473​:perlbug@​perl.com.
#####

I doubt we make corrections in files as old as the deltas for perl-
5.004 or perl-5.005. But shouldn't we correct the other two erroneous
domains for mailing perlbug?

Better diagnostic​:

#####
$ ack 'perlbug\\?@​perl\.com' .
configure.com
1895​:will send mail to this address in addition to perlbug@​perl.com. You may

pod/perl5005delta.pod
973​:output of C<perl -V>, will be sent off to <F<perlbug@​perl.com>> to be
991​:Send omissions or corrections to <F<perlbug@​perl.com>>.

pod/perl5004delta.pod
1591​:output of C<perl -V>, will be sent off to <F<perlbug@​perl.com>> to be

README.vms
473​:perlbug@​perl.com.

lib/locale.t
2612​:# but please report this failure first to perlbug\@​perl.com using the
#####

Patch attached.
--
James E Keenan (jkeenan@​cpan.org)

@p5pRT
Copy link
Author

p5pRT commented Aug 2, 2016

From @jkeenan

128808-0001-Correct-3-bad-email-addresses-for-perlbug.patch
From 67c06f13e2cf883c92dfdcd61d0a369aa433675c Mon Sep 17 00:00:00 2001
From: James E Keenan <jkeenan@cpan.org>
Date: Mon, 1 Aug 2016 22:34:22 -0400
Subject: [PATCH] Correct 3 bad email addresses for 'perlbug'.

For: RT #128808
---
 README.vms    | 2 +-
 configure.com | 2 +-
 lib/locale.t  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.vms b/README.vms
index 7d64cd4..7bf5995 100644
--- a/README.vms
+++ b/README.vms
@@ -470,7 +470,7 @@ If you come across what you think might be a bug in Perl, please report
 it. There's a script in PERL_ROOT:[UTILS], perlbug, that walks you through
 the process of creating a bug report. This script includes details of your
 installation, and is very handy. Completed bug reports should go to
-perlbug@perl.com.
+perlbug@perl.org.
 
 =head1 CAVEATS
 
diff --git a/configure.com b/configure.com
index ee0f2ca..8a97902 100644
--- a/configure.com
+++ b/configure.com
@@ -1892,7 +1892,7 @@ $   DECK
 If you or somebody else will be maintaining perl at your site, please
 fill in the correct e-mail address here so that they may be contacted
 if necessary. Currently, the "perlbug" program included with perl
-will send mail to this address in addition to perlbug@perl.com. You may
+will send mail to this address in addition to perlbug@perl.org. You may
 enter "none" for no administrator.
 $   EOD
 $ ENDIF
diff --git a/lib/locale.t b/lib/locale.t
index 18be0ec..c620af0 100644
--- a/lib/locale.t
+++ b/lib/locale.t
@@ -2609,7 +2609,7 @@ foreach ($first_locales_test_number..$final_locales_test_number) {
 	print <<EOW;
 #
 # If your users are not using these locales you are safe for the moment,
-# but please report this failure first to perlbug\@perl.com using the
+# but please report this failure first to perlbug\@perl.org using the
 # perlbug script (as described in the INSTALL file) so that the exact
 # details of the failures can be sorted out first and then your operating
 # system supplier can be alerted about these anomalies.
-- 
2.7.4

@p5pRT
Copy link
Author

p5pRT commented Aug 2, 2016

From @cpansprout

On Mon Aug 01 19​:38​:46 2016, jkeenan wrote​:

Patch attached.

Thank you. Applied as 98393d9.

--

Father Chrysostomos

@p5pRT
Copy link
Author

p5pRT commented Aug 2, 2016

The RT System itself - Status changed from 'new' to 'open'

@p5pRT
Copy link
Author

p5pRT commented Aug 2, 2016

@cpansprout - Status changed from 'open' to 'pending release'

@p5pRT
Copy link
Author

p5pRT commented May 30, 2017

From @khwilliamson

Thank you for filing this report. You have helped make Perl better.

With the release today of Perl 5.26.0, this and 210 other issues have been
resolved.

Perl 5.26.0 may be downloaded via​:
https://metacpan.org/release/XSAWYERX/perl-5.26.0

If you find that the problem persists, feel free to reopen this ticket.

@p5pRT
Copy link
Author

p5pRT commented May 30, 2017

@khwilliamson - Status changed from 'pending release' to 'resolved'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant