Main > Free Download Search >

Free mailer software for linux

mailer

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 50
Sylpheed 2.7.0

Sylpheed 2.7.0


Sylpheed provides you with a perfect and must-see product which is a simple, lightweight but easy-to-use e-mail client (mailer, MUA). more>> <<less
Added: 2009-07-17 License: GPL Price: FREE
30 downloads
 
Other version of Sylpheed
Sylpheed 2.4.4the MH format, so youll be able to use it together with another mailer that uses the MH format
License:GPL (GNU General Public License)
Download (4.0MB)
857 downloads
Added: 2007-07-20
License:GPL (GNU General Public License)
Download (3.4MB)
1103 downloads
Added: 2006-11-15
Swift Mailer 3.3.0

Swift Mailer 3.3.0


Swift is a fully OOP Library for sending e-mails from PHP websites and applications. more>>
Swift is a fully OOP Library for sending e-mails from PHP websites and applications. Swift Mailer does not rely on PHPs native mail() function which is known for using high server resources when sending multiple emails. Instead, Swift communicates directly with an SMTP server or a MTA binary to send mail quickly and efficiently.
Swift is comparable to PHPMailer except that it implements an extremely flexible and innovative plugin system meaning you can get the most out of sending emails from your PHP applications. The interface for Swift is both tighter and more intuitive.
I started developing Swift because I moderate a popular PHP forum and its clear from some of the posts we see that PHPs native mail() function just doesnt quite cut it among developers unless you know a lot about how to build emails and you only need to send one message.
The only other popular alternative was PHPMailer which is great, but it just struck me that maybe developers might want something with a little more "umff"! So I wrote Swift initially for the communtity at the PHP Developers Network Forums and have decided to release it now under the LGPL. Enjoy!
Main features:
- Send uses one single connection to the SMTP server or MTA
- Doesnt rely on mail()
- Custom Headers
- Multiple encoding options
- TLS Support - for Gmail servers
- Embedded Images
- Builds and sends Multipart messages
- Sends single-part emails as usual
- Fast Cc and Bcc handling
- Batch emailing with multiple Tos or without
- Support for multiple attachments
- Set message priority
- Request Read Receipts
- Sendmail (or other binary) support
- Pluggable SMTP Authentication (LOGIN, PLAIN, MD5-CRAM, POP Before SMTP)
- Anti-Flooding support (reconnect every X emails) via plugin
- Secure Socket Layer connections (SSL)
- Loadable plugin support with event handling features
<<less
Download (0.76MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
808 downloads
Attachment Mailer class 1.20

Attachment Mailer class 1.20


Attachment Mailer class is a PHP class that can send email messages with multiple attachments and HTML. more>> <<less
Download (0.019MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1075 downloads
Postfix 2.4.5

Postfix 2.4.5


Postfix is Wietse Venemas mailer that started life as an alternative to the widely-used Sendmail program. more>>
Postfix project is Wietse Venemas mailer that started life as an alternative to the widely-used Sendmail program.

Postfix attempts to be fast, easy to administer, and secure, while at the same time being sendmail compatible enough to not upset existing users. Thus, the outside has a sendmail-ish flavor, but the inside is completely different.
<<less
Download (2.8MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
829 downloads
Mail::Send 1.74

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
<<less
Download (0.047MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1269 downloads
msn2mail 1.0

msn2mail 1.0


msn2mail is a MSN-to-e-mail gateway. more>>
msn2mail is a MSN-to-e-mail gateway.

For install follow these steps:
make
make install

This program needs fvhlib v2.1 or later!

Create a .msn2mailrc with:
username = your msn passport address
password = password
mailer = path to sendmail
forwardto = e-mail adres to forward to

You can have multiple forwardto-lines.

example:

username = folkert@hotmail.com
password = secret
mailer = /usr/bin/sendmail
forwardto = folkert@vanheusden.com
forwardto = flok@xs4all.nl
<<less
Download (0.003MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
699 downloads
Net::SMTP::TLS 0.12

Net::SMTP::TLS 0.12


Net::SMTP::TLS is an SMTP client supporting TLS and AUTH. more>>
Net::SMTP::TLS is an SMTP client supporting TLS and AUTH.

SYNOPSIS

use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
your.mail.host,
Hello => some.host.name,
Port => 25, #redundant
User => emailguy,
Password=> s3cr3t);
$mailer->mail(emailguy@your.mail.host);
$mailer->to(someonecool@somewhere.else);
$mailer->data;
$mailer->datasend("Sent thru TLS!");
$mailer->dataend;
$mailer->quit;

Net::SMTP::TLS is a TLS and AUTH capable SMTP client which offers an interface that users will find familiar from Net::SMTP. Net::SMTP::TLS implements a subset of the methods provided by that module, but certainly not (yet) a complete mirror image of that API.

The methods supported by Net::SMTP::TLS are used in the above example. Though self explanatory for the most part, please see the perldoc for Net::SMTP if you are unclear.

The differences in the methods provided are as follows:
The mail method does not take the options list taken by Net::SMTP
The to method also does not take options, and is the only method available to set the recipient (unlike the many synonyms provided by Net::SMTP).
The constructor takes a limited number of Net::SMTPs parameters. The constructor for Net::SMTP::TLS takes the following (in addition to the hostname of the mail server, which must be the first parameter and is not explicitly named):

NoTLS - In the unlikely event that you need to use this class to perform non-TLS SMTP (you ought to be using Net::SMTP itself for that...), this will turn off TLS when supplied with a true value. This will most often cause an error related to authentication when used on a server that requires TLS
Hello - hostname used in the EHLO command
Port - port to connect to the SMTP service (defaults to 25)
Timeout - Timeout for inital socket connection (defaults to 5, passed directly to IO::Socket::INET)
User - username for SMTP AUTH
Password - password for SMTP AUTH

<<less
Download (0.006MB)
Added: 2007-04-19 License: Perl Artistic License Price:
934 downloads
Svnmailer 1.0.8

Svnmailer 1.0.8


Svnmailer is a tool to post subversion repository commit information by mail, news or XML (to a CIA tracker). more>>
Svnmailer is a tool to post subversion repository commit information by mail, news or XML (to a CIA tracker).
The svnmailer package is derived from the script mailer.py distributed with subversion. Svnmailer arose from the idea to add some features to the original mailer script.
But Ive found the script not as extensible as it could be, so the svnmailer package was redeveloped from scratch with clearer design and extensibility in mind.
Now there are additional features like property diffs, MIME encoding, configurable handling of huge mails and news postings, subject templates, consistent unicode handling and even a better extensible command line.
Enhancements:
- This release enables the possibility to send mails as BCC and allows cia_rpc_server to be configured per notification group.
<<less
Download (0.38MB)
Added: 2006-04-17 License: The Apache License 2.0 Price:
1285 downloads
MailGoose 0.2.9

MailGoose 0.2.9


MailGoose is an off-line mailer package for people who use nail, PINE, elm, Emacs mail mode, or other simple email software. more>>
MailGoose is an off-line mailer package for people who use nail, PINE, elm, Emacs mail mode, or other simple email software. It is particularly useful for laptop users.
You can browse the URLs of your mail spool, mbox, or copy of an email message, create an offline draft reply of an email message, edit your drafts in your favorite editor, create a new
message, or send all pending drafts.
Think of MailGoose as the useful bells and whistles of the big email clients made available to the discriminating console-mode hacker.
Enhancements:
- Documentation and install fixes.
<<less
Download (0.019MB)
Added: 2005-10-03 License: GPL (GNU General Public License) Price:
1481 downloads
BlackMail 0.31

BlackMail 0.31


BlackMail is a highly configurable SMTP mail filter that runs at a system level as a proxy to your existing mailer. more>>
BlackMail is a highly configurable SMTP mail filter that runs at a system level as a proxy to your existing mailer. Selectively reject bogus or spam mail during receipt, saving you extra storage space or irate users.
Blackmail operates at a system-wide level: all incoming and optionally outgoing mail is filtered.Will block unwanted mail relaying (if your mailer is unable to) and spams.
The filtering consists of various checks on the SMTP envelope and message headers: if any tests fail then the mail will be bounced. Blackmail can...
Check against spam sites
Check against spam keywords
Check host names and email addresses using DNS for validity
Check against the RBL (Realtime Blackhole List) for spam IP addresses
Check that To: and From: address do not match (a common spam signature)
Check correct header formation e.g. Message-ID
The spam sites and spam keywords are of your choice, you can block who or what you want. Minimal sample lists are provided.
BlackMail is known to work with:
Mailers: Smail, Sendmail, Qmail, Fetchmail
OSes: Aix, various BSD, Irix, Linux, NeXTStep 3.x, Solaris, SunOs, SVR4 (Re-confirmation is required for some of these OSes.)
It should be possible to use BlackMail with most SMTP mailers on most UNIX systems. Blackmail is not designed to run on Windows or OS/2, but if you wish to port it...
Enhancements:
- Removed old reference to www.bitgate.com
<<less
Download (0.056MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1206 downloads
ASNMTAP::Asnmtap::Plugins::Mail 3.000.010

ASNMTAP::Asnmtap::Plugins::Mail 3.000.010


ASNMTAP::Asnmtap::Plugins::Mail is a Perl module that provides Mail functions used by ASNMTAP-based plugins. more>>
ASNMTAP::Asnmtap::Plugins::Mail is a Perl module that provides Mail functions used by ASNMTAP-based plugins.

SYNOPSIS

use ASNMTAP::Asnmtap::Plugins::Mail;

my $objectNagios = ASNMTAP::Asnmtap::Plugins::Mail->new ();

Sending and receiving fingerprinted (TXT or XML) mails. It are Mail::Sendmail (an simple platform independent mailer) based functions.

<<less
Download (1.6MB)
Added: 2006-09-16 License: Perl Artistic License Price:
1133 downloads
PHPSPELLBOOK 0.5

PHPSPELLBOOK 0.5


PHPSPELLBOOK is a suite of tools for Web site promotion, diagnosis, and improvement. more>>
PHPSPELLBOOK is a suite of tools for Web site promotion, diagnosis, and improvement.
PHPSPELLBOOK provides Web masters with tools such as advertisiment submission, a mass mailer, a broken link checker, a link exchange checker, fake click generators, anonymizer tools, a calendar, and more.
Main features:
- All tools could perform operations in anonymity relaying on Proxy/Socks4/Socks5 lists.
- Advertisement submissions tools
- SendMail: mass mailer
- Broken Link Checker
- Clicker tools [fake hits generators]
- Domain Spider
- HTTP Header Checker
- Link Exchange Checker
- Meta Tags Tools
- Page Ranking Tools [pagerank checker)
- Partners Finding Tools [find websites in a given pagerank range]
- E-Mail handling and parsing tools
- Translation Tools
- Url handling tools and generators
- Calendar
- Anonymous hosts list administration
- Anonymous host checker [proxy/socks4/socks5 checker]
- Jobs administration
- Smtp servers list administration
- Statistics
Enhancements:
- This release adds documentation updates, a code cleanup, new sources for socks4, socks5, and proxy lists, an installation script fix, a link popularity checker, and a partners finding tool.
<<less
Download (0.097MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
1422 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
spamstats 0.6c

spamstats 0.6c


Spamstats is a Perl script that analyses spamassassin+mailer logs in order to extract useful informations about spam traffic. more>>
Spamstats is a Perl script that analyses spamassassin+mailer logs in order to extract useful informations about spam traffic.

Spamstats was originally written in 2002 for the Council of Europe, and has since then it was modified to support new products and new features. In january 2004 the German edition of Linux Magazine published an article about Spamstats, followed the month after by the English edition of the same newspaper.

This script analyses log entries from your postfix, exim or sendmail email server, together with data from spamassassin, and will report to you the amount of spam, and non spam messages, that your site receives. Other nice and exclusive features are a sorting of top spammed email addresses of your domain, volume informations, html output...

Spamstats can easily be interfaced with the excellent Cricket graphing program to report very precise number of spam/non spam emails your site receives at any given time, together with other interesting spam-related informations.

<<less
Download (0.025MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1202 downloads
nPulse 0.54

nPulse 0.54


nPULSE is a Web-based network monitoring package for Unix-like operating systems. more>>
nPULSE is a Web-based network monitoring package for Unix-like operating systems. It can quickly monitor up to thousands of sites/devices at a time on multiple ports. nPULSE is written in Perl and comes with its own (SSL optional) Web server for extra security.

Instead of re-inventing existing code, nPulse uses many excellent OpenSource (GPL) products including
Nmap www.insecure.org/nmap [required]
Perl www.cpan.org [required]
OpenSSL www.openssl.com [optional]
Net::SSLeay and Mail::Mailer www.cpan.org [optional]
Java Telnet App www.mud.de/se/jta [included]
A modified version of miniserv.pl www.webmin.com [included]

<<less
Download (0.38MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1216 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4