The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::AntiSpam::NoSpam - Add suffix to local-part in Email

SYNOPSIS

  # in httpd.conf
  <Location /antispam>
  SetHandler perl-script
  PerlHandler Apache::AntiSpam::NoSpam
  </Location>

  # filter aware
  PerlModule Apache::Filter
  SetHandler perl-script
  PerlSetVar Filter On
  PerlHandler Apache::RegistryFilter Apache::AntiSpam::NoSpam Apache::Compress

DESCRIPTION

Apache::AntiSpam::NoSpam is a subclass of Apache::AntiSpam, filter module to prevent e-mail addresses exposed as is on web pages. This module adds -nospam suffix to local-part of e-mail addresses.

For example, miyagawa@cpan.org will be filtered to miyagawa-nospam@cpan.org.

This module is Filter aware, meaning that it can work within Apache::Filter framework without modification.

TODO

  • should make -nospam suffix be configured.

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.

SEE ALSO

Apache::AntiSpam