NAME
Apache::AntiSpam::Heuristic - Filters E-mail address to heuristic one
SYNOPSIS
# in httpd.conf
<Location /antispam>
SetHandler perl-script
PerlHandler Apache::AntiSpam::Heuristic
</Location>
# filter aware
PerlModule Apache::Filter
SetHandler perl-script
PerlSetVar Filter On
PerlHandler Apache::RegistryFilter Apache::AntiSpam::Heuristic Apache::Compress
DESCRIPTION
Apache::AntiSpam::Heuristic is a subclass of Apache::AntiSpam, filter module to prevent e-mail addresses exposed as is on web pages. This module filters e-mail addresses to heuristic ones.
For example, miyagawa@cpan.org
will be filtered to miyagawa at cpan dot org
.
This module is Filter aware, meaning that it can work within Apache::Filter framework without modification.
AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.