Main > Free Download Search >

Free mail order brides software for linux

mail order brides

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2657
Mail 2 Wordpress 1.02

Mail 2 Wordpress 1.02


Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail. more>>
Mail 2 Wordpress is an SMTP mailrobot for posting wordpress blog entries via SMTP mail.

<<less
Download (0.007MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1404 downloads
Quick Order 1.1

Quick Order 1.1


Quick Order provides an ordering system using Java Wireless HTTP Form. more>>
Quick Order provides an ordering system using Java Wireless HTTP Form.
It uses J2ME libraries to submit forms to an HTTP server running PHP and MySQL. It can run on any embedded device that supports Java Wireless, including mobile phones and Palm systems.
It is ideal for making orders in restaurants, point of sale (POS), etc. It supports English and Chinese Big 5 encoding.
Enhancements:
- PASP is used for the server-side language font.
- An HTTP POST method was added to the server.
- A vector is used to allow flexibility of ordered items.
<<less
Download (0.021MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
987 downloads
Build Order Analyzer 2.0

Build Order Analyzer 2.0


Build Order Anlyzer for the Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. more>>
Build Order Anlyzer for the Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Many sites go to great lengths to explain Build Orders, but the Build Order Analyzer is the first tool to actually allow players the ability to define a Build Order and then compare it to other Build Orders over time.

Key Facts to know about the Build Order Analyzer:

Only tool of its kind
Can support multiple types of RTS based games (not just Axis & Allies RTS!)
Built on Java technology & open source software

The Build Order Anlyzer 2.0 for Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Wikipedia has a great defnition for a Build Order. To summarize, a Build Order in an RTS game defines the order in which a player builds their buildings, units, and upgrades. Understanding the timing and affect of various build trees is critical in making the appropriate tactical decisions during the game.

The BOA allows a player to build and analyze multiple Build Orders without playing a game. Lose to a player due to their build? Then plug it into the BOA and figure out a build to counter it! Gamers no longer have to play game, after game, after game to figure out a decent counter to another players Build Order, they can use the BOA to figure it out. The BOA can literally save serious gamers hundreds of hours of game play!

<<less
Download (0.002MB)
Added: 2006-07-24 License: Freeware Price:
1188 downloads
Mail Avenger 0.7.8

Mail Avenger 0.7.8


Mail Avenger is a highly-configurable, MTA-independent SMTP server. more>>
Mail Avenger is a highly-configurable, MTA-independent SMTP server daemon. Mail Avenger lets users run messages through filters like ClamAV and SpamAssassin during SMTP transactions, so the server can reject mail before assuming responsibility for its delivery.
Other unique features include TCP SYN fingerprint and network route recording, verification of sender addresses through SMTP callbacks, SPF (sender policy framework) as a general policy language, qmail-style control over both SMTP-level behavior and local delivery of extension addresses, mail-bomb protection, integration with kernel firewalls, and more.
Enhancements:
- Several minor bugs were fixed.
- The SMTPCB configuration directive was changed to give more options.
- An InsecureSASL configuration option was added by request of users.
<<less
Download (0.74MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
825 downloads
Mail::LMLM::Render 0.6300

Mail::LMLM::Render 0.6300


Mail::LMLM::Render is a Perl module for rendering backend for LMLM. more>>
Mail::LMLM::Render is a Perl module for rendering backend for LMLM.

SYNOPSIS

use Mail::LMLM::Render::HTML;

open O, ">out.html";
my $r = Mail::LMLM::Render::HTML->new(*O);

$r->start_document("My Document", "Head Title");

$r->start_section("Google", { title_url => "http://www.google.com/", });

$r->para("Google is a very nice search engine.");
$r->end_section();
$r->end_document();
close(O);

The Mail::LMLM::Render is a base class for rendering hypertext. It is used by LMLM extensively as a thin layer around the actual format.

To use it open a filehandle, and call the packages new constructor with a refernce to the filehandle. Afterwards call the start_document method (documented below), and when youre done call the end_document method. For each section call start_section and end_section explicitly.

<<less
Download (0.014MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1059 downloads
Test::XML::Order 0.04

Test::XML::Order 0.04


Test::XML::Order is a Perl module to compare the order of XML tags in perl tests. more>>
Test::XML::Order is a Perl module to compare the order of XML tags in perl tests.

SYNOPSIS

use Test::XML::Order tests => 3;
is_xml_in_order( , ); # PASS
is_xml_in_order( , ); # FAIL
isnt_xml_in_order( , ); # PASS

This module contains generic XML testing tools. See below for a list of other modules with functions relating to specific XML modules.

FUNCTIONS

is_xml_in_order ( GOT, EXPECTED [, TESTNAME ] )

This function compares GOT and EXPECTED, both of which are strings of XML. The comparison works only on the order of the tags, attributes are ignored.

Returns true or false, depending upon test success.

isnt_xml_in_order( GOT, MUST_NOT_BE [, TESTNAME ] )

This function is similar to is_xml_in_order(), except that it will fail if GOT and MUST_NOT_BE have elements in the same order.

NOTES

Please note the following about Test::XML::Order.

The package does not check that the input is well formed XML. You should use Test::XML or a similar package if you want to make sure the XML is well formed.
Only the order of tags are checked, so

is_xml_in_order(< a a="b"/ >x< b >< /b >, < a/ >< b a="c" >asdf< /b >);

passes as the inputs have the same order: < a/ >< b/ >.

The tree structure is tested so the the test below passes.

isnt_xml_in_order(< a >< b/ >< /a >, < a/ >< b/ >);

<<less
Download (0.005MB)
Added: 2007-05-07 License: Perl Artistic License Price:
901 downloads
Mail::Box::Parser::C 3.006

Mail::Box::Parser::C 3.006


Mail::Box::Parser::C is a Perl module that can parse folders for MailBox with C routines. more>>
Mail::Box::Parser::C is a Perl module that can parse folders for MailBox with C routines.

This is an optional module for MailBox, and will (once installed) automatically be used by MailBox to parse e-mail message content when the message is supplied as file-handle. In all other cases, MailBox will use Mail::Box::Parser::Perl.

Mail::Box::Parser::C - reading messages from file using C (XS)

SYNOPSIS

The Mail::Box::Parser::C implements parsing of messages in ANSI C, using Perls XS extension facility.

<<less
Download (0.015MB)
Added: 2006-07-06 License: Perl Artistic License Price:
1205 downloads
Masswire Mail 0.17 Beta

Masswire Mail 0.17 Beta


Masswire Mail provides a SQL POP3 Webmail software. more>>
Masswire Mail provides a SQL POP3 Webmail software.

Masswire Mail is a Webmail client written in Perl that can retrieve messages from multiple POP3 accounts and store them in a single SQL table.

Some features include a spell checker using the Text-Aspell module, a Bayesian filter using the Algorithm NaiveBayes module, and attachments using the Mail Sender module.

<<less
Download (0.039MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
942 downloads
Mail::SendEasy 1.2

Mail::SendEasy 1.2


Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). more>>
Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). Supports SMTP authentication and attachments.

This modules will send in a easy way e-mails, and doesnt have dependencies. Soo, you dont need to install libnet.
It supports SMTP authentication and attachments.

USAGE:

OO

use Mail::SendEasy ;

my $mail = new Mail::SendEasy(
smtp => localhost ,
user => foo ,
pass => 123 ,
) ;

my $status = $mail->send(
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;

if (!$status) { print $mail->error ;}

STRUCTURED

use Mail::SendEasy ;

my $status = Mail::SendEasy::send(
smtp => localhost ,
user => foo ,
pass => 123 ,
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;

if (!$status) { Mail::SendEasy::error ;}

<<less
Download (0.011MB)
Added: 2007-08-02 License: Perl Artistic License Price:
816 downloads
Display mail route 0.2.1

Display mail route 0.2.1


Display mail route is an excellent and easy-to-play extension which will display country icons for the stations (server) the mail has been routed. more>> Display mail route 0.2.1 is an excellent and easy-to-play extension which will display country icons for the stations (server) the mail has been routed. As always with my extensions, you need to install Mnenhy or Enigmail.

Enhancements: Compatible with TB 1.5.0.*

Requirements: Thunderbird 1.0 - 1.5.0.* ALL

<<less
Added: 2006-09-12 License: MPL Price: FREE
1 downloads
Ciphire Mail Security Reports for Thunderbird 0.4.0

Ciphire Mail Security Reports for Thunderbird 0.4.0


Ciphire Mail Security Reports for Thunderbird is an extension for Mozilla Thunderbird which reads the X-Ciphire-Report header. more>>
Ciphire Mail Security Reports for Thunderbird is an extension for Mozilla Thunderbird (Version 1.0 or greater) which reads the X-Ciphire-Report header in incoming email messages.

Ciphire Mail Security Reports for Thunderbird marks Ciphire-protected and authenticated messages with graphical elements in the message header and the message thread pane.

<<less
Download (0.074MB)
Added: 2006-02-06 License: Free for non-commercial use Price:
1357 downloads
Clevo Mail LED Linux Driver 0.6

Clevo Mail LED Linux Driver 0.6


Clevo Mail LED Linux Driver operates the mail LED on the Clevo notebook model D4J. more>>
Clevo Mail LED Linux Driver operates the mail LED on the Clevo notebook model D4J.
Enhancements:
- The DMI_BOARD_VENDOR string has been corrected for D410V autodetection.
<<less
Download (0.002MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
867 downloads
Junk Mail Buffering Agent 0.5.5

Junk Mail Buffering Agent 0.5.5


Junk Mail Buffering Agent is a tool for preventing delivery of email until the sender has confirmed their address. more>>
Junk Mail Buffering Agent is a tool for preventing delivery of email until the sender has confirmed their address.

Junk Mail Buffering Agent can be used in conjunction with a spam filter to prevent delivery of spammy-looking email unless the sender is confirmed as valid.

jmba is designed to be used in conjunction with a spam filter such as QSF and the mail processor procmail. When the spam filter says it thinks an email is spam, it can be passed to jmba.

jmba will queue it and send an email to the sender containing a key; if the sender replies, the original email is "unfrozen" from the queue and delivered.

<<less
Download (0.032MB)
Added: 2006-02-07 License: Artistic License Price:
1354 downloads
AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta

AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta


AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta is an ideal software which can help you render email messaging quick and easy! more>> <<less
Added: 2009-07-22 License: Freeware Price: FREE
1 downloads
 
Other version of AXIGEN Mail Server Office Edition Free
AXIGEN Mail Server Office Edition Free 7.1Gecad Technologies - AXIGEN Office Edition is a FREE, reliable and secure ... AXIGEN Mail Server Office
Price: $0.00
License:Freeware
Download (26.38MB)
189 downloads
Added: 2009-04-23
Price: $0.00
License:Freeware
Download (26.32MB)
179 downloads
Added: 2009-04-28
AXIGEN Mail Server Office Edition Free 6.2.2Gecad Technologies - FREE, reliable and secure mail server for Linux, BSD, Solaris. It offers (E)SMTP, POP3, IMAP4 ... AXIGEN Mail Server Office
Price: $0.00
License:Freeware
Download (16.07MB)
192 downloads
Added: 2009-04-14
Mail Notification 4.1

Mail Notification 4.1


Mail Notification is a status icon (aka tray icon) that informs you if you have new mail. more>>
Mail Notification is a status icon (aka tray icon) that informs you if you have new mail.
Mail Notification works with system trays implementing the freedesktop.org System Tray Specification, such as the GNOME Panel Notification Area, the Xfce Notification Area and the KDE System Tray.
Main features:
- multiple mailbox support
- mbox, MH, Maildir, Sylpheed, POP3, IMAP and Gmail support
- SASL authentication support
- APOP authentication support
- SSL/TLS support
- automatic detection of mailbox format
- immediate notification (the status icon is updated within seconds after a mailbox changes)
- a mail summary
- HIG 2.0 compliance.
<<less
Download (0.70MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
851 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5