sync
[www.jankratochvil.net.git] / project / PerlMail / Index.pm
1 # $Id$
2 # Main page of 'My::Project::PerlMail'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::PerlMail::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"PerlMail",
32                 "platform"=>"unixuser",
33                 "priority"=>640,
34                 "cvs"=>"PerlMail",
35                 "link-README"=>'http://git.jankratochvil.net/?p=PerlMail.git;a=blob_plain;hb=HEAD;f=README',
36                 "summary"=>sub { return "Perl mail processor - ".a_href('http://www.procmail.org/','procmail')."(1) successor"; },
37                 "license"=>"GPL",
38                 "maintenance"=>"ready",
39                 "language"=>"Perl",
40                 "description"=>sub { return <<"HERE"; },
41 <p>Successor to @{[ a_href 'http://www.procmail.org/','procmail' ]}(1)
42 and @{[ a_href 'http://search.cpan.org/author/SIMON/Mail-Audit-2.1/','Mail::Audit' ]}.
43 It supports @{[ a_href 'http://www.perl.org/','Perl' ]}-rules filtering, dynamic client IP,
44 mobile SMS forwarding, @{[ a_href 'http://www.mutt.org/','Mutt' ]} integration,
45 @{[ a_href 'http://www.nokia.com/phones/9110i','Nokia Communicator' ]} contacts directory integration.</p>
46 <p>Use if you like: <span class="quote">
47         @{[ escapeHTML(q{store "=spam" if ($_=mimehead(body_first())->mime_attr("Content-Type")) && m#text/html#i;}) ]}
48         </span></p>
49 HERE
50                 );
51
52 sub handler
53 {
54 project::Lib->init();
55
56
57 print <<"HERE";
58 <p>Features list</p>
59 <ul>
60         <li>Powerful filtering by @{[ a_href 'http://www.perl.org/','Perl' ]} rules</li>
61         <li>Safe mails transfer to remote user workstation while using possibly dynamic IP</li>
62         <li>Event driven immediate response, no polling (IMAP/POP3 poll)</li>
63         <li>No risk of SMTP error mails during remote workstation connection problems</li>
64         <li>SMS-forwarder featuring
65                         @{[ a_href 'http://search.cpan.org/author/JARIAALTO/Lingua-EN-Squeeze-1998.1204/','Lingua::EN::Squeeze' ]},
66                         MIME decoding, HTML conversion</li>
67         <li>Outgoing mail headers mangling by per-recipient rules</li>
68         <li>@{[ a_href 'http://www.mutt.org/','Mutt' ]} mailer integration</li>
69         <li>@{[ a_href 'http://www.nokia.com/phones/9110i','Nokia Communicator' ]} contacts directory conversion</li>
70 </ul>
71 HERE
72
73
74 exit;
75 }
76 1;