e mail addresses
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2284
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
Mail::RFC822::Address 0.3
Mail::RFC822::Address is a Perl extension for validating email addresses according to RFC822. more>>
Mail::RFC822::Address is a Perl extension for validating email addresses according to RFC822.
SYNOPSIS
use Mail::RFC822::Address qw(valid validlist);
if (valid("pdw@ex-parrot.com")) {
print "Thats a valid addressn";
}
if (validlist("pdw@ex-parrot.com, other@elsewhere.com")) {
print "Thats a valid list of addressesn";
}
Mail::RFC822::Address validates email addresses against the grammar described in RFC 822 using regular expressions. How to validate a user supplied email address is a FAQ (see perlfaq9): the only sure way to see if a supplied email address is genuine is to send an email to it and see if the user recieves it. The one useful check that can be performed on an address is to check that the email address is syntactically valid. That is what this module does.
This module is functionally equivalent to RFC::RFC822::Address, but uses regular expressions rather than the Parse::RecDescent parser. This means that startup time is greatly reduced making it suitable for use in transient scripts such as CGI scripts.
valid ( address )
Returns true or false to indicate if address is an RFC822 valid address.
validlist ( addresslist )
In scalar context, returns true if the parameter is an RFC822 valid list of addresses.
In list context, returns an empty list on failure (an invalid address was found); otherwise a list whose first element is the number of addresses found and whose remaining elements are the addresses. This is needed to disambiguate failure (invalid) from success with no addresses found, because an empty string is a valid list
<<lessSYNOPSIS
use Mail::RFC822::Address qw(valid validlist);
if (valid("pdw@ex-parrot.com")) {
print "Thats a valid addressn";
}
if (validlist("pdw@ex-parrot.com, other@elsewhere.com")) {
print "Thats a valid list of addressesn";
}
Mail::RFC822::Address validates email addresses against the grammar described in RFC 822 using regular expressions. How to validate a user supplied email address is a FAQ (see perlfaq9): the only sure way to see if a supplied email address is genuine is to send an email to it and see if the user recieves it. The one useful check that can be performed on an address is to check that the email address is syntactically valid. That is what this module does.
This module is functionally equivalent to RFC::RFC822::Address, but uses regular expressions rather than the Parse::RecDescent parser. This means that startup time is greatly reduced making it suitable for use in transient scripts such as CGI scripts.
valid ( address )
Returns true or false to indicate if address is an RFC822 valid address.
validlist ( addresslist )
In scalar context, returns true if the parameter is an RFC822 valid list of addresses.
In list context, returns an empty list on failure (an invalid address was found); otherwise a list whose first element is the number of addresses found and whose remaining elements are the addresses. This is needed to disambiguate failure (invalid) from success with no addresses found, because an empty string is a valid list
Download (0.005MB)
Added: 2007-02-14 License: Perl Artistic License Price:
985 downloads
Mail::Addressbook::Convert 1.1
Mail::Addressbook::Convert is a Perl module that can convert to and from many e-mail addressbooks. more>>
Mail::Addressbook::Convert is a Perl module that can convert to and from many e-mail addressbooks.
SYNOPSIS
These modules allow to to convert between the following e-mail addressbook formats
From To csv csv ( Note: MS Outlook. Outlook Express and many other mailers will export and import into this format) tsv tsv (tab-separated ascii, Outlook and OE also do these) pine pine ccMail Eudora Eudora Pegasus Pegasus Juno Lidf Ldif (Netscape 4 exports in this format ) Mailrc Spry
This distribution will convert email addressbooks between many common formats. Some examples are Pine, Eudora, Pegasus, csv.
The documentation here is general. For details on conversion, each module has pod documentation specific to its conversion
As an example
To use to convert between Pine and Eudora as an example, you would do the following
use Mail::Addressbook::Convert::Pine;
use Mail::Addressbook::Convert::Eudora;
my $Pine = new Mail::Addressbook::Convert::Pine();
my $Eudora = new Mail::Addressbook::Convert::Eudora();
my $PineInFile ="pineSample.txt"; # name of the file containing the Pine data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook
All modules follow this template except Pegasus. Pegasus stores its address books in multiple files. See the documentation in Pegasus.pm
<<lessSYNOPSIS
These modules allow to to convert between the following e-mail addressbook formats
From To csv csv ( Note: MS Outlook. Outlook Express and many other mailers will export and import into this format) tsv tsv (tab-separated ascii, Outlook and OE also do these) pine pine ccMail Eudora Eudora Pegasus Pegasus Juno Lidf Ldif (Netscape 4 exports in this format ) Mailrc Spry
This distribution will convert email addressbooks between many common formats. Some examples are Pine, Eudora, Pegasus, csv.
The documentation here is general. For details on conversion, each module has pod documentation specific to its conversion
As an example
To use to convert between Pine and Eudora as an example, you would do the following
use Mail::Addressbook::Convert::Pine;
use Mail::Addressbook::Convert::Eudora;
my $Pine = new Mail::Addressbook::Convert::Pine();
my $Eudora = new Mail::Addressbook::Convert::Eudora();
my $PineInFile ="pineSample.txt"; # name of the file containing the Pine data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook
All modules follow this template except Pegasus. Pegasus stores its address books in multiple files. See the documentation in Pegasus.pm
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Mail::Addressbook::Convert::Spry 1.1
Mail::Addressbook::Convert::Spry is a Perl module from Spry Mail Addressbook. more>>
Mail::Addressbook::Convert::Spry is a Perl module from Spry Mail Addressbook.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Spry;
my $SPRY = new Mail::Addressbook::Convert::Spry();
my $SpryInFile ="spry.als"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Spry to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $SPRY->scan($SpryInFile);
# This will also work
#my @SpryInArray = @arrayContainingTheSpryData;
#my $raIntermediate = $SPRY->scan(@SpryInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Spry;
my $SPRY = new Mail::Addressbook::Convert::Spry();
my $SpryInFile ="spry.als"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Spry to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $SPRY->scan($SpryInFile);
# This will also work
#my @SpryInArray = @arrayContainingTheSpryData;
#my $raIntermediate = $SPRY->scan(@SpryInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-08 License: Perl Artistic License Price:
1172 downloads
Sendmail Sender Address Validator 1.4.0
smf-sav is a lightweight, fast and reliable Sendmail milter that implements a real-time Sender e-Mail Address Verification. more>>
smf-sav is a lightweight, fast and reliable Sendmail milter that implements a real-time Sender e-Mail Address Verification technology. This technology can stop some kind of SPAM with a spoofed senders e-Mail address.
Also it implements a real-time Recipient e-Mail Address Verification technology. It can be useful if your machine is a backup MX for the recipients domain or if your machine forwards all e-Mail messages for your domain to another (presumably internal) e-Mail server. Sendmail Sender Address Validator is written in C.
Main features:
- friendly hosts/networks whitelist;
- SMTP AUTH support;
- strictly RFC-2821 compliant MX callback engine;
- tolerance against non RFC-2821 compliant e-Mail servers;
- blocking of e-Mail messages with a spoofed senders e-Mail address;
- recipients e-Mail address verification with an authoritative e-Mail store in gateway mode;
- slow down of recipients e-Mail address brute force attacks in gateway mode.
Enhancements:
- Whitelisting by a PTR (reverse DNS) record was implemented.
- Whitelisting by an envelope recipient email address was implemented.
- The option to ignore tempfailed results of SAV was implemented.
- The option to refuse email messages from systems that dont accept the null reverse-path was implemented.
- Tempfail and fail results TTL settings were segregated.
- Progressive slowdown of brute force attacks on a recipients email address was implemented.
<<lessAlso it implements a real-time Recipient e-Mail Address Verification technology. It can be useful if your machine is a backup MX for the recipients domain or if your machine forwards all e-Mail messages for your domain to another (presumably internal) e-Mail server. Sendmail Sender Address Validator is written in C.
Main features:
- friendly hosts/networks whitelist;
- SMTP AUTH support;
- strictly RFC-2821 compliant MX callback engine;
- tolerance against non RFC-2821 compliant e-Mail servers;
- blocking of e-Mail messages with a spoofed senders e-Mail address;
- recipients e-Mail address verification with an authoritative e-Mail store in gateway mode;
- slow down of recipients e-Mail address brute force attacks in gateway mode.
Enhancements:
- Whitelisting by a PTR (reverse DNS) record was implemented.
- Whitelisting by an envelope recipient email address was implemented.
- The option to ignore tempfailed results of SAV was implemented.
- The option to refuse email messages from systems that dont accept the null reverse-path was implemented.
- Tempfail and fail results TTL settings were segregated.
- Progressive slowdown of brute force attacks on a recipients email address was implemented.
Download (0.015MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1099 downloads
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.
<<lessOther 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.
Download (0.74MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
825 downloads
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.
<<lessEnhancements:
- The DMI_BOARD_VENDOR string has been corrected for D410V autodetection.
Download (0.002MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
867 downloads
Mail::Addressbook::Convert::Juno 1.1
Mail::Addressbook::Convert::Juno can convert from Juno addressbooks. more>>
Mail::Addressbook::Convert::Juno can convert from Juno addressbooks.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Juno;
my $Juno = new Mail::Addressbook::Convert::Juno();
my $JunoInFile ="junoSample.nv"; # name of the file containing the Juno data # it is found in the Spry folder
# Convert Juno to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Juno->scan($JunoInFile.nv);
# This will also work
#my @JunoInArray = @arrayContainingTheJunoData;
#my $raIntermediate = $Juno->scan(@JunoInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Juno;
my $Juno = new Mail::Addressbook::Convert::Juno();
my $JunoInFile ="junoSample.nv"; # name of the file containing the Juno data # it is found in the Spry folder
# Convert Juno to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Juno->scan($JunoInFile.nv);
# This will also work
#my @JunoInArray = @arrayContainingTheJunoData;
#my $raIntermediate = $Juno->scan(@JunoInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
Mail::Addressbook::Convert::Utilities 1.1
Mail::Addressbook::Convert::Utilities is a Perl module for addressbook conversion. more>>
Mail::Addressbook::Convert::Utilities is a Perl module for addressbook conversion.
SYNOPSIS
This module is not designed to be used by the user.
It provides utility methods with for Mail::Addressbook::Convert
<<lessSYNOPSIS
This module is not designed to be used by the user.
It provides utility methods with for Mail::Addressbook::Convert
Download (0.030MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1163 downloads
Mail::Addressbook::Convert::Mailrc 1.1
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook. more>>
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Mailrc;
my $Mailrc = new Mail::Addressbook::Convert::Mailrc();
my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Mailrc to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Mailrc->scan($MailrcInFile);
# This will also work
#my @MailrcInArray = @arrayContainingTheMailrcData;
#my $raIntermediate = $Mailrc->scan(@MailrcInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Mailrc;
my $Mailrc = new Mail::Addressbook::Convert::Mailrc();
my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Mailrc to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Mailrc->scan($MailrcInFile);
# This will also work
#my @MailrcInArray = @arrayContainingTheMailrcData;
#my $raIntermediate = $Mailrc->scan(@MailrcInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 downloads
Yahoo Mail Sucker pr79
Yahoo Mail Sucker is a Perl script that allows you to fetch Yahoo Mail messages. more>>
As you probably know, Yahoo Mail does not provide free POP access to its users any more. You can still use your YM account for free, but you have to use a Yahoo Mail web site to access your account.
This is not very convenient as you always have to be online, you cannot use your favourite e-mail client to read your messages, and so on. You can easily immagine the disadvantages of having to manage all your corespondence via web.
When Yahoo disabled its free POP access, the first thing that came to my mind was to change my e-mail account. But then I realized, there are far too many people used to my current Yahoo Mail address, that I am used to my YM address very much too and I thought - if Yahoo closes a free service, the other services will follow sooner or later. So changing an e-mail service/account wasnt really solution.
That is when I have decided to write YoSucker as a simple portable perl application, that would simulate a user actions to retrieve my mail to my local inbox. Yahoo Mail Sucker simply connects to the Yahoo Mail web site, parses the HTML code and fetches new messages.
With time I have added lots of other features and functionality (like support for multiple accounts, support for procmail, support for local Yahoo Mail sites, for proxy connection and much more) but the basic idea still stay the same...
Main features:
- secure SSL login
- support for multiple accounts
- encrypted passwords for enhanced security
- transaction safe writes
- support for various folders (including BULK mail)
- support for multiuser environment
- support for multiple mailboxes in one config file
- support for procmail (output to a pipe)
- support for localized Yahoo Mail sites
- support for proxy
- support for basic proxy authorization
- support of command line parameters
- powerful digest feature for listing mailbox content
- handles virtually unlimited number of messages
- LeaveOnServer, EmptyTrash and OnlyNew features
- restore message unread flag feature
- powerful CLEAN option
- quota storage warning system
- session Respawn feature
Enhancements:
- This things been around too long be be a prototype any longer.
- Filtered the annoying "Yahoo! Domain Keys" message in From header
<<lessThis is not very convenient as you always have to be online, you cannot use your favourite e-mail client to read your messages, and so on. You can easily immagine the disadvantages of having to manage all your corespondence via web.
When Yahoo disabled its free POP access, the first thing that came to my mind was to change my e-mail account. But then I realized, there are far too many people used to my current Yahoo Mail address, that I am used to my YM address very much too and I thought - if Yahoo closes a free service, the other services will follow sooner or later. So changing an e-mail service/account wasnt really solution.
That is when I have decided to write YoSucker as a simple portable perl application, that would simulate a user actions to retrieve my mail to my local inbox. Yahoo Mail Sucker simply connects to the Yahoo Mail web site, parses the HTML code and fetches new messages.
With time I have added lots of other features and functionality (like support for multiple accounts, support for procmail, support for local Yahoo Mail sites, for proxy connection and much more) but the basic idea still stay the same...
Main features:
- secure SSL login
- support for multiple accounts
- encrypted passwords for enhanced security
- transaction safe writes
- support for various folders (including BULK mail)
- support for multiuser environment
- support for multiple mailboxes in one config file
- support for procmail (output to a pipe)
- support for localized Yahoo Mail sites
- support for proxy
- support for basic proxy authorization
- support of command line parameters
- powerful digest feature for listing mailbox content
- handles virtually unlimited number of messages
- LeaveOnServer, EmptyTrash and OnlyNew features
- restore message unread flag feature
- powerful CLEAN option
- quota storage warning system
- session Respawn feature
Enhancements:
- This things been around too long be be a prototype any longer.
- Filtered the annoying "Yahoo! Domain Keys" message in From header
Download (0.043MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
864 downloads
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 ;}
<<lessThis 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 ;}
Download (0.011MB)
Added: 2007-08-02 License: Perl Artistic License Price:
816 downloads
SubEtha Mail 1.0.2
SubEtha is a sophisticated mailing list manager, similar in many respects to the popular Mailman package. more>>
SubEtha is a sophisticated mailing list manager, similar in many respects to the popular Mailman package. SubEtha is a three-tiered J2EE application using EJB3 and JMS. It is stable and self-hosting.
Main features:
- Very easy installation on Windows and Unix platforms
- A user-friendly web interface for all configuration management
- Virtual domains (ie list@foo.com and list@bar.com are separate lists)
- Users can have multiple email addresses and self-moderate messages from unknown addresses.
- Intelligent attachment handling; attachments can be removed from delivered mail and replaced with a download link to the archives.
- Pluggable, configurable message processing filters which can arbitrarily modify the inbound and outbound message streams. Example filters include attachment stripping, header munging, spam detection, and insertion of advertising.
- Per-list role-based permissions.
- One-step creation of basic list types (ie "Announce-Only List" or "Technical Support List"). The set of available types is pluggable.
- Searchable, threaded archives
- Users can reply to messages from the archives. They can click on a button and have the message resent to them normally.
- Intelligent VERP bounce processing
- Clusterable for nearly unlimited scalability
- Easy integration with any mail transport agent (MTA)
- EJB and SOAP interfaces for automation
- International characters in emails are properly passed through the system and rendered in the web interface
- RESTful, bookmarkable URLs
- A modular SMTP library that can be used outside SubEtha
Enhancements:
- This release works around a a backwards compatibility issue issue where SubEtha would not run on Java 5 because the released code was compiled using Java 6.
<<lessMain features:
- Very easy installation on Windows and Unix platforms
- A user-friendly web interface for all configuration management
- Virtual domains (ie list@foo.com and list@bar.com are separate lists)
- Users can have multiple email addresses and self-moderate messages from unknown addresses.
- Intelligent attachment handling; attachments can be removed from delivered mail and replaced with a download link to the archives.
- Pluggable, configurable message processing filters which can arbitrarily modify the inbound and outbound message streams. Example filters include attachment stripping, header munging, spam detection, and insertion of advertising.
- Per-list role-based permissions.
- One-step creation of basic list types (ie "Announce-Only List" or "Technical Support List"). The set of available types is pluggable.
- Searchable, threaded archives
- Users can reply to messages from the archives. They can click on a button and have the message resent to them normally.
- Intelligent VERP bounce processing
- Clusterable for nearly unlimited scalability
- Easy integration with any mail transport agent (MTA)
- EJB and SOAP interfaces for automation
- International characters in emails are properly passed through the system and rendered in the web interface
- RESTful, bookmarkable URLs
- A modular SMTP library that can be used outside SubEtha
Enhancements:
- This release works around a a backwards compatibility issue issue where SubEtha would not run on Java 5 because the released code was compiled using Java 6.
Download (51.5MB)
Added: 2007-04-30 License: LGPL (GNU Lesser General Public License) Price:
909 downloads
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.
<<lessMasswire 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.
Download (0.039MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
942 downloads
Coherent Mail Gateway 0.13.0
Coherent Mail Gateway is intended to be a very easy to set up MTA using SMTP and POP3. more>>
Coherent Mail Gateway is intended to be a very easy to set up MTA using SMTP and POP3. Greylisting is used on the SMTP daemon to reduce spam.
In addition, quite a lot of checks on the validity of information from the SMTP client (such as claimed server name and sender) are carried out, and anyone caught telling lies is disconnected.
Grey-, black-, and white-listing are supported, as well as (optionally) ClamAV and Spamhaus. The target market is users with static IP addresses. Others can use the system, but its value will be limited to outgoing email.
<<lessIn addition, quite a lot of checks on the validity of information from the SMTP client (such as claimed server name and sender) are carried out, and anyone caught telling lies is disconnected.
Grey-, black-, and white-listing are supported, as well as (optionally) ClamAV and Spamhaus. The target market is users with static IP addresses. Others can use the system, but its value will be limited to outgoing email.
Download (0.034MB)
Added: 2006-05-25 License: Freeware Price:
1250 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 e mail addresses 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