X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=project%2FPerlMail%2FListItem.pm;fp=project%2FPerlMail%2FListItem.pm;h=c0bb03b971875766f36c9edd04c03b5847800e1d;hp=0000000000000000000000000000000000000000;hb=5e3b00f9383caf99795a3758d10ea87495050696;hpb=cb53d495cd7c54f62c80ab105ffba581f0829f6f diff --git a/project/PerlMail/ListItem.pm b/project/PerlMail/ListItem.pm new file mode 100755 index 0000000..c0bb03b --- /dev/null +++ b/project/PerlMail/ListItem.pm @@ -0,0 +1,54 @@ +#! /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;