#! /usr/bin/perl # # $Id$ # Definition of 'My::Project::PerlMail' for list.cgi.pl # Copyright (C) 2003 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; exactly version 2 of June 1991 is required # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package project::PerlMail::ListItem; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; our $CVS_ID=q$Id$; use strict; use warnings; use My::Web; our @ListItem=( "name"=>"PerlMail", "platform"=>"unixuser", "priority"=>640, "cvs"=>"PerlMail", # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"} "link-README"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/PerlMail/README?rev=HEAD", "summary"=>"Perl mail processor - ".a_href('http://www.procmail.org/','procmail')."(1) successor", "license"=>"GPL", "maintenance"=>"ready", "language"=>"Perl", "description"=><<"HERE",

Successor to @{[ a_href 'http://www.procmail.org/','procmail' ]}(1) and @{[ a_href 'http://search.cpan.org/author/SIMON/Mail-Audit-2.1/','Mail::Audit' ]}. It supports @{[ a_href 'http://www.perl.org/','Perl' ]}-rules filtering, dynamic client IP, mobile SMS forwarding, @{[ a_href 'http://www.mutt.org/','Mutt' ]} integration, @{[ a_href 'http://www.nokia.com/phones/9110i','Nokia Communicator' ]} contacts directory integration.

Use if you like: @{[ CGI::escapeHTML(q{store "=spam" if ($_=mimehead(body_first())->mime_attr("Content-Type")) && m#text/html#i;}) ]}

HERE ); 1;