turbo mailer serial
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 317
Turbo Vision 2.1.0
Turbo Vision is a nice and complete console TUI (Text User Interface) library for C++. more>>
Turbo Vision is a C++ library that provides a very nice user interface for console applications. This UNIX port is based on Borlands version 2.0 with fixes. It was made to create RHIDE, a nice IDE for gcc and other GNU compilers.
The library supports /dev/vcsa devices for fast access to local consoles, and it uses ncurses to run from telnet and xterm. This port, in contrast to the Sigalas port, doesnt have "100% compatibility with the original library" as goal. Instead, many modifications were made for the sake of security (especially buffer overflows).
This port is also available for the original platform (DOS).
<<lessThe library supports /dev/vcsa devices for fast access to local consoles, and it uses ncurses to run from telnet and xterm. This port, in contrast to the Sigalas port, doesnt have "100% compatibility with the original library" as goal. Instead, many modifications were made for the sake of security (especially buffer overflows).
This port is also available for the original platform (DOS).
Download (MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
929 downloads
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
<<lessSwift 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
Download (0.76MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
808 downloads
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
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
Tiny serial terminal 1.1
Tiny serial terminal is a simple and dumb tool to access serial ports. more>>
Tiny serial terminal is a simple and dumb tool to access serial ports. Mainly intended for use to access serial consoles of various hardware.
Usage:
Download: com.c
Version : 1.1
Size : 4607 bytes
MD5 : 73a394b6d5ad333c2bf542315e1a0b73
SHA1 : 53c8ea8a1d5450ac4237a20c843e1462acaaa96e
Building: cc -o com com.c
Usage : ./com /dev/device [speed]
Example : ./com /dev/ttyS0 [115200]
Keys : Ctrl-A - exit, Ctrl-X - display control lines status
Darcs : darcs get http://tinyserial.sf.net/
Scr.shot: screenshot.png (8862 bytes)
<<lessUsage:
Download: com.c
Version : 1.1
Size : 4607 bytes
MD5 : 73a394b6d5ad333c2bf542315e1a0b73
SHA1 : 53c8ea8a1d5450ac4237a20c843e1462acaaa96e
Building: cc -o com com.c
Usage : ./com /dev/device [speed]
Example : ./com /dev/ttyS0 [115200]
Keys : Ctrl-A - exit, Ctrl-X - display control lines status
Darcs : darcs get http://tinyserial.sf.net/
Scr.shot: screenshot.png (8862 bytes)
Download (0.005MB)
Added: 2006-08-21 License: BSD License Price:
1208 downloads
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.
<<lessThe 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.
Download (0.38MB)
Added: 2006-04-17 License: The Apache License 2.0 Price:
1285 downloads
LibSerial 0.0.3
LibSerial provides a collection of C++ classes that allow one to access serial ports on POSIX systems. more>>
LibSerial provides a collection of C++ classes that allow one to access serial ports on POSIX systems like standard C++ iostream objects.
Member functions are provided for setting various parameters of the serial ports such as the baud rate, character size, flow control and others. LibSerials idea is to simplify serial port programming on POSIX systems.
When you have installed the above tools, run the following commands:
Installation:
./configure
make
make install
Note: The html documentation will not be installed by "make install". I will fix this in the future release.
<<lessMember functions are provided for setting various parameters of the serial ports such as the baud rate, character size, flow control and others. LibSerials idea is to simplify serial port programming on POSIX systems.
When you have installed the above tools, run the following commands:
Installation:
./configure
make
make install
Note: The html documentation will not be installed by "make install". I will fix this in the future release.
Download (0.35MB)
Added: 2006-05-18 License: GPL (GNU General Public License) Price:
1260 downloads
MobileRemoteSE 0.1
MobileRemoteSE is a light (non-Java), serial-over-bluetooth-based remote control for Amarok. more>>
MobileRemoteSE is a light (non-Java), serial-over-bluetooth-based remote control for Amarok.
Uses the Sony Ericsson AT command set, and supports the following Sony Ericsson phone models: K750, W800, Z520, W550, W600, W900, W810, Z530, W300, K510, K310, W700, Z525, W710, Z550, Z558, K320
Main features:
- Appears under "Entertainment" menu on the phone.
- Supports Play/Pause, Next, Prev, Stop, Volume Up/Down operations from mobile phone.
- Displays the current running track on Amarok in the phone menu title.
- Since J2ME is not used (unlike some other alternatives), the remote control can be used while running some other application on non-multitasking models.
Instructions:
1) Bind /dev/rfcomm0 to the serial-over-bluetooth channel of your mobile. Please refer to your distro docs or howtos on the internet to find out how to do this.
2) Install Device::Modem package for Perl. You can either use your distro packages for this, or install through CPAN as:
cpan -i Device::Modem
3) Install and start script from Amarok.
<<lessUses the Sony Ericsson AT command set, and supports the following Sony Ericsson phone models: K750, W800, Z520, W550, W600, W900, W810, Z530, W300, K510, K310, W700, Z525, W710, Z550, Z558, K320
Main features:
- Appears under "Entertainment" menu on the phone.
- Supports Play/Pause, Next, Prev, Stop, Volume Up/Down operations from mobile phone.
- Displays the current running track on Amarok in the phone menu title.
- Since J2ME is not used (unlike some other alternatives), the remote control can be used while running some other application on non-multitasking models.
Instructions:
1) Bind /dev/rfcomm0 to the serial-over-bluetooth channel of your mobile. Please refer to your distro docs or howtos on the internet to find out how to do this.
2) Install Device::Modem package for Perl. You can either use your distro packages for this, or install through CPAN as:
cpan -i Device::Modem
3) Install and start script from Amarok.
Download (0.008MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1044 downloads
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
<<lessBlackmail 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
Download (0.056MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1206 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
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.
<<lessYou 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.
Download (0.019MB)
Added: 2005-10-03 License: GPL (GNU General Public License) Price:
1481 downloads
ANSI/Turbo Pascal to C/C++(liunx) 3.58
Pascal to C/C++ converter more>> This is yet another Pascal to C/C++ converter. The primary idea of this converter is to produce readable and supportable code which preserves style of original code as far as possible.
Converter recognizes Pascal dialects which are compatible with Turbo Pascal 4.0/5.0 and ISO Pascal standard - IEC 7185:1990(E) (including conformant arrays). At this moment it was tested with Turbo Pascal, Oregon Pascal, Sun Pascal and HP Pascal.
Converter can produce both C++ and C output. Using of C++ language allows to encapsulate some Pascal types and constructions into C++ classes. So mapping between Pascal and C++ becomes more direct then between Pascal and C. I use C++ templates to implement Pascal arrays and files. Special template classes are used for conformant arrays. C++ like streams are used to implement Pascal IO routines. The same runtime library is used both for C and C++.
Now PtoC recognizes Turbo Pascals extensions, such as units, strings, some special types and operations. Turbo Pascal extensions are supported only for C++ language.
At this moment PtoC successfully converts more than 400,000 lines of Oregon Pascal to C (from RSX to OpenVMS). To test C++ translation and conversion of Turbo Pascal extensions I convert BGIDEMO.PAS and LISTER.PAS files from Turbo Pascal distribution and also convert some numeric programs written on Turbo Pascal by my friends. To check quality of conversion please look in file bgidemo.cxx which was produces from original Borland bgidemo.pas without any manual changes. Moreover it is possible to compile it, link with WinBGI library and run it under Windows or X-Windows.<<less
Download (263KB)
Added: 2009-04-10 License: Freeware Price: Free
223 downloads
Mail::MboxParser::Mail::Convertable 0.55
Mail::MboxParser::Mail::Convertable is a Perl module that can convert mail for sending etc. more>>
Mail::MboxParser::Mail::Convertable is a Perl module that can convert mail for sending etc.
SYNOPSIS
use Mail::MboxParser;
[...]
# $msg is a Mail::MboxParser::Mail-object
my $mail = $msg->make_convertable;
$mail->delete_from_header(date, message-id);
$mail->replace_in_header(to, john.doe@foobar.com);
$mail->add_to_header( [cc, john.does.brother@foobar.com],
where => BEHIND );
$mail->send(sendmail);
This class adds means to convert an email object into something that could be send via SMTP, NNTP or dumped to a file or filehandle. Therefore, methods are provided that change the structure of an email which includes adding and removing of header-fields, MIME-parts etc and transforming them into objects of related modules.
Currently, only basic manipulation of the header and sending using Mail::Mailer is provided. More is to come soon.
This class works non-destructive. You first create a Convertable-object and do any modifications on this while the Mail-object from which it was derived will not be touched.
<<lessSYNOPSIS
use Mail::MboxParser;
[...]
# $msg is a Mail::MboxParser::Mail-object
my $mail = $msg->make_convertable;
$mail->delete_from_header(date, message-id);
$mail->replace_in_header(to, john.doe@foobar.com);
$mail->add_to_header( [cc, john.does.brother@foobar.com],
where => BEHIND );
$mail->send(sendmail);
This class adds means to convert an email object into something that could be send via SMTP, NNTP or dumped to a file or filehandle. Therefore, methods are provided that change the structure of an email which includes adding and removing of header-fields, MIME-parts etc and transforming them into objects of related modules.
Currently, only basic manipulation of the header and sending using Mail::Mailer is provided. More is to come soon.
This class works non-destructive. You first create a Convertable-object and do any modifications on this while the Mail-object from which it was derived will not be touched.
Download (0.042MB)
Added: 2006-08-15 License: Perl Artistic License Price:
1168 downloads
Better String Library 07222006
Better String Library is an abstraction of a string data type which is superior to the C library char buffer string. more>>
Better String Library is an abstraction of a string data type which is superior to the C library char buffer string type and C++s std::string.
The library is totally stand alone, portable (known to work with gcc/g++, MSVC++, Intel C++, WATCOM C/C++, Turbo C, Borland C++, IBMs native CC compiler on Windows, Linux and Mac OS X), high performance, easy to use and is not part of some other collection of data structures. Even the file I/O functions are totally abstracted (so that other stream-like mechanisms, like sockets, can be used.)
Nevertheless, it is adequate as a complete replacement of the C string library for string manipulation in any C program.
The library includes a robust C++ wrapper that uses overloaded operators, rich constructors, exceptions, stream I/O and STL to make the CBString struct a natural and powerful string abstraction with more functionality and higher performance than std::string.
Bstrlib is stable, well tested and suitable for any software production environment.
<<lessThe library is totally stand alone, portable (known to work with gcc/g++, MSVC++, Intel C++, WATCOM C/C++, Turbo C, Borland C++, IBMs native CC compiler on Windows, Linux and Mac OS X), high performance, easy to use and is not part of some other collection of data structures. Even the file I/O functions are totally abstracted (so that other stream-like mechanisms, like sockets, can be used.)
Nevertheless, it is adequate as a complete replacement of the C string library for string manipulation in any C program.
The library includes a robust C++ wrapper that uses overloaded operators, rich constructors, exceptions, stream I/O and STL to make the CBString struct a natural and powerful string abstraction with more functionality and higher performance than std::string.
Bstrlib is stable, well tested and suitable for any software production environment.
Download (0.11MB)
Added: 2006-08-24 License: BSD License Price:
1156 downloads
Serial Over IP 1.0
Serial Over IP is a tool for the transport of serial interfaces over UDP/IP. more>>
Serial Over IP is a tool for the transport of serial interfaces over UDP/IP. It is very usefull for connecting distant equipment that run via a serial interfaces to a local computer.
One linux will be server and one will be client. On the server you can start the program typing the following command:
bash# serialoverip -d /dev/ttyS0 9600-8n1 -s 127.0.0.1 3000
... and on the client:
bash# serialoverip -c 127.0.0.1 3000 -d /dev/ttyS1 9600-8n1
In both commands the IP address is the server IP. Note that you have to start the server first, and it will be efectively be running only after the first packet received from the client.
<<lessOne linux will be server and one will be client. On the server you can start the program typing the following command:
bash# serialoverip -d /dev/ttyS0 9600-8n1 -s 127.0.0.1 3000
... and on the client:
bash# serialoverip -c 127.0.0.1 3000 -d /dev/ttyS1 9600-8n1
In both commands the IP address is the server IP. Note that you have to start the server first, and it will be efectively be running only after the first packet received from the client.
Download (0.16MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1218 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 turbo mailer serial 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