Policy Daemon snapshot-200806021908 (2.x (Cluebringer) branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Policy Daemon snapshot-200806021908 (2.x (Cluebringer) branch)
# 1  
Old 07-02-2008
Policy Daemon snapshot-200806021908 (2.x (Cluebringer) branch)

Image Policyd v2 (codenamed "cluebringer") is a multi-platform policy server for popular MTAs. This policy daemon is designed mostly for large scale mail hosting environments. The main goal is to implement as many spam combating and email compliance features as possible while at the same time maintaining portability, stability, and performance. Its features include detailed policy and group specification, access control, helo/ehlo checks (helo randomization prevention and RFC compliance), SPF checks, Greylisting, Quotas, and Amavisd-new integration. License: GNU General Public License (GPL) Changes:
Better support for newer versions of Cache-FastMmap. Handling of the Postfix policy delegation protocol has been fixed. The table charset has been set to Latin1 for MySQL so that the MySQL index length limitation is not exceeded. Rogue commas in SQL have been fixed. CREATE INDEX has been added instead of INDEX() for better cross-database support. Indexing has been re-added to SQLite. Typos have been fixed and there are better error messages. Support for broken browsers has been fixed.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Perl::Critic::Policy::Modules::PerlMinimumVersion(3)	User Contributed Perl Documentation   Perl::Critic::Policy::Modules::PerlMinimumVersion(3)

NAME
Perl::Critic::Policy::Modules::PerlMinimumVersion - Enforce backward compatible code. AFFILIATION
This policy is part of Perl::Critic::More, a bleeding edge supplement to Perl::Critic. DESCRIPTION
As Perl evolves, new desirable features get added. The best ones seem to break backward compatibility, unfortunately. This policy allows you to specify a mandatory compatibility version for your code. For example, if you add the following to your .perlcriticrc file: [Modules::PerlMinimumVersion] version = 5.005 then any code that employs "our" will fail this policy, for example. By default, this policy enforces the current Perl version, which is a pretty weak statement. This policy relies on Perl::MinimumVersion to do the heavy lifting. If that module is not installed, then this policy always passes. AUTHOR
Chris Dolan <cdolan@cpan.org> COPYRIGHT
Copyright (c) 2006-2008 Chris Dolan This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module. perl v5.16.3 2014-06-10 Perl::Critic::Policy::Modules::PerlMinimumVersion(3)