sendmail milter
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 163
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
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.
<<lessThis 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.
Download (0.017MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
996 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
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
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.
<<lessSendmailizer 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.
Download (0.012MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
980 downloads
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.
<<lessStatistics are generated per hour, day, month and year. Graphs are in PNG format.
Download (0.023MB)
Added: 2007-06-27 License: Perl Artistic License Price:
850 downloads
Sendmail filter for ClamAV 1.2.1
Sendmail filter for ClamAV aims to be lightweight, reliable and simple. more>>
smf-clamd is a Sendmail milter for the ClamAV (Clam AntiVirus).
Sendmail filter for ClamAV aims to be lightweight, reliable and simple. Sendmail filter for ClamAV is written in C.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It rejects infected messages at the SMTP DATA stage;
- It can add an information header with scan 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;
- No temporary files are created.
Enhancements:
- A workaround for the Sendmail socket unsafe error on some platforms was implemented.
- Clean email messages logging was removed.
- Configuration file, default user, and working directory were changed.
- The format of log records was changed.
- Some samples of start-up scripts were added.
- The new TODO tasks were added.
- Cosmetic enhancements were made.
<<lessSendmail filter for ClamAV aims to be lightweight, reliable and simple. Sendmail filter for ClamAV is written in C.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It rejects infected messages at the SMTP DATA stage;
- It can add an information header with scan 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;
- No temporary files are created.
Enhancements:
- A workaround for the Sendmail socket unsafe error on some platforms was implemented.
- Clean email messages logging was removed.
- Configuration file, default user, and working directory were changed.
- The format of log records was changed.
- Some samples of start-up scripts were added.
- The new TODO tasks were added.
- Cosmetic enhancements were made.
Download (0.023MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1235 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
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.
<<lessNomenclatura:
- 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.
Download (0.050MB)
Added: 2006-06-02 License: GPL (GNU General Public License) Price:
1239 downloads
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
<<lessIf 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
Download (0.002MB)
Added: 2006-04-21 License: Freeware Price:
1281 downloads
SMC anti-spam milter 1.7
SMC anti-spam milter is an Sendmail plugin, that is designed to significantly reduce the amount of junk email you receive. more>>
SMC non-context E-mail filter - is an software application designed to significantly reduce the amount of SPAM/UCE (junk-mail) you receive. 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 milter (plugin), which stops the junk-mail 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 10-minutes checks, which setted by the "maxcount" configuration parameter.
And the third of original algorithms is "auto-authentication" 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 previous "check delay" algorithm.
Enhancements:
- CLOSE_WAIT problems have been solved (a critical bug).
- There is a critical bugfix to prevent DNS storms.
- All of the resolver functions use the local resolver context.
- Automake and autoconf support have been added.
<<lessIn additional SMC has a set of useful features which allows to preserve mail recipients from dangerous message attachments, HTML includes. SMC is an Sendmail milter (plugin), which stops the junk-mail 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 10-minutes checks, which setted by the "maxcount" configuration parameter.
And the third of original algorithms is "auto-authentication" 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 previous "check delay" algorithm.
Enhancements:
- CLOSE_WAIT problems have been solved (a critical bug).
- There is a critical bugfix to prevent DNS storms.
- All of the resolver functions use the local resolver context.
- Automake and autoconf support have been added.
Download (0.096MB)
Added: 2005-07-30 License: GPL (GNU General Public License) Price:
1551 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
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 filter for SpamAssassin 1.3.1
smf-spamd is a Sendmail filter for SpamAssassin. more>>
smf-spamd is a Sendmail filter for SpamAssassin. Sendmail filter for SpamAssassin aims to be lightweight, reliable, and simple rather than have a myriad of options.
It only scans the messages less than defined size, has a hosts/networks whitelist, performs subject tagging if SPAM is detected, adds an information header, copies SPAM messages to the defined "garbage" mailbox, rejects SPAM messages at the SMTP DATA stage, and logs all filter activities to syslog.
The code is small (does not exceed 580 lines), fast, stable, and few resources are required. No temporary files are created.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It can tag the Subject if SPAM has been detected;
- It can add an information header with scan results to scanned messages;
- It can copy SPAM messages to the special "garbage" mailbox;
- It rejects SPAM messages at the SMTP DATA stage, if SPAM score is greater than a defined value;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required;
- No temporary files are created.
Enhancements:
- Incorrect handling of missed Message-Id: header was fixed.
- Cosmetic enhancements were made.
<<lessIt only scans the messages less than defined size, has a hosts/networks whitelist, performs subject tagging if SPAM is detected, adds an information header, copies SPAM messages to the defined "garbage" mailbox, rejects SPAM messages at the SMTP DATA stage, and logs all filter activities to syslog.
The code is small (does not exceed 580 lines), fast, stable, and few resources are required. No temporary files are created.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It can tag the Subject if SPAM has been detected;
- It can add an information header with scan results to scanned messages;
- It can copy SPAM messages to the special "garbage" mailbox;
- It rejects SPAM messages at the SMTP DATA stage, if SPAM score is greater than a defined value;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required;
- No temporary files are created.
Enhancements:
- Incorrect handling of missed Message-Id: header was fixed.
- Cosmetic enhancements were made.
Download (0.025MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1009 downloads
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
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 sendmail milter 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