You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by ms...@apache.org on 2005/02/10 12:42:08 UTC

svn commit: r153201 - spamassassin/trunk/Makefile.PL

Author: mss
Date: Thu Feb 10 03:42:03 2005
New Revision: 153201

URL: http://svn.apache.org/viewcvs?view=rev&rev=153201
Log:
A bit email address obfuscation can't hurt.

Modified:
    spamassassin/trunk/Makefile.PL

Modified: spamassassin/trunk/Makefile.PL
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/Makefile.PL?view=diff&r1=153200&r2=153201
==============================================================================
--- spamassassin/trunk/Makefile.PL (original)
+++ spamassassin/trunk/Makefile.PL Thu Feb 10 03:42:03 2005
@@ -236,7 +236,7 @@
 
     },
 
-    'AUTHOR'   => 'The Apache SpamAssassin Project <de...@spamassassin.apache.org>',
+    'AUTHOR'   => 'The Apache SpamAssassin Project <dev at spamassassin.apache.org>',
     'ABSTRACT' => 'SpamAssassin is an extensible email filter which is used to identify spam.',
 
     # We have only this Makefile.PL and this option keeps MakeMaker from
@@ -447,6 +447,7 @@
 
 # Now finish the meta hash and dump the Makefile
 $makefile{EXE_FILES} = [ values %{$makefile{EXE_FILES}} ];
+$makefile{AUTHOR} =~ s/(<.+) at (.+>)/$1\@$2/;
 WriteMakefile(%makefile);
 print "Makefile written by ExtUtils::MakeMaker ${mm_version}\n";