Postfilter 0.7.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Postfilter 0.7.3 (Default branch)
# 1  
Old 10-22-2008
Postfilter 0.7.3 (Default branch)

Postfilter is a Perl filter for Internet Net News (innd) that checks all messages sent by local users searching for spam and invalid content. Although it's designed for large sites that need a complex tool, it could also be used by local or private servers.License: BSD License (original)Changes:
This release uses 'delete $hdr{'Header'};' instead of '$hdr{'Header'} = undef;'. The behavior of postfilter when an error is found inside banlist.conf is configurable. The maximum difference between the number of groups in Followup-To and in Newsgroups can be set. Articles that include the same groups inside Newsgroups: and Followup-To: can be rejected. Articles that come from TOR exit nodes can be filtered. A new tool, postfilter-legal.pl, can query and expire legal.log.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Net::LDAP::FilterMatch(3)				User Contributed Perl Documentation				 Net::LDAP::FilterMatch(3)

NAME
Net::LDAP::FilterMatch - LDAP entry matching SYNOPSIS
use Net::LDAP::Entry; use Net::LDAP::Filter; use Net::LDAP::FilterMatch; my $entry = new Net::LDAP::Entry; $entry->dn("cn=dummy entry"); $entry->add ( 'cn' => 'dummy entry', 'street' => [ '1 some road','nowhere' ] ); my @filters = (qw/(cn=dummy*) (ou=*) (&(cn=dummy*)(street=*road)) (&(cn=dummy*)(!(street=nowhere)))/); for (@filters) { my $filter = Net::LDAP::Filter->new($_); print $_,' : ', $filter->match($entry) ? 'match' : 'no match' ," "; } ABSTRACT
This extension of the class Net::LDAP::Filter provides entry matching functionality on the Perl side. Given an entry it will tell whether the entry matches the filter object. It can be used on its own or as part of a Net::LDAP::Server based LDAP server. METHOD
match ( ENTRY [ ,SCHEMA ] ) Return whether ENTRY matches the filter object. If a schema object is provided, the selection of matching algorithms will be derived from schema. In case of error undef is returned. For approximate matching like (cn~=Schmidt) there are several modules that can be used. By default the following modules will be tried in this order: String::Approx Text::Metaphone Text::Soundex If none of these modules is found it will fall back on a simple regexp algorithm. If you want to specifically use one implementation only, simply do use Net::LDAP::FilterMatch qw(Text::Soundex); SEE ALSO
Net::LDAP::Filter COPYRIGHT
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHORS
Hans Klunder <hans.klunder@bigfoot.com> Peter Marschall <peter@adpm.de> perl v5.16.3 2013-06-07 Net::LDAP::FilterMatch(3)