Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1102
Mail::Send 1.74
Mail::Send is a simple electronic mail interface. more>>
Mail::Send is a simple electronic mail interface.
SYNOPSIS:
require Mail::Send;
$msg = new Mail::Send;
$msg = new Mail::Send Subject=>example subject, To=>timbo;
$msg->to(user@host);
$msg->to(user@host, user2@example.com);
$msg->subject(example subject);
$msg->cc(user@host);
$msg->bcc(someone@else);
$msg->set($header, @values);
$msg->add($header, @values);
$msg->delete($header);
# Launch mailer and set headers. The filehandle returned
# by open() is an instance of the Mail::Mailer class.
# Arguments to the open() method are passed to the Mail::Mailer
# constructor.
$fh = $msg->open; # some default mailer
# $fh = $msg->open(sendmail); # explicit
print $fh "Body of message";
$fh->close; # complete the message and send it
$fh->cancel; # not yet implemented
<<lessSYNOPSIS:
require Mail::Send;
$msg = new Mail::Send;
$msg = new Mail::Send Subject=>example subject, To=>timbo;
$msg->to(user@host);
$msg->to(user@host, user2@example.com);
$msg->subject(example subject);
$msg->cc(user@host);
$msg->bcc(someone@else);
$msg->set($header, @values);
$msg->add($header, @values);
$msg->delete($header);
# Launch mailer and set headers. The filehandle returned
# by open() is an instance of the Mail::Mailer class.
# Arguments to the open() method are passed to the Mail::Mailer
# constructor.
$fh = $msg->open; # some default mailer
# $fh = $msg->open(sendmail); # explicit
print $fh "Body of message";
$fh->close; # complete the message and send it
$fh->cancel; # not yet implemented
Download (0.047MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1269 downloads
Mail::Box 2.065
Mail::Box can manage a mailbox, a folder with messages. more>>
Mail::Box can manage a mailbox, a folder with messages.
INHERITANCE
Mail::Box
is a Mail::Reporter
Mail::Box is extended by
Mail::Box::Dir
Mail::Box::File
Mail::Box::Net
SYNOPSIS
use Mail::Box::Manager;
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => $ENV{MAIL}, ...);
print $folder->name;
# Get the first message.
print $folder->message(0);
# Delete the third message
$folder->message(3)->delete;
# Get the number of messages in scalar context.
my $emails = $folder->messages;
# Iterate over the messages.
foreach ($folder->messages) {...} # all messages
foreach (@$folder) {...} # all messages
$folder->addMessage(Mail::Box::Message->new(...));
Tied-interface:
tie my(@inbox), Mail::Box::Tie::ARRAY, $inbox;
# Four times the same:
$inbox[3]->print; # tied
$folder->[3]->print; # overloaded folder
$folder->message(3)->print; # usual
print $folder->[3]; # overloaded message
tie my(%inbox), Mail::Box::Tie::HASH, $inbox;
# Twice times the same
$inbox{$msgid}->print; # tied
$folder->messageId($msgid)->print;# usual
A Mail::Box::Manager creates Mail::Box objects. But you already knew, because you started with the Mail::Box-Overview manual page. That page is obligatory reading, sorry!
Mail::Box is the base class for accessing various types of mailboxes (folders) in a uniform manner. The various folder types vary on how they store their messages, but when some effort those differences could be hidden behind a general API. For example, some folders store many messages in one single file, where other store each message in a separate file withing the same directory.
No object in your program will be of type Mail::Box: it is only used as base class for the real folder types.
<<lessINHERITANCE
Mail::Box
is a Mail::Reporter
Mail::Box is extended by
Mail::Box::Dir
Mail::Box::File
Mail::Box::Net
SYNOPSIS
use Mail::Box::Manager;
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => $ENV{MAIL}, ...);
print $folder->name;
# Get the first message.
print $folder->message(0);
# Delete the third message
$folder->message(3)->delete;
# Get the number of messages in scalar context.
my $emails = $folder->messages;
# Iterate over the messages.
foreach ($folder->messages) {...} # all messages
foreach (@$folder) {...} # all messages
$folder->addMessage(Mail::Box::Message->new(...));
Tied-interface:
tie my(@inbox), Mail::Box::Tie::ARRAY, $inbox;
# Four times the same:
$inbox[3]->print; # tied
$folder->[3]->print; # overloaded folder
$folder->message(3)->print; # usual
print $folder->[3]; # overloaded message
tie my(%inbox), Mail::Box::Tie::HASH, $inbox;
# Twice times the same
$inbox{$msgid}->print; # tied
$folder->messageId($msgid)->print;# usual
A Mail::Box::Manager creates Mail::Box objects. But you already knew, because you started with the Mail::Box-Overview manual page. That page is obligatory reading, sorry!
Mail::Box is the base class for accessing various types of mailboxes (folders) in a uniform manner. The various folder types vary on how they store their messages, but when some effort those differences could be hidden behind a general API. For example, some folders store many messages in one single file, where other store each message in a separate file withing the same directory.
No object in your program will be of type Mail::Box: it is only used as base class for the real folder types.
Download (0.57MB)
Added: 2006-06-08 License: Perl Artistic License Price:
1234 downloads
tidyup-mail 0.12
tidyup-mail software is especially useful for russian/ukrainian/belarusian users but however can help those who reads mail... more>>
tidyup-mail software is especially useful for russian/ukrainian/belarusian users but however can help those who reads mail from people that uses such brain-damaged web-mailers as yahoo mail.
Fatigue with xterm when reading mail from mutt? Tired to press "Do Full reset" every time when terminal becames full of garbage? This program is for you! It removes unsafe characters for email & makes xterm happy!
Note that all documentation comes in russian language. Check for your local russian hacker.
<<lessFatigue with xterm when reading mail from mutt? Tired to press "Do Full reset" every time when terminal becames full of garbage? This program is for you! It removes unsafe characters for email & makes xterm happy!
Note that all documentation comes in russian language. Check for your local russian hacker.
Download (0.007MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 downloads
Mail::Field 1.74
Mail::Field is a base class for manipulation of mail header fields. more>>
Mail::Field is a base class for manipulation of mail header fields.
SYNOPSIS
use Mail::Field;
$field = Mail::Field->new(Subject, some subject text);
print $field->tag,": ",$field->stringify,"n";
$field = Mail::Field->subject(some subject text);
Mail::Field is a base class for packages that create and manipulate fields from Email (and MIME) headers. Each different field will have its own sub-class, defining its own interface.
This document describes the minimum interface that each sub-class should provide, and also guidlines on how the field specific interface should be defined.
<<lessSYNOPSIS
use Mail::Field;
$field = Mail::Field->new(Subject, some subject text);
print $field->tag,": ",$field->stringify,"n";
$field = Mail::Field->subject(some subject text);
Mail::Field is a base class for packages that create and manipulate fields from Email (and MIME) headers. Each different field will have its own sub-class, defining its own interface.
This document describes the minimum interface that each sub-class should provide, and also guidlines on how the field specific interface should be defined.
Download (0.047MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1218 downloads
ExiBomb Mail 0.1
ExiBomb is a system designed to monitor email traffic on an Exim-based MTA server. more>>
ExiBomb is a system designd to monitor mail traffic on the Exim based MTA server. The interface is developed in PHP. It reads the maillogs in a tail method and stores all relevant data in a MYSQL Database.The script reading the logs was developed in PERL.
Installation:
Exibomb.pl needs your exim configuration to have this set:
log_selector = +all
ExiBomb.pl will scan through the log and store data in the MySQL Database. Configure database paramters for exibomb.pl by editing the file. The web interface database settings can be found in config.php
Database schema exibomb.sql can be imported easily for example:
mysql database_name<<less
Installation:
Exibomb.pl needs your exim configuration to have this set:
log_selector = +all
ExiBomb.pl will scan through the log and store data in the MySQL Database. Configure database paramters for exibomb.pl by editing the file. The web interface database settings can be found in config.php
Database schema exibomb.sql can be imported easily for example:
mysql database_name<<less
Download (0.017MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1481 downloads
Mail::Action 0.40
Mail::Action is a Perl module for building modules that act on incoming mail. more>>
Mail::Action is a Perl module for building modules that act on incoming mail.
SYNOPSIS
use base Mail::Action;
Sometimes, you just need a really simple mailing address to last for a few days. You want it to be easy to create and easy to use, and you want it to be sufficiently anonymous that your real address isnt ever exposed.
Mail::TempAddress, Mail::TempAddress::Addresses, and Mail::TempAddress::Address make it easy to create a temporary mailing address system.
<<lessSYNOPSIS
use base Mail::Action;
Sometimes, you just need a really simple mailing address to last for a few days. You want it to be easy to create and easy to use, and you want it to be sufficiently anonymous that your real address isnt ever exposed.
Mail::TempAddress, Mail::TempAddress::Addresses, and Mail::TempAddress::Address make it easy to create a temporary mailing address system.
Download (0.011MB)
Added: 2006-09-05 License: Perl Artistic License Price:
1144 downloads
Mail::LMLM 0.6300
Mail::LMLM is a list of Mailing Lists Manager. more>>
Mail::LMLM is a list of Mailing Lists Manager.
SYNOPSIS
use Mail::LMLM;
my $renderer =
Mail::LMLM->new(
extra-classes => %extra_mailing_list_classes,
title => "List of the Foo Mailing Lists",
headline => "Foo Mailing Lists",
lists => @lists,
prolog => &prolog,
epilog => &epilog,
);
$renderer->render();
The Mail::LMLM module allows users to easily manage HTML directories of mailing lists of various mailing list managers and hosts.
To use it create a new module of type Mail::LMLM with a new method, while initializing it with the list of mailing lists (in order of listing), and other parameters. Then, invoke the render() function to create the HTML files within the current directory.
<<lessSYNOPSIS
use Mail::LMLM;
my $renderer =
Mail::LMLM->new(
extra-classes => %extra_mailing_list_classes,
title => "List of the Foo Mailing Lists",
headline => "Foo Mailing Lists",
lists => @lists,
prolog => &prolog,
epilog => &epilog,
);
$renderer->render();
The Mail::LMLM module allows users to easily manage HTML directories of mailing lists of various mailing list managers and hosts.
To use it create a new module of type Mail::LMLM with a new method, while initializing it with the list of mailing lists (in order of listing), and other parameters. Then, invoke the render() function to create the HTML files within the current directory.
Download (0.014MB)
Added: 2007-02-19 License: Perl Artistic License Price:
981 downloads
Shohei Mail 0.1.0
Shohei is a multi-language, multi-function, multi-server, multi-user, multi-context, multi-media web-based mail client. more>>
Shohei is a multi-language, multi-function, multi-server, multi-user, multi-context, multi-media web-based mail client, news client, calendar and note server.
Shohei is a pop3 client which meets the requirements of Stockholm public network.
Main features:
- Sends mail using SMTP
- Receives mail using POP
- Handles users in any number of domains on any number of servers
- Web based administration with different admins for different domains
- MIME aware
- Usenet News client
- Online context-sensitive help
- Customizable using HTML templates with embedded macros
- Calendar
- Write simple notes
- English and Swedish message catalogs, new ones are easily added
<<lessShohei is a pop3 client which meets the requirements of Stockholm public network.
Main features:
- Sends mail using SMTP
- Receives mail using POP
- Handles users in any number of domains on any number of servers
- Web based administration with different admins for different domains
- MIME aware
- Usenet News client
- Online context-sensitive help
- Customizable using HTML templates with embedded macros
- Calendar
- Write simple notes
- English and Swedish message catalogs, new ones are easily added
Download (0.16MB)
Added: 2006-06-10 License: GPL (GNU General Public License) Price:
1231 downloads
Mail::Abuse 1.025
Mail::Abuse is a Perl module that helps parse and respond to miscellaneous abuse complaints. more>>
Mail::Abuse is a Perl module that helps parse and respond to miscellaneous abuse complaints.
SYNOPSIS
use Mail::Abuse;
This module and the accompaining software can be used to automatically parse and respond to various formats of abuse complaints. This software is geared towards abuse desk administrators who need sophisticated tools to deal with the complains.
Mail::Abuse is actually a bundle of modules that provide various services. This documentation provides a general description of the functions provided by each one. No useful code is provided in the Mail::Abuse module, appart from this documentation and the version information below.
The following classes/packages are part of this distribution.
Mail::Abuse::Report
A report is a collection made of the received report and ths incidents it describes. See Mail::Abuse::Report for more information.
Mail::Abuse::Incident
An incident is each of the individual policy violations that are presented in a given report. A report should have at least, one incident. See Mail::Abuse::Incident for more information.
Mail::Abuse::Processor
Once the reports are analyzed and its incidents are extracted, you will want to do something with the information. This is the job of a processor. See Mail::Abuse::Processor for more information.
Mail::Abuse::Reader
Abuse reports can be fetched from a variety of places and through various protocols. This is what readers do: Read a report. See Mail::Abuse::Reader for more information.
Mail::Abuse::Filter
An abuse report might contain incidents that are not to be handled by us. A filter remove incidents that does not belong to our network. See Mail::Abuse::Filter for more information.
All of the modules take a lot of their configuration information from a specially formatted file.
This distribution also includes a number of scripts. See the bin/ directory for more information.
<<lessSYNOPSIS
use Mail::Abuse;
This module and the accompaining software can be used to automatically parse and respond to various formats of abuse complaints. This software is geared towards abuse desk administrators who need sophisticated tools to deal with the complains.
Mail::Abuse is actually a bundle of modules that provide various services. This documentation provides a general description of the functions provided by each one. No useful code is provided in the Mail::Abuse module, appart from this documentation and the version information below.
The following classes/packages are part of this distribution.
Mail::Abuse::Report
A report is a collection made of the received report and ths incidents it describes. See Mail::Abuse::Report for more information.
Mail::Abuse::Incident
An incident is each of the individual policy violations that are presented in a given report. A report should have at least, one incident. See Mail::Abuse::Incident for more information.
Mail::Abuse::Processor
Once the reports are analyzed and its incidents are extracted, you will want to do something with the information. This is the job of a processor. See Mail::Abuse::Processor for more information.
Mail::Abuse::Reader
Abuse reports can be fetched from a variety of places and through various protocols. This is what readers do: Read a report. See Mail::Abuse::Reader for more information.
Mail::Abuse::Filter
An abuse report might contain incidents that are not to be handled by us. A filter remove incidents that does not belong to our network. See Mail::Abuse::Filter for more information.
All of the modules take a lot of their configuration information from a specially formatted file.
This distribution also includes a number of scripts. See the bin/ directory for more information.
Download (0.090MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Mail 2 Wordpress 1.02
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail. more>>
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail.
<<less Download (0.007MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1404 downloads
Mail Notifier 0.6
Mail Notifier provides an E-mail Notifier for POP3 accounts. more>>
Mail Notifier provides an E-mail Notifier for POP3 accounts.
<<less Download (0.075MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
962 downloads
Mail::SendEasy 1.2
Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). more>>
Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). Supports SMTP authentication and attachments.
This modules will send in a easy way e-mails, and doesnt have dependencies. Soo, you dont need to install libnet.
It supports SMTP authentication and attachments.
USAGE:
OO
use Mail::SendEasy ;
my $mail = new Mail::SendEasy(
smtp => localhost ,
user => foo ,
pass => 123 ,
) ;
my $status = $mail->send(
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { print $mail->error ;}
STRUCTURED
use Mail::SendEasy ;
my $status = Mail::SendEasy::send(
smtp => localhost ,
user => foo ,
pass => 123 ,
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { Mail::SendEasy::error ;}
<<lessThis modules will send in a easy way e-mails, and doesnt have dependencies. Soo, you dont need to install libnet.
It supports SMTP authentication and attachments.
USAGE:
OO
use Mail::SendEasy ;
my $mail = new Mail::SendEasy(
smtp => localhost ,
user => foo ,
pass => 123 ,
) ;
my $status = $mail->send(
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { print $mail->error ;}
STRUCTURED
use Mail::SendEasy ;
my $status = Mail::SendEasy::send(
smtp => localhost ,
user => foo ,
pass => 123 ,
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { Mail::SendEasy::error ;}
Download (0.011MB)
Added: 2007-08-02 License: Perl Artistic License Price:
816 downloads
Mail Avenger 0.7.8
Mail Avenger is a highly-configurable, MTA-independent SMTP server. more>>
Mail Avenger is a highly-configurable, MTA-independent SMTP server daemon. Mail Avenger lets users run messages through filters like ClamAV and SpamAssassin during SMTP transactions, so the server can reject mail before assuming responsibility for its delivery.
Other unique features include TCP SYN fingerprint and network route recording, verification of sender addresses through SMTP callbacks, SPF (sender policy framework) as a general policy language, qmail-style control over both SMTP-level behavior and local delivery of extension addresses, mail-bomb protection, integration with kernel firewalls, and more.
Enhancements:
- Several minor bugs were fixed.
- The SMTPCB configuration directive was changed to give more options.
- An InsecureSASL configuration option was added by request of users.
<<lessOther unique features include TCP SYN fingerprint and network route recording, verification of sender addresses through SMTP callbacks, SPF (sender policy framework) as a general policy language, qmail-style control over both SMTP-level behavior and local delivery of extension addresses, mail-bomb protection, integration with kernel firewalls, and more.
Enhancements:
- Several minor bugs were fixed.
- The SMTPCB configuration directive was changed to give more options.
- An InsecureSASL configuration option was added by request of users.
Download (0.74MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
825 downloads
Mail::Summary 0.02
Mail::Summary is a Perl module that can scan read your mail! more>>
Mail::Summary is a Perl module that can scan read your mail!
SYNOPSIS
my $ms = Mail::Summary->new({ maildir => /home/mwk/Maildir });
my @mail_summaries = $ms->summaries;
Too busy to read your mail? Subscribe to too many mailing lists? Take two folders into the shower? Well, for the busy on the go geek of today, here is the answer! Get all your messages summarised, to save you having to read them, or to read them by which summary looks better!
new
my $ms = Mail::Summary->new({ maildir => /home/mwk/Maildir });
This will make a new Mail::Summary object.
maildir
my $maildir = $ms->maildir;
This is the mail directory as defined by the user.
summaries
my @mail_summaries = $ms->summaries;
This will return a list, with every entry in the list being a summary of an individual message.
<<lessSYNOPSIS
my $ms = Mail::Summary->new({ maildir => /home/mwk/Maildir });
my @mail_summaries = $ms->summaries;
Too busy to read your mail? Subscribe to too many mailing lists? Take two folders into the shower? Well, for the busy on the go geek of today, here is the answer! Get all your messages summarised, to save you having to read them, or to read them by which summary looks better!
new
my $ms = Mail::Summary->new({ maildir => /home/mwk/Maildir });
This will make a new Mail::Summary object.
maildir
my $maildir = $ms->maildir;
This is the mail directory as defined by the user.
summaries
my @mail_summaries = $ms->summaries;
This will return a list, with every entry in the list being a summary of an individual message.
Download (0.003MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Manitou-Mail 0.9.7
Manitou-Mail is a 3-part database-driven email system. more>>
Manitou-Mail is an open source database-driven mail user-agent and associated utilities. Manitou-Mail project provides a framework and programs for storing, exposing, and managing mail as organized data in a PostgreSQL database. It can be viewed as a versatile alternative to an imap-aware client using imap server storage.
Companies or organizations that use organization-wide mailboxes such as info, support, sales... and need to share the work between the people processing them, monitor and analyze the flow of messages, or even hook their other databases to the messaging system.
Experienced personal users that are willing to put a database at the center of their mail architecture, thus getting powerful retrieval capabilities, extended categorizing of messages, open representation of the mail as structured data.
The user interface runs on Unix/X11 and MS-Windows and is connected to the database, not the mail system. An independant Perl daemon process, controllable by an administrator, is responsible for fetching and sending the mail.
Enhancements:
- This release offers a revamped full text search engine, a new online help system using Qt assistant, modularized Perl code for the mail-database exchanger, along with a number of small bugfixes and enhancements.
- Also, the user interface now compiles on Solaris and BSD-based systems.
<<lessCompanies or organizations that use organization-wide mailboxes such as info, support, sales... and need to share the work between the people processing them, monitor and analyze the flow of messages, or even hook their other databases to the messaging system.
Experienced personal users that are willing to put a database at the center of their mail architecture, thus getting powerful retrieval capabilities, extended categorizing of messages, open representation of the mail as structured data.
The user interface runs on Unix/X11 and MS-Windows and is connected to the database, not the mail system. An independant Perl daemon process, controllable by an administrator, is responsible for fetching and sending the mail.
Enhancements:
- This release offers a revamped full text search engine, a new online help system using Qt assistant, modularized Perl code for the mail-database exchanger, along with a number of small bugfixes and enhancements.
- Also, the user interface now compiles on Solaris and BSD-based systems.
Download (0.038MB)
Added: 2006-04-23 License: GPL (GNU General Public License) Price:
1280 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mail search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed