Warning: Undefined array key "rss_show_deleted" in /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php:86) in /var/www/w12/dw/feed.php on line 53
Warning: Cannot modify header information - headers already sent by (output started at /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php:86) in /var/www/w12/dw/feed.php on line 54
Warning: Cannot modify header information - headers already sent by (output started at /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php:86) in /var/www/w12/dw/feed.php on line 55
Warning: Cannot modify header information - headers already sent by (output started at /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php:86) in /var/www/w12/dw/feed.php on line 56
Warning: Cannot modify header information - headers already sent by (output started at /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php:86) in /var/www/w12/dw/inc/httputils.php on line 32
Warning: Cannot modify header information - headers already sent by (output started at /var/www/w12/dw/inc/Feed/FeedCreatorOptions.php:86) in /var/www/w12/dw/inc/httputils.php on line 33 wi12.unix7.org - maacom
https://w12.unix7.org/
Wed, 05 Aug 2026 03:50:44 +0000FeedCreator 1.8https://w12.unix7.org/_media/wiki/dokuwiki.svgwi12.unix7.org
https://w12.unix7.org/
Maacom current code preview
https://w12.unix7.org/maacom/source-previev
perl app
Maacom current code preview
maacom.pl
#!@perl@
package aConfig;
use strict;
use warnings;
sub new {
my ($class, $file) = @_;
my $self = {
file => $file
};
bless $self, $class;
$self;
}
sub file {
my ($self, $name) = @_;
return $self->{'file'} unless $name;
$self->{'file'} = $name;
$self;
}
sub read {
my $self = shift;
return undef unless -r $self->file;
open my $fh, '<', $self->file;
my %res;
while (my $line = read…anonymous@undisclosed.example.com (Anonymous)Sat, 27 Nov 2021 13:26:11 +0000Maacom, simple web mail account manager
https://w12.unix7.org/maacom/start
perl app
Maacom, simple web mail account manager
Mail account manager, or easy “Maacom” =)
I wrote this application for using into small-middle corporation.
I wanted to write a simple classic object-oriented web application, that can be used as a training application.anonymous@undisclosed.example.com (Anonymous)Sat, 27 Nov 2021 13:26:11 +0000