bulk email program
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1552
RH Email Server 2.0a
RH Email Server is an email server in a box. more>>
The Email Server is designed to provide services offered by its commercial email products, such as IMAP/POP services, Web-Based Email Interface and Administration, Mail Filtering, Spam Blocking and Directory-Based Authentication and Addressbooks.
RH Email Server is fine for businesses and organizations of all sizes. Multiple commercial and educational installations are already using this project. The largest current user load that has been reported is 7,000 + users.
Interoperability between RHSD projects such as the RHSD Email Server and the RHSD Domain Controller will allow for use of Single-Sign On. RHSD also utilizes IETF Standardized projects and therefore will be compatible with any Directory system compatible with LDAP v.3.
Main features:
- Web-Based Email Client for Users
- LDAP Directory / Authentication
- Mail Filtering
- Addressbooks
- Web-Based Administration Tools
- Role-Based Tool Delegation
- Spam Blocking
<<lessRH Email Server is fine for businesses and organizations of all sizes. Multiple commercial and educational installations are already using this project. The largest current user load that has been reported is 7,000 + users.
Interoperability between RHSD projects such as the RHSD Email Server and the RHSD Domain Controller will allow for use of Single-Sign On. RHSD also utilizes IETF Standardized projects and therefore will be compatible with any Directory system compatible with LDAP v.3.
Main features:
- Web-Based Email Client for Users
- LDAP Directory / Authentication
- Mail Filtering
- Addressbooks
- Web-Based Administration Tools
- Role-Based Tool Delegation
- Spam Blocking
Download (19.44MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1642 downloads
Business Email 1.0
This month we are featuring our first of a two part series on, "Ten Tips for Creating Blogs." This month as well as next month you will receive a tota... more>> <<less
Download (421KB)
Added: 2009-04-17 License: Freeware Price: Free
189 downloads
EMailRobot 0.3
EMailRobot is a simple object-oriented framework for developing email auto-responders. more>>
EMailRobot is a simple object-oriented framework for developing email auto-responders.
It performs actions based on parameters extracted from received email bodies and generates answer emails.
Enhancements:
- Minor fixes were made and documentation and installation notes were added.
<<lessIt performs actions based on parameters extracted from received email bodies and generates answer emails.
Enhancements:
- Minor fixes were made and documentation and installation notes were added.
Download (0.011MB)
Added: 2005-08-24 License: BSD License Price:
1522 downloads
StrongBad Emails 2.0
StrongBad Emails is an extension which adds the words Previous and Next to the StrongBad Emails. more>>
StrongBad Emails is an extension which adds the words "Previous" and "Next" to the StrongBad Emails.
Tired of having to go back to the main email page to view the next Strong Bad email cartoon? Well wake up and smell the coffee with this extension.
<<lessTired of having to go back to the main email page to view the next Strong Bad email cartoon? Well wake up and smell the coffee with this extension.
Download (0.003MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
928 downloads
Email 2.5.1
Email sends email to remote SMTP servers via the command line, which makes it useful in cron jobs. more>>
Email sends email to remote SMTP servers via the command line, which makes it useful in cron jobs. It will send to any RFC standard remote ESMTP server, and will allow you to encrypt, sign, and design your message on the fly.
It has the capability to use signature files with dynamic options, address book functionality, and users can also attach pictures, binary files, documents, or whatever they want. It is completely compatible with GNUPG for encryption and signing, and is easy to configure and use.
Enhancements:
- A bug where an assert caused an abort when encrypting any message with GnuPG under Cygwin has been fixed.
- Compile time problems where the compiler would complain about SIG* being undeclared have been fixed.
- There is some minor source code cleanup.
<<lessIt has the capability to use signature files with dynamic options, address book functionality, and users can also attach pictures, binary files, documents, or whatever they want. It is completely compatible with GNUPG for encryption and signing, and is easy to configure and use.
Enhancements:
- A bug where an assert caused an abort when encrypting any message with GnuPG under Cygwin has been fixed.
- Compile time problems where the compiler would complain about SIG* being undeclared have been fixed.
- There is some minor source code cleanup.
Download (0.17MB)
Added: 2006-11-20 License: GPL (GNU General Public License) Price:
1084 downloads
Other version of Email
License:GPL (GNU General Public License)
Email::Store 0.24
Email::Store is a framework for database-backed email storage. more>>
Email::Store is a framework for database-backed email storage.
SYNOPSIS
use Email::Store dbi:mysql:mailstore;
Email::Store->setup; # Do this once
Email::Store::Mail->store( $rfc822 );
Email::Store::Mail->retrieve( $msgid );
...
Email::Store is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.
Email::Store itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about Class::DBI, youre going to need to in order to get much out of this.
Despite its minimalist nature, Email::Store is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, Email::Store is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.
For instance, the core Email::Store::Entity plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) Email::Store::Thread interfaces Email::Store to Mail::Thread allowing you to navigate mails by their position in a mail thread; the planned non-core Email::Store::Plucene module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.
<<lessSYNOPSIS
use Email::Store dbi:mysql:mailstore;
Email::Store->setup; # Do this once
Email::Store::Mail->store( $rfc822 );
Email::Store::Mail->retrieve( $msgid );
...
Email::Store is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.
Email::Store itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about Class::DBI, youre going to need to in order to get much out of this.
Despite its minimalist nature, Email::Store is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, Email::Store is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.
For instance, the core Email::Store::Entity plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) Email::Store::Thread interfaces Email::Store to Mail::Thread allowing you to navigate mails by their position in a mail thread; the planned non-core Email::Store::Plucene module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.
Download (0.027MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1215 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
Bulk Meter Flow and Operations 1.2.5
Bulk Meter Flow and Operations project provides a Web-based application to manage water meter readings. more>>
Bulk Meter Flow and Operations provides a Web-based application to manage water meter readings.
<<less Download (1.4MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
823 downloads
Blue Frog 1.9.1.1151
Blue Frog allows you to actively demand spammers to stop sending you spam. more>>
Blue Frog allows you to actively demand spammers to stop sending you spam. Blue Frog automatically and securely posts complaints and opt-out requests at spam sites asking spammers to remove Blue Community members from their mailing lists.
The Do Not Intrude Registry creates an incentive for spammers to stop sending unsolicited e-mail to members of the Blue Community.
Consumers and businesses may register their e-mail addresses or their entire e-mail domains, and receive less spam simply because spammers would remove them from their mailing lists.
Consumers and businesses alike can join the service, free of charge, by becoming active members of the Blue community. As an active member of the community, you download the Blue Frog client and actively complain and request to opt-out of spam. The Do Not Intrude Registry empowers you to exercise your right to opt out of spam safely and automatically.
Businesses may also subscribe with the Do Not Intrude Registry without being active members of the community. This paid subscription service allows you to register your e-mail domain in the Registry and receive less spam without installing software in your network.
The Blue Frog is a simple and straightforward solution to spam:
1. Users join the Blue Community
Blue Community members add their e-mail addresses or e-mail domains to the Registry. Active members install Blue Frog on their machines.
2. Spammers use mailing lists
Spammers are required to stop sending spam to all Blue Community members. Non-complying spammers maintain mailing lists that may contain addresses of Blue Community members.
3. Members receive spam
When a spammer sends bulk e-mail using his lists, some Blue Community members may receive this spam message to their mailboxes.
4. Members report their spam
Our experts identify the merchants using spam to advertise their sites and prepare scripts instructing Blue Frog how to post complaints. Additionally, Reports are sent to government agencies and ISPs asking them to take action against these sites.
5. Members complain about spam
Blue Frog clients, installed on active Community Members machines, automatically post complaints at spam sites by filling forms they contain. Posting complaints is safe and does not expose your identity.
6. Merchants process complaints
A single opt-out complaint is posted per each spam message received. Merchants process complaints posted by active community Members rather than process potential customers purchase orders.
7. Spammers comply with the Registry
Spammers and merchants choose to stop sending spam to the all Blue community members. It allows them to avoid receiving complaints and to stop sending spam to people who will never buy their products.
8. Members stop receiving spam
Blue Community members will no longer receive spam simply because spammers will stop sending it to them!
Enhancements:
- Linux compilation fixes
- Documentation changes
<<lessThe Do Not Intrude Registry creates an incentive for spammers to stop sending unsolicited e-mail to members of the Blue Community.
Consumers and businesses may register their e-mail addresses or their entire e-mail domains, and receive less spam simply because spammers would remove them from their mailing lists.
Consumers and businesses alike can join the service, free of charge, by becoming active members of the Blue community. As an active member of the community, you download the Blue Frog client and actively complain and request to opt-out of spam. The Do Not Intrude Registry empowers you to exercise your right to opt out of spam safely and automatically.
Businesses may also subscribe with the Do Not Intrude Registry without being active members of the community. This paid subscription service allows you to register your e-mail domain in the Registry and receive less spam without installing software in your network.
The Blue Frog is a simple and straightforward solution to spam:
1. Users join the Blue Community
Blue Community members add their e-mail addresses or e-mail domains to the Registry. Active members install Blue Frog on their machines.
2. Spammers use mailing lists
Spammers are required to stop sending spam to all Blue Community members. Non-complying spammers maintain mailing lists that may contain addresses of Blue Community members.
3. Members receive spam
When a spammer sends bulk e-mail using his lists, some Blue Community members may receive this spam message to their mailboxes.
4. Members report their spam
Our experts identify the merchants using spam to advertise their sites and prepare scripts instructing Blue Frog how to post complaints. Additionally, Reports are sent to government agencies and ISPs asking them to take action against these sites.
5. Members complain about spam
Blue Frog clients, installed on active Community Members machines, automatically post complaints at spam sites by filling forms they contain. Posting complaints is safe and does not expose your identity.
6. Merchants process complaints
A single opt-out complaint is posted per each spam message received. Merchants process complaints posted by active community Members rather than process potential customers purchase orders.
7. Spammers comply with the Registry
Spammers and merchants choose to stop sending spam to the all Blue community members. It allows them to avoid receiving complaints and to stop sending spam to people who will never buy their products.
8. Members stop receiving spam
Blue Community members will no longer receive spam simply because spammers will stop sending it to them!
Enhancements:
- Linux compilation fixes
- Documentation changes
Download (0.69MB)
Added: 2006-05-10 License: Freeware Price:
1262 downloads
Bulk Image Resizing Thing 1.2.1
BIRT is a simple application that allows a large number of images to be resized in one go. more>>
BIRT, the Batch Image Resizing Thing, is a simple application that allows a large number of images to be resized in one go. Obviously this is possible by scripting ImageMagick but its usually somewhat easier with a GUI.
Bulk Image Resizing Thing was created in order to learn how to develop using the Qt library, and to facilitaty the maintenance of an online photo album where each hi-res photo needs a low-res copy and a thumbnail.
Usage
BIRT has a hypertext based online help system (visible in some of the screenshots below), to access this simply start the application and click on the Help button at the bottom of the BIRT window.
If you cant wait to read the help then here is a basic guide to using BIRT: simply select the image files to be resized, enter the new size, select the output directory and press Go. A more detailed instruction set, include explanations of the ratio options and output suffix/prefix fields can be found in the How To Use BIRT section of the help.
Enhancements:
- A problem with the Help dialog that would prevent it being re-opened if it was closed using the systems close window widget rather than the "Quit" button was fixed.
<<lessBulk Image Resizing Thing was created in order to learn how to develop using the Qt library, and to facilitaty the maintenance of an online photo album where each hi-res photo needs a low-res copy and a thumbnail.
Usage
BIRT has a hypertext based online help system (visible in some of the screenshots below), to access this simply start the application and click on the Help button at the bottom of the BIRT window.
If you cant wait to read the help then here is a basic guide to using BIRT: simply select the image files to be resized, enter the new size, select the output directory and press Go. A more detailed instruction set, include explanations of the ratio options and output suffix/prefix fields can be found in the How To Use BIRT section of the help.
Enhancements:
- A problem with the Help dialog that would prevent it being re-opened if it was closed using the systems close window widget rather than the "Quit" button was fixed.
Download (0.052MB)
Added: 2005-12-06 License: GPL (GNU General Public License) Price:
1422 downloads
Email Security through Procmail 1.151
Email Security through Procmail (the Procmail Sanitizer) provides methods to sanitize email, removing obvious exploit attempts. more>>
Email Security through Procmail (the Procmail Sanitizer) provides methods to sanitize email, removing obvious exploit attempts and disabling the channels through which exploits are delivered.
Email Security through Procmail also provides facilities for detecting and blocking Trojan Horse exploits and worms.
Enhancements:
- This release added default poisoning of the application/x-msdownload MIME type in response to a new worm.
- Full MIME-type poisoning support will be available shortly.
- This release was accelerated for security reasons.
<<lessEmail Security through Procmail also provides facilities for detecting and blocking Trojan Horse exploits and worms.
Enhancements:
- This release added default poisoning of the application/x-msdownload MIME type in response to a new worm.
- Full MIME-type poisoning support will be available shortly.
- This release was accelerated for security reasons.
Download (0.095MB)
Added: 2006-01-21 License: GPL (GNU General Public License) Price:
1373 downloads
Email::FolderType::MH 0.812
Email::FolderType::MH is a Perl class to help Email::FolderType recognise MH mail directories. more>>
Email::FolderType::MH is a Perl class to help Email::FolderType recognise MH mail directories.
SUBROUTINES
folder_type < path >
Automatically detects what type of mail folder the path refers to and
returns the name of that type.
It primarily bases the type on the suffix of the path given.
Suffix | Type
--------+---------
/ | Maildir
/. | MH
// | Ezmlm
In case of no known suffix it checks for a known file structure. If that
doesnt work out it defaults to "Mbox" although, if the "Mbox" matcher
has been overridden or the default changed (see DEFAULT MATCHER below)
then it will return undef.
matchers
Returns a list of all the matchers available to the system.
DEFAULT MATCHER
Currently the default matcher is "Mbox" and therefore it is always
checked last and always returns 1.
If you really want to change this then you should override
"Email::FolderType::Mbox::match" and/or change the variable
$Email::FolderType::DEFAULT to be something other than Mbox.
use Email::FolderType;
use Email::FolderType::Mbox;
$Email::FolderType::DEFAULT = NewDefault;
package Email::FolderType::Mbox;
sub match { return (defined $_[0] && -f $_[0]) }
package Email::FolderType::NewDefault;
sub match { return (defined $_[0] && $_[0] =~ m!some crazy pattern!) }
1;
<<lessSUBROUTINES
folder_type < path >
Automatically detects what type of mail folder the path refers to and
returns the name of that type.
It primarily bases the type on the suffix of the path given.
Suffix | Type
--------+---------
/ | Maildir
/. | MH
// | Ezmlm
In case of no known suffix it checks for a known file structure. If that
doesnt work out it defaults to "Mbox" although, if the "Mbox" matcher
has been overridden or the default changed (see DEFAULT MATCHER below)
then it will return undef.
matchers
Returns a list of all the matchers available to the system.
DEFAULT MATCHER
Currently the default matcher is "Mbox" and therefore it is always
checked last and always returns 1.
If you really want to change this then you should override
"Email::FolderType::Mbox::match" and/or change the variable
$Email::FolderType::DEFAULT to be something other than Mbox.
use Email::FolderType;
use Email::FolderType::Mbox;
$Email::FolderType::DEFAULT = NewDefault;
package Email::FolderType::Mbox;
sub match { return (defined $_[0] && -f $_[0]) }
package Email::FolderType::NewDefault;
sub match { return (defined $_[0] && $_[0] =~ m!some crazy pattern!) }
1;
Download (0.012MB)
Added: 2006-11-01 License: Perl Artistic License Price:
1088 downloads
Email Files Thunderbird 1.0
Email Files Thunderbird is a very simple service menu script, to email one or more files with Thunderbird. more>>
Email Files Thunderbird is a very simple service menu script, to email one or more files with Thunderbird to any address or to a given address, which i assume is used as a "backup" space.
The subject is automatically updated according to the attached files and, in case you choose to send to your specific email address, details about sending date, user and host are automatically added in the body.
There are other similar service menus around, but i wanted a script that allows to attach more than one file at one time and that automatically updates the subject line.
USAGE: pretty straightforward.. Just make the two .sh files executable (if necessary) and place them in a directory of your path, for example /home/YOUR_USERNAME/bin. Place the service menu file EmailWithThunderbird.desktop in /home/YOUR_USERNAME/.kde/share/apps/konqueror/servicemenus
IMPORTANT: In file EmailWithThunderbirdToMyAddress.sh, you need to specify your email address in to=.... (that is, where i wrote: YOUR_EMAIL_ADDRESS@DOMAIN.NAME)
This project was tested on OpenSuSE 10.2, KDE 3.5.6
<<lessThe subject is automatically updated according to the attached files and, in case you choose to send to your specific email address, details about sending date, user and host are automatically added in the body.
There are other similar service menus around, but i wanted a script that allows to attach more than one file at one time and that automatically updates the subject line.
USAGE: pretty straightforward.. Just make the two .sh files executable (if necessary) and place them in a directory of your path, for example /home/YOUR_USERNAME/bin. Place the service menu file EmailWithThunderbird.desktop in /home/YOUR_USERNAME/.kde/share/apps/konqueror/servicemenus
IMPORTANT: In file EmailWithThunderbirdToMyAddress.sh, you need to specify your email address in to=.... (that is, where i wrote: YOUR_EMAIL_ADDRESS@DOMAIN.NAME)
This project was tested on OpenSuSE 10.2, KDE 3.5.6
Download (0.002MB)
Added: 2007-05-14 License: GPL (GNU General Public License) Price:
547 downloads
Email::Find 0.10
Email::Find allows you to find RFC 822 email addresses in plain text. more>>
Email::Find allows you to find RFC 822 email addresses in plain text.
Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but they will be valid RFC 822 syntax.
Email::Find will perform some heuristics to avoid some of the more obvious red herrings and false addresses, but theres only so much which can be done without a human.
Finds email addresses in the text and executes callback registered.
The callback is given two arguments. The first is a Mail::Address object representing the address found. The second is the actual original email as found in the text. Whatever the callback returns will replace the original text.
<<lessEmail::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but they will be valid RFC 822 syntax.
Email::Find will perform some heuristics to avoid some of the more obvious red herrings and false addresses, but theres only so much which can be done without a human.
Finds email addresses in the text and executes callback registered.
The callback is given two arguments. The first is a Mail::Address object representing the address found. The second is the actual original email as found in the text. Whatever the callback returns will replace the original text.
Download (0.039MB)
Added: 2007-03-31 License: Perl Artistic License Price:
943 downloads
Attach to Email Service Menu 0.7.5
Attach to Email Service Menu is a service menu for Konqueror. more>>
Attach to Email Service Menu is a service menu for Konqueror that works in conjunction with a python script to allow the user to select multiple files and add them as attachments to an email using whatever mail client is configured. If a directory is selected, then its contents will be attached to the email recursively.
Installation:
0) tar -jxf attach-to-email-servicemenu.tar.bz2
1) cd attach-to-email-servicemenu
2) ./install.sh --remove-old
#Get rid of previous installations.
3) ./install.sh [--global-install|--local-install]
#Depending on whether you want system-wide or not.
The Readme file included explains how to set this up for different email clients.
Enhancements:
- New Italian translation by Giurerro.
<<lessInstallation:
0) tar -jxf attach-to-email-servicemenu.tar.bz2
1) cd attach-to-email-servicemenu
2) ./install.sh --remove-old
#Get rid of previous installations.
3) ./install.sh [--global-install|--local-install]
#Depending on whether you want system-wide or not.
The Readme file included explains how to set this up for different email clients.
Enhancements:
- New Italian translation by Giurerro.
Download (0.007MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 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 bulk email program 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