[vlc-devel] E-mail addresses in the WIN32 packages
Johan Bilien
jobi at via.ecp.fr
Sun May 9 11:10:28 CEST 2004
Hi all,
I would like to request the obfuscation of e-mail addresses in the .txt
files we include in the WIN32 packages. E-mail worms such as Netsky look
for e-mail addresses in .txt files. Applying something like the included
patch could reduce the amount of e-mails sent with forged From: and To:
headers set to a VideoLAN developer I receive daily.
Thanks,
--
Jobi
-------------- next part --------------
Index: Makefile.am
===================================================================
--- Makefile.am (revision 7629)
+++ Makefile.am (working copy)
@@ -584,7 +584,7 @@
$(UPX) -9 "$(srcdir)/vlc-${VERSION}/vlc$(EXEEXT)"; fi ;
for file in AUTHORS MAINTAINERS THANKS NEWS COPYING README ; \
- do cp "$(srcdir)/$$file" "$(srcdir)/vlc-${VERSION}/$${file}.txt" ; \
+ do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(srcdir)/vlc-${VERSION}/$${file}.txt" ; \
unix2dos "$(srcdir)/vlc-${VERSION}/$${file}.txt" ; done
mkdir -p "$(srcdir)/vlc-${VERSION}/plugins"
More information about the vlc-devel
mailing list