mail sendmail
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1159
Mail::Sendmail 0.79
Mail::Sendmail is a simple platform independent mailer. more>>
Mail::Sendmail is a simple platform independent mailer.
SYNOPSIS
use Mail::Sendmail;
%mail = ( To => you@there.com,
From => me@here.com,
Message => "This is a very short message"
);
sendmail(%mail) or die $Mail::Sendmail::error;
print "OK. Log says:n", $Mail::Sendmail::log;
Simple platform independent e-mail from your perl script. Only requires Perl 5 and a network connection.
Mail::Sendmail contains mainly &sendmail, which takes a hash with the message to send and sends it. It is intended to be very easy to setup and use.
Main features:
- Automatic time zone detection, Date: header, MIME quoted-printable encoding (if MIME::QuotedPrint installed), all of which can be overridden.
- Bcc: and Cc: support.
- Allows real names in From:, To: and Cc: fields
- Doesnt send an X-Mailer: header (unless you do), and allows you to send any header(s) you want.
- Configurable retries and use of alternate servers if your mail server is down
- Good plain text error reporting
Version restrictions:
- Headers are not encoded, even if they have accented characters.
- No suport for the SMTP AUTH extension.
- Since the whole message is in memory, its not suitable for sending very big attached files.
- The SMTP server has to be set manually in Sendmail.pm or in your script, unless you have a mail server on localhost.
- Doesnt work on OpenVMS, I was told. Cannot test this myself.
<<lessSYNOPSIS
use Mail::Sendmail;
%mail = ( To => you@there.com,
From => me@here.com,
Message => "This is a very short message"
);
sendmail(%mail) or die $Mail::Sendmail::error;
print "OK. Log says:n", $Mail::Sendmail::log;
Simple platform independent e-mail from your perl script. Only requires Perl 5 and a network connection.
Mail::Sendmail contains mainly &sendmail, which takes a hash with the message to send and sends it. It is intended to be very easy to setup and use.
Main features:
- Automatic time zone detection, Date: header, MIME quoted-printable encoding (if MIME::QuotedPrint installed), all of which can be overridden.
- Bcc: and Cc: support.
- Allows real names in From:, To: and Cc: fields
- Doesnt send an X-Mailer: header (unless you do), and allows you to send any header(s) you want.
- Configurable retries and use of alternate servers if your mail server is down
- Good plain text error reporting
Version restrictions:
- Headers are not encoded, even if they have accented characters.
- No suport for the SMTP AUTH extension.
- Since the whole message is in memory, its not suitable for sending very big attached files.
- The SMTP server has to be set manually in Sendmail.pm or in your script, unless you have a mail server on localhost.
- Doesnt work on OpenVMS, I was told. Cannot test this myself.
Download (0.016MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1148 downloads
Sendmail 8.14.1
Sendmail is a powerful and flexible Mail Transport Agent. more>>
Sendmail application is a Mail Transfer Agent, which is the program that moves mail from one machine to another.
Sendmail implements a general internetwork mail routing facility, featuring aliasing and forwarding, automatic routing to network gateways, and flexible configuration.
<<lessSendmail implements a general internetwork mail routing facility, featuring aliasing and forwarding, automatic routing to network gateways, and flexible configuration.
Download (2.0MB)
Added: 2007-04-04 License: BSD License Price:
934 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::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
Sendmail X 0.0.0.0
Sendmail X is a modularized message transfer system. more>>
Sendmail X is a modularized message transfer system consisting of five (or more) persistent processes, four of which are multi-threaded.
A central queue manager controls SMTP servers and SMTP clients to receive and send email messages, an address resolver provides lookups in various maps (including DNS) for mail routing, and a main control program starts the others processes and watches over their execution.
The queue manager organizes the flow of messages through the system and provides measures to avoid overloading the local or remote systems by implementing a central control instance.
Sendmail X is simple to configure using a syntax that is easy to understand and use. It is intended to be used as a secure and efficient mail gateway. It does not provide any mail content modification capabilities such as address masquerading.
Enhancements:
- This version has better error logging for STARTTLS problems and a libpmilter fix.
<<lessA central queue manager controls SMTP servers and SMTP clients to receive and send email messages, an address resolver provides lookups in various maps (including DNS) for mail routing, and a main control program starts the others processes and watches over their execution.
The queue manager organizes the flow of messages through the system and provides measures to avoid overloading the local or remote systems by implementing a central control instance.
Sendmail X is simple to configure using a syntax that is easy to understand and use. It is intended to be used as a secure and efficient mail gateway. It does not provide any mail content modification capabilities such as address masquerading.
Enhancements:
- This version has better error logging for STARTTLS problems and a libpmilter fix.
Download (3.7MB)
Added: 2005-10-30 License: Other/Proprietary License with Source Price:
1456 downloads
Sendmail-Jilter 1.2
Sendmail-Jilter is an implementation of the Sendmail milter protocol. more>>
Sendmail-Jilter is an Open Source implementation of the Sendmail milter protocol, for implementing milters in Java that can interface with the Sendmail MTA.
Enhancements:
New Features:
- Added JilterHandlerAdapter. Thanks to Neil Aggarwal (neil@JAMMConsulting.com).
Changes:
- Updated docs for return value from JilterHandler.connect to reflect the fact that the MTA doesnt listen to anything other than SMFIS_ values. Thanks to Neil Aggarwal (neil@JAMMConsulting.com).
- Refactored SimpleHandler in the test cases to use JilterHandlerAdapter.
<<lessEnhancements:
New Features:
- Added JilterHandlerAdapter. Thanks to Neil Aggarwal (neil@JAMMConsulting.com).
Changes:
- Updated docs for return value from JilterHandler.connect to reflect the fact that the MTA doesnt listen to anything other than SMFIS_ values. Thanks to Neil Aggarwal (neil@JAMMConsulting.com).
- Refactored SimpleHandler in the test cases to use JilterHandlerAdapter.
Download (0.016MB)
Added: 2005-07-05 License: Other/Proprietary License with Source Price:
1572 downloads
Sendmail::Milter 0.18
Sendmail::Milter is a Perl interface to sendmails Mail Filter API. more>>
Sendmail::Milter is a Perl interface to sendmails Mail Filter API.
SYNOPSIS
use Sendmail::Milter;
my %my_milter_callbacks =
(
connect => &my_connect_callback,
helo => &my_helo_callback,
envfrom => &my_envfrom_callback,
envrcpt => &my_envrcpt_callback,
header => &my_header_callback,
eoh => &my_eoh_callback,
body => &my_body_callback,
eom => &my_eom_callback,
abort => &my_abort_callback,
close => &my_close_callback,
);
sub my_connect_callback;
sub my_helo_callback;
sub my_envfrom_callback;
sub my_envrcpt_callback;
sub my_header_callback;
sub my_eoh_callback;
sub my_body_callback;
sub my_eom_callback;
sub my_abort_callback;
sub my_close_callback;
BEGIN:
{
# Get myfilters connection information
# from /etc/mail/sendmail.cf
Sendmail::Milter::auto_setconn("myfilter");
Sendmail::Milter::register("myfilter",
%my_milter_callbacks, SMFI_CURR_ACTS);
Sendmail::Milter::main();
# Never reaches here, callbacks are called from Milter.
}
Sendmail::Milter is a Perl extension to sendmails Mail Filter API (Milter).
Note: You need to have a Perl 5.6 or later interpreter built with -Dusethreads.
<<lessSYNOPSIS
use Sendmail::Milter;
my %my_milter_callbacks =
(
connect => &my_connect_callback,
helo => &my_helo_callback,
envfrom => &my_envfrom_callback,
envrcpt => &my_envrcpt_callback,
header => &my_header_callback,
eoh => &my_eoh_callback,
body => &my_body_callback,
eom => &my_eom_callback,
abort => &my_abort_callback,
close => &my_close_callback,
);
sub my_connect_callback;
sub my_helo_callback;
sub my_envfrom_callback;
sub my_envrcpt_callback;
sub my_header_callback;
sub my_eoh_callback;
sub my_body_callback;
sub my_eom_callback;
sub my_abort_callback;
sub my_close_callback;
BEGIN:
{
# Get myfilters connection information
# from /etc/mail/sendmail.cf
Sendmail::Milter::auto_setconn("myfilter");
Sendmail::Milter::register("myfilter",
%my_milter_callbacks, SMFI_CURR_ACTS);
Sendmail::Milter::main();
# Never reaches here, callbacks are called from Milter.
}
Sendmail::Milter is a Perl extension to sendmails Mail Filter API (Milter).
Note: You need to have a Perl 5.6 or later interpreter built with -Dusethreads.
Download (0.020MB)
Added: 2007-04-19 License: Perl Artistic License Price:
919 downloads
SPF Sendmail milter 2.0.2
SPF Sendmail milter is a simple Sendmail filter that implements the Sender Policy Framework with the help of the libSPF2 library more>>
SPF Sendmail milter is a Sendmail filter that implements the Sender Policy Framework technology with help of libSPF2 library.
It checks SPF records to make sure that the email is authorized by the domain name that it is coming from. This prevents email forgery, commonly used by spammers, scammers and email viruses/worms.
It can reject messages on SPF hardfail result. Also it adds the standard Received-SPF header with SPF results to the scanned messages.
This filter aims to be lightweight, reliable, and simple. Its written in C. Although this filter is a stable itself, libSPF2 is a beta software and can be unstable. It can affect to the filter stability. Please, use it in the production environment with caution.
Main features:
- It has a hosts/networks whitelist;
- It can reject messages on SPF hardfail result;
- It can add the standard header with SPF results;
- It logs all filter activities to syslog.
- Small code (does not exceed 320 lines);
- Fast work;
- Stability (production quality);
- Low resources are required;
- No temporary files are created.
Enhancements:
- Cosmetic enhancements were made.
<<lessIt checks SPF records to make sure that the email is authorized by the domain name that it is coming from. This prevents email forgery, commonly used by spammers, scammers and email viruses/worms.
It can reject messages on SPF hardfail result. Also it adds the standard Received-SPF header with SPF results to the scanned messages.
This filter aims to be lightweight, reliable, and simple. Its written in C. Although this filter is a stable itself, libSPF2 is a beta software and can be unstable. It can affect to the filter stability. Please, use it in the production environment with caution.
Main features:
- It has a hosts/networks whitelist;
- It can reject messages on SPF hardfail result;
- It can add the standard header with SPF results;
- It logs all filter activities to syslog.
- Small code (does not exceed 320 lines);
- Fast work;
- Stability (production quality);
- Low resources are required;
- No temporary files are created.
Enhancements:
- Cosmetic enhancements were made.
Download (0.067MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1028 downloads
Net::DNS::Sendmail 0.1
Net::DNS::Sendmail is a Simple Mail Transfer Mail Client with MX lookup. more>>
Net::DNS::Sendmail is a Simple Mail Transfer Mail Client with MX lookup. Which will basically act as a primitive sendmail MTA.
SYNOPSIS
use Net::DNS::Sendmail;
# Constructors
$smtp = Net::DNS::Sendmail->new();
$smtp->to("john@gmail.com, mary@yahoo.com, goliath@hotmail.com");
$smtp->from("srikanth@cpan.org");
$smtp->subject("This is the subject line.");
$smtp->data("This allows for sending single or multiple emailsn " .
directly to sendmail servers.");
$smtp->data(" This program runs directly on the public domain just like");
$smtp->data(" sendmail.");
$smtp->sendmail();
This module implements a client interface to the SMTP and EMSMTP ( as mentioned in RFC821 and RFC2821) servers which allow you to use it as a SMTP/ESMTP client. This module connects directly to Yahoo/Hotmail/Gmail servers and delivers the mail without the need for intermediate Mail Transfer Agents(MTA) like sendmail(sendmail.org).
A new Net::DNS::Sendmail object must be created with the new method. Once this has been done then the to, from, subject and data sections of an email are created with the following methods using the object.
<<lessSYNOPSIS
use Net::DNS::Sendmail;
# Constructors
$smtp = Net::DNS::Sendmail->new();
$smtp->to("john@gmail.com, mary@yahoo.com, goliath@hotmail.com");
$smtp->from("srikanth@cpan.org");
$smtp->subject("This is the subject line.");
$smtp->data("This allows for sending single or multiple emailsn " .
directly to sendmail servers.");
$smtp->data(" This program runs directly on the public domain just like");
$smtp->data(" sendmail.");
$smtp->sendmail();
This module implements a client interface to the SMTP and EMSMTP ( as mentioned in RFC821 and RFC2821) servers which allow you to use it as a SMTP/ESMTP client. This module connects directly to Yahoo/Hotmail/Gmail servers and delivers the mail without the need for intermediate Mail Transfer Agents(MTA) like sendmail(sendmail.org).
A new Net::DNS::Sendmail object must be created with the new method. Once this has been done then the to, from, subject and data sections of an email are created with the following methods using the object.
Download (0.005MB)
Added: 2006-12-21 License: Perl Artistic License Price:
1039 downloads
Sendmail::AccessDB 0.09
Sendmail::AccessDB is an interface to the Sendmail access.db list. more>>
Sendmail::AccessDB is an interface to the Sendmail access.db list.
SYNOPSIS
use Sendmail::AccessDB qw(spam_friend whitelisted);
$friend_or_hater = spam_friend(user@example.com);
$whitelisted = whitelisted(sender@example.com);
This module is designed so that users of the Sendmail::Milter module (or other Sendmail programmers) can ascertain if a user has elected to whitelist themselves as a "spam friend" (where there should be no spam filtering on mail to them) or, where spam-filtering is not the default, but an option, where certain receipients have been labeled as "spam haters"
USAGE
use Sendmail::AccessDB qw(spam_friend);
$friend_or_hater = spam_friend(user@example.com);
Ordinarily, this will look for such things as "Spam:user@example.com", "Spam:user@", etc., in the /etc/mail/access.db file. There is an optional second argument "Category", which could be used if you wanted to enable specific checks, for example, if you wanted to customize down to a per-check basis, you might use:
$rbl_friend_or_hater = spam_friend(user@example.com,
qualifier => maps_rbl);
$dul_friend_or_hater = spam_friend(user@example.com,
qualifier => maps_dul);
Caution should be taken when defining your own categories, as they may inadvertantly conflict with Sendmail-defined categories.
use Sendmail::AccessDB qw(whitelisted);
$whitelisted = whitelisted(sender@example.com);
$whitelisted_host = whitelisted(foo.example.com);
$whitelisted_addr = whitelisted(192.168.1.123);
Would check for appropriate whitelisting entries in access.db. Some lookups might be ambiguous, for example:
$whitelisted = whitelisted(foobar);
where it is hard to know if that is supposed to be a hostname, or a sender. whitelisted() accepts the type argument, such as:
$whitelisted = whitelisted(foobar,type=>hostname);
$whitelisted = whitelisted(postmaster,type=>mail);
Its also possible to feed the qualifier argument, if necessary, for example, to do:
$whitelisted = whitelisted(host.example.com,type=>hostname,
qualifier => Connect);
which would check to see if this host has an OK flag set for the Connect qualifier.
There is also the generic "lookup", which, at its simplest, takes a single argument:
$rc = lookup(host.example.com);
will do a lookup on host.example.com. But if you wanted to pay attention to parent-domains, you might do:
$rc = lookup(host.example.com, type=>hostname);
but if you wanted to find out if host.example.com, or any of its parent domains (example.com and com), had a value in the "MyQual" qualifier, you might do:
$rc = lookup(host.example.com,type=>hostname,qualifier=>MyQual);
which would look up, in order MyQual:host.example.com, MyQual:example.com, and MyQual:com, returning the first (most specific) one found.
<<lessSYNOPSIS
use Sendmail::AccessDB qw(spam_friend whitelisted);
$friend_or_hater = spam_friend(user@example.com);
$whitelisted = whitelisted(sender@example.com);
This module is designed so that users of the Sendmail::Milter module (or other Sendmail programmers) can ascertain if a user has elected to whitelist themselves as a "spam friend" (where there should be no spam filtering on mail to them) or, where spam-filtering is not the default, but an option, where certain receipients have been labeled as "spam haters"
USAGE
use Sendmail::AccessDB qw(spam_friend);
$friend_or_hater = spam_friend(user@example.com);
Ordinarily, this will look for such things as "Spam:user@example.com", "Spam:user@", etc., in the /etc/mail/access.db file. There is an optional second argument "Category", which could be used if you wanted to enable specific checks, for example, if you wanted to customize down to a per-check basis, you might use:
$rbl_friend_or_hater = spam_friend(user@example.com,
qualifier => maps_rbl);
$dul_friend_or_hater = spam_friend(user@example.com,
qualifier => maps_dul);
Caution should be taken when defining your own categories, as they may inadvertantly conflict with Sendmail-defined categories.
use Sendmail::AccessDB qw(whitelisted);
$whitelisted = whitelisted(sender@example.com);
$whitelisted_host = whitelisted(foo.example.com);
$whitelisted_addr = whitelisted(192.168.1.123);
Would check for appropriate whitelisting entries in access.db. Some lookups might be ambiguous, for example:
$whitelisted = whitelisted(foobar);
where it is hard to know if that is supposed to be a hostname, or a sender. whitelisted() accepts the type argument, such as:
$whitelisted = whitelisted(foobar,type=>hostname);
$whitelisted = whitelisted(postmaster,type=>mail);
Its also possible to feed the qualifier argument, if necessary, for example, to do:
$whitelisted = whitelisted(host.example.com,type=>hostname,
qualifier => Connect);
which would check to see if this host has an OK flag set for the Connect qualifier.
There is also the generic "lookup", which, at its simplest, takes a single argument:
$rc = lookup(host.example.com);
will do a lookup on host.example.com. But if you wanted to pay attention to parent-domains, you might do:
$rc = lookup(host.example.com, type=>hostname);
but if you wanted to find out if host.example.com, or any of its parent domains (example.com and com), had a value in the "MyQual" qualifier, you might do:
$rc = lookup(host.example.com,type=>hostname,qualifier=>MyQual);
which would look up, in order MyQual:host.example.com, MyQual:example.com, and MyQual:com, returning the first (most specific) one found.
Download (0.015MB)
Added: 2007-04-19 License: Perl Artistic License Price:
918 downloads
Sendmail Sender Address Validator 1.4.0
smf-sav is a lightweight, fast and reliable Sendmail milter that implements a real-time Sender e-Mail Address Verification. more>>
smf-sav is a lightweight, fast and reliable Sendmail milter that implements a real-time Sender e-Mail Address Verification technology. This technology can stop some kind of SPAM with a spoofed senders e-Mail address.
Also it implements a real-time Recipient e-Mail Address Verification technology. It can be useful if your machine is a backup MX for the recipients domain or if your machine forwards all e-Mail messages for your domain to another (presumably internal) e-Mail server. Sendmail Sender Address Validator is written in C.
Main features:
- friendly hosts/networks whitelist;
- SMTP AUTH support;
- strictly RFC-2821 compliant MX callback engine;
- tolerance against non RFC-2821 compliant e-Mail servers;
- blocking of e-Mail messages with a spoofed senders e-Mail address;
- recipients e-Mail address verification with an authoritative e-Mail store in gateway mode;
- slow down of recipients e-Mail address brute force attacks in gateway mode.
Enhancements:
- Whitelisting by a PTR (reverse DNS) record was implemented.
- Whitelisting by an envelope recipient email address was implemented.
- The option to ignore tempfailed results of SAV was implemented.
- The option to refuse email messages from systems that dont accept the null reverse-path was implemented.
- Tempfail and fail results TTL settings were segregated.
- Progressive slowdown of brute force attacks on a recipients email address was implemented.
<<lessAlso it implements a real-time Recipient e-Mail Address Verification technology. It can be useful if your machine is a backup MX for the recipients domain or if your machine forwards all e-Mail messages for your domain to another (presumably internal) e-Mail server. Sendmail Sender Address Validator is written in C.
Main features:
- friendly hosts/networks whitelist;
- SMTP AUTH support;
- strictly RFC-2821 compliant MX callback engine;
- tolerance against non RFC-2821 compliant e-Mail servers;
- blocking of e-Mail messages with a spoofed senders e-Mail address;
- recipients e-Mail address verification with an authoritative e-Mail store in gateway mode;
- slow down of recipients e-Mail address brute force attacks in gateway mode.
Enhancements:
- Whitelisting by a PTR (reverse DNS) record was implemented.
- Whitelisting by an envelope recipient email address was implemented.
- The option to ignore tempfailed results of SAV was implemented.
- The option to refuse email messages from systems that dont accept the null reverse-path was implemented.
- Tempfail and fail results TTL settings were segregated.
- Progressive slowdown of brute force attacks on a recipients email address was implemented.
Download (0.015MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1099 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
mechanoid.send_yahoo 0.1.7
mechanoid.send_yahoo it sends your email using your Yahoo! Web mail account. more>>
send_yahoo is a sendmail substitute for clients like mutt.
It sends your email using your Yahoo! Web mail account. send_yahoo is a mechanoid script.
Enhancements:
- This release adds a missing lib_rharris module.
<<lessIt sends your email using your Yahoo! Web mail account. send_yahoo is a mechanoid script.
Enhancements:
- This release adds a missing lib_rharris module.
Download (0.015MB)
Added: 2005-08-29 License: GPL (GNU General Public License) Price:
1517 downloads
Mail Notification 4.1
Mail Notification is a status icon (aka tray icon) that informs you if you have new mail. more>>
Mail Notification is a status icon (aka tray icon) that informs you if you have new mail.
Mail Notification works with system trays implementing the freedesktop.org System Tray Specification, such as the GNOME Panel Notification Area, the Xfce Notification Area and the KDE System Tray.
Main features:
- multiple mailbox support
- mbox, MH, Maildir, Sylpheed, POP3, IMAP and Gmail support
- SASL authentication support
- APOP authentication support
- SSL/TLS support
- automatic detection of mailbox format
- immediate notification (the status icon is updated within seconds after a mailbox changes)
- a mail summary
- HIG 2.0 compliance.
<<lessMail Notification works with system trays implementing the freedesktop.org System Tray Specification, such as the GNOME Panel Notification Area, the Xfce Notification Area and the KDE System Tray.
Main features:
- multiple mailbox support
- mbox, MH, Maildir, Sylpheed, POP3, IMAP and Gmail support
- SASL authentication support
- APOP authentication support
- SSL/TLS support
- automatic detection of mailbox format
- immediate notification (the status icon is updated within seconds after a mailbox changes)
- a mail summary
- HIG 2.0 compliance.
Download (0.70MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
851 downloads
Sendmail delivery stats 1.4
Sendmail delivery stats is a Perl script to analyze Sendmail log files and produce mean delivery times. more>>
Sendmail delivery stats is a Perl script to analyze Sendmail log files and produce mean delivery times. It dumps all data in CSV format.
Recently I had to bear with mail server analyze, serving traffic on level +10k messages a day. And there were some degradation of services felt by users, but there was no stright pattern what mails are delivered with bigger latency. Since this was Sendmail powered site I wrote simple tool in Perl to help with analysis.
I hope it is simple to use. What it does ? It collects all log entries, which are related to successful mail delivery. Groups it by domain and calculates average delivery time (time to leave queue - I is rather impossible to estimate time spend in others servers queues). Most useful (for me) is -a option, which makes all output in CSV format, for easy use in further analysis.
It was tested on logs from Sendmail 8.13.x and I belive it calculates proper values.
Enhancements:
- The HTML output format was added, with possible template use.
- Output is now sorted.
- Minor bugfixes and code cleanup were done.
<<lessRecently I had to bear with mail server analyze, serving traffic on level +10k messages a day. And there were some degradation of services felt by users, but there was no stright pattern what mails are delivered with bigger latency. Since this was Sendmail powered site I wrote simple tool in Perl to help with analysis.
I hope it is simple to use. What it does ? It collects all log entries, which are related to successful mail delivery. Groups it by domain and calculates average delivery time (time to leave queue - I is rather impossible to estimate time spend in others servers queues). Most useful (for me) is -a option, which makes all output in CSV format, for easy use in further analysis.
It was tested on logs from Sendmail 8.13.x and I belive it calculates proper values.
Enhancements:
- The HTML output format was added, with possible template use.
- Output is now sorted.
- Minor bugfixes and code cleanup were done.
Download (0.004MB)
Added: 2005-11-06 License: GPL (GNU General Public License) Price:
1451 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 sendmail 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