Main > Free Download Search >

Free sendmail software for linux

sendmail

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 156
Sendmail 8.14.1

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.
<<less
Download (2.0MB)
Added: 2007-04-04 License: BSD License Price:
934 downloads
usendmail 0.1.6

usendmail 0.1.6


usendmail is a replacement for the sendmail program in the qmail package. more>>
usendmail is a replacement for the sendmail program in the qmail package.
Nomenclatura:
- usendmail is usendmail
- qsendmail is the qmail sendmail clone
- sendmail is plain old sendmail (getroot)
Enhancements:
- Adds more sendmail options (-G, -L, -X).
- the -f option now also influences the generation of the "from" header field, unless its already there or the QMAILHOST or QMAILUSER environment variables are set.
<<less
Download (0.050MB)
Added: 2006-06-02 License: GPL (GNU General Public License) Price:
1239 downloads
PerlSendmail 2.1

PerlSendmail 2.1


PerlSendmail is a small script to imitate having sendmail installed. more>>
PerlSendmail is a small script to imitate having sendmail installed.
If you have scripts that require SendMail for sending emails, but do not want to install sendmail on your server then you can use this wrapper instead.
This simple Perl script will send email by connecting to a user specified SMTP server directly. This means that no queue daemons or directories are needed.
If the SMTP server can not be reached then the email will be discarded.
Main features:
- Suitable for use in a chroot environment
- Supports the following sendmail command line options:
-f
-F
-t
- Simple installation
- Simple configuration
<<less
Download (0.002MB)
Added: 2006-04-21 License: Freeware Price:
1281 downloads
Sendmailizer 1.1

Sendmailizer 1.1


Sendmailizer provides a Sendmail and qmail log file analizer. more>>
Sendmailizer provides a Sendmail and qmail log file analizer.
Sendmailizer performs MTA log file analysis and generates email usage reports, with general stats and statistics per user.
Installing
1. move where sendmailizer.pl lives
2. Modify sendmailizer.conf (parameters are self-explanatory)
(logfile should be: /var/log/maillog)
(please especify local domains: mydomain.com,mydomain.net...)
3. Try with ./sendmailizer.pl sendmailizer.conf
Enhancements:
- Some bugfixes were made, including a data loss bugfix.
- The report design was changed.
<<less
Download (0.012MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
980 downloads
Sendmail X 0.0.0.0

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.
<<less
Download (3.7MB)
Added: 2005-10-30 License: Other/Proprietary License with Source Price:
1456 downloads
Sendmail-Jilter 1.2

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.
<<less
Download (0.016MB)
Added: 2005-07-05 License: Other/Proprietary License with Source Price:
1572 downloads
Mail::Sendmail 0.79

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.
<<less
Download (0.016MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1148 downloads
Sendmail::Milter 0.18

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.

<<less
Download (0.020MB)
Added: 2007-04-19 License: Perl Artistic License Price:
919 downloads
SendmailAnalyzer 3.0

SendmailAnalyzer 3.0


Sendmail Analyzer is a Perl script reporting full HTML and graph sendmail usage reports. more>>
Sendmail Analyzer is a perl script reporting full HTML and graph sendmail usage reports. The project reports statistics on inbound, outbound and largest messages, senders and recipients, relays, domains, and complete mailboxes usage if your country law allow it.

Statistics are generated per hour, day, month and year. Graphs are in PNG format.

<<less
Download (0.023MB)
Added: 2007-06-27 License: Perl Artistic License Price:
850 downloads
Net::DNS::Sendmail 0.1

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.

<<less
Download (0.005MB)
Added: 2006-12-21 License: Perl Artistic License Price:
1039 downloads
Sendmail::AccessDB 0.09

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.

<<less
Download (0.015MB)
Added: 2007-04-19 License: Perl Artistic License Price:
918 downloads
SPF Sendmail milter 2.0.2

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.
<<less
Download (0.067MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1028 downloads
Sendmail delivery stats 1.4

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.
<<less
Download (0.004MB)
Added: 2005-11-06 License: GPL (GNU General Public License) Price:
1451 downloads
GreyList Sendmail milter 2.1.0

GreyList Sendmail milter 2.1.0


smf-grey is a Sendmail milter that implements the GreyList Anti SPAM technology. more>>
smf-grey is a Sendmail milter that implements the GreyList Anti SPAM technology.
This technology can significantly reduce the amount of SPAM and viruses going from zombie computers (infected Windows PC), which produce more than 80% of SPAM.
GreyList Sendmail milter has a very effective GreyList algorithm on the base of the tuple: sender IP address (C class subnet), sender envelope and recipient envelope.
Its very recommended to use the smf-grey milter combined with the smf-zombie and the smf-spf milters. Its a triple impact on SPAM and viruses, that will seriously increase the efficiency of filtration.
This milter aims to be lightweight, reliable and simple. Its written in C.
Main features:
- It has a hosts/networks whitelist;
- It has an autowhitelist;
- It can add the information header with GreyList results to scanned messages;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required.
Enhancements:
- Whitelists auto reloading was implemented.
- Autowhitelisted records regular dumping and reloading was implemented.
- The default greylisting time period was increased.
- New TODO tasks were added.
- Cosmetic enhancements were made.
<<less
Download (0.017MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
996 downloads
Sendmail Confirmation System 1.8

Sendmail Confirmation System 1.8


Sendmail Confirmation System is an Sendmail milter plugin that is designed to reduce the amount of junk email received. more>>
Sendmail Confirmation System is an Sendmail milter plugin that is designed to reduce the amount of junk email received. SMC uses a dynamic local and DNS based remote "whitelists" (for known/trusted senders), DNS based "blacklists" (for undesired senders), and an original "autoauthentication" system (for unknown, but legitimate senders). In additional SMC has a set of useful features which allows to preserve mail recipients from dangerous message attachments, HTML includes. SMC is an Sendmail tm milter (plugin), which stops the junk mail messages without receiving one.
SMC uses 3 original algorithms, one of which is "Check relay by NS" simulates a dynamical whitelist and will always accept the messages from mail systems satisfying to following conditions:
1) Mail domain name (the host part of the senders e-mail address) must have an MX records;
2) Mail domain name and the connection host address must be resolved;
3) Connection host must be listed at the one of nameservers which hold the senders mail domain name.
The second from the developed algorithms is a "check delays" algorithm which is based on statistical check of delivery delays, generated by a [tempfail] return code, that allows to exclude a direct receiving of a mail, which not passed through the standard mail server.
NOTE: Using this feature the delivery of the mail from unknown, but legitimate senders will be delayed for a count of 5-minutes checks, which setted by the "maxcount" configuration parameter.
And the third of original algorithms is "autoconfirmation" algorithm: The sender of a "mail contact" (sender-recipient pair) means as authenticated (whitelisted) if the filters statistics module has registered the both of a sended forward (request) and a recieved backward (reply) messages of this contact. The messages from the such authenticated senders will never be delayed by the previos "check delay" algorithm.
Enhancements:
- Add checks to prevent overwrite all configuration data during install.
- Minor bug fix in ns-relay code.
<<less
Download (0.098MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1206 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5