e mails
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1043
IMAP utils 0.3
IMAP utils software contains a set of simple utilities for managing IMAP emails. more>>
IMAP utils software contains a set of simple utilities for managing IMAP emails.
imap-purge
Purges old read and unread mails from folders.
imap-folders
Creates folders on IMAP.
imap-stats
Shows summary about unread and unseen mails.
Enhancements:
- Several new scripts for reading and storing messages were added.
<<lessimap-purge
Purges old read and unread mails from folders.
imap-folders
Creates folders on IMAP.
imap-stats
Shows summary about unread and unseen mails.
Enhancements:
- Several new scripts for reading and storing messages were added.
Download (0.010MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
817 downloads
libnewmail 0.3
libnewmail is a generic mail checking library for Unix/Linux and other operating systems. more>>
libnewmail is a generic mail checking library for Unix/Linux and other operating systems. It supports a simple API, an extensible plugin architecture and asynchronous queries among other features.
libnewmail library is intented to be a replacement for all that crappy and incomplete code of all those mail checking utilities available. Applications linking to libnewmail may enumerate configured mailboxes, query mail box information and status and request a mail spool auto-detection for users without any libnewmail specific configuration. The library offers a clean API to implement your own mail checking plugins.
Programs using libnewmail may query for both the boolean availability and the number of available mails. (The former is usually much faster than the latter) The library is able to distuingish between new (unread) and old (read, current) mails. It includes four CLI tools easy, nmail, nmail-async and nm-spoolhackusing the libnewmail API for mail checking. They are intended to be an example how to use the API with either the synchronous or the asynchronous interface.
The utility nm-spoolhack serves a special purpose: mail checking applets using the stat() trick to check the status of Unix mail spools may be tought new tricks by pointing them to the emulated mail spool generated by this tool according to another (remote) mail spool. The emulated spool is at most a single byte in size but carries the right stat() attributes to fool the applets. This way you may use the Gnome mail check applet to query IMAPS mail spools, as an example. Its a hack, but it works quite well.
Currently libnewmail includes plugins for the following mailbox protocols:
- Unix mail spool (libunix.so)
- qmail Maildir (libmaildir.so)
- POP3 with SSL and APOP (libpop3.so)
- IMAP4rev1 with SSL (libimap.so)
There is an API for a graphical configuration interface. However, this is currently a NOOP. This feature will be added eventually
<<lesslibnewmail library is intented to be a replacement for all that crappy and incomplete code of all those mail checking utilities available. Applications linking to libnewmail may enumerate configured mailboxes, query mail box information and status and request a mail spool auto-detection for users without any libnewmail specific configuration. The library offers a clean API to implement your own mail checking plugins.
Programs using libnewmail may query for both the boolean availability and the number of available mails. (The former is usually much faster than the latter) The library is able to distuingish between new (unread) and old (read, current) mails. It includes four CLI tools easy, nmail, nmail-async and nm-spoolhackusing the libnewmail API for mail checking. They are intended to be an example how to use the API with either the synchronous or the asynchronous interface.
The utility nm-spoolhack serves a special purpose: mail checking applets using the stat() trick to check the status of Unix mail spools may be tought new tricks by pointing them to the emulated mail spool generated by this tool according to another (remote) mail spool. The emulated spool is at most a single byte in size but carries the right stat() attributes to fool the applets. This way you may use the Gnome mail check applet to query IMAPS mail spools, as an example. Its a hack, but it works quite well.
Currently libnewmail includes plugins for the following mailbox protocols:
- Unix mail spool (libunix.so)
- qmail Maildir (libmaildir.so)
- POP3 with SSL and APOP (libpop3.so)
- IMAP4rev1 with SSL (libimap.so)
There is an API for a graphical configuration interface. However, this is currently a NOOP. This feature will be added eventually
Download (0.37MB)
Added: 2006-03-22 License: GPL (GNU General Public License) Price:
1311 downloads
newmail-md 1.0
newmail is a command line utility to check for new/unread mail in a recursive Maildir++ folder structure. more>>
newmail is a command line utility to check for new/unread mail in a recursive Maildir++ folder structure.
Examples
These are some “usage scenarios” of newmail. For the complete documentation refer to the man page or see below.
To get a quick overview about which folders contain unread mail, its sufficient to call newmail without any commandline arguments:
$ newmail
2 [ INBOX ]
11 /lists/bugtraq
2 /lists/netbsd-current
4 /lists/pkgsrc-cvs
Ah, right. But theres a total of... how many mails?
$ newmail -at
56170
And what are the top ten folders, excluding spam & trash, please?
$ newmail -a | grep -vi spam|trash | sort -nr | head
11260 /lists/info
4287 /lists/bugtraq
1557 [ INBOX ]
1062 /lists/pkgsrc-cvs
955 /bank
719 /burningsoda/svn
569 /lists/bsd
388 /studium
312 /lists/communities
306 /lists/info_kbx
The following three lines in your .muttrc make mutts browser switch between showing all folders and only folders containing unread mail by pressing keys ‘a’ and ‘n’ respectively:
mailboxes `newmail`
macro browser a ":unmailboxes *< enter >:mailboxes `newmail -am`< enter >< check-new >"
"show all mailboxes"
macro browser n ":mailboxes *< enter >:mailboxes `newmail -m`< enter >< check-new >"
"show only mailboxes containing new mail"
OPTIONS
-a, --all
Count the total number of mails for every folder in DIRECTORY.
-m, --mutt
Output folder names in a mutt friendly way. Using this option the output of newmail can be used by the mailboxes command in mutt (see below).
This options has no effect, if --total is specified.
-n, --no-unseen
Do not treat unseen mails as new. This may be used to speed up newmail, especially on slow file systems. Only use this option if you are sure that no other process watches the structure and moves mails out of the new/ to the cur/ directory of the mail folders. IMAP servers typically do this, once they told clients about those mails.
This options has no effect, if --all is specified.
-t, --total
Sum up the total number of mails (according to the other options, of course) and display nothing but this number.
<<lessExamples
These are some “usage scenarios” of newmail. For the complete documentation refer to the man page or see below.
To get a quick overview about which folders contain unread mail, its sufficient to call newmail without any commandline arguments:
$ newmail
2 [ INBOX ]
11 /lists/bugtraq
2 /lists/netbsd-current
4 /lists/pkgsrc-cvs
Ah, right. But theres a total of... how many mails?
$ newmail -at
56170
And what are the top ten folders, excluding spam & trash, please?
$ newmail -a | grep -vi spam|trash | sort -nr | head
11260 /lists/info
4287 /lists/bugtraq
1557 [ INBOX ]
1062 /lists/pkgsrc-cvs
955 /bank
719 /burningsoda/svn
569 /lists/bsd
388 /studium
312 /lists/communities
306 /lists/info_kbx
The following three lines in your .muttrc make mutts browser switch between showing all folders and only folders containing unread mail by pressing keys ‘a’ and ‘n’ respectively:
mailboxes `newmail`
macro browser a ":unmailboxes *< enter >:mailboxes `newmail -am`< enter >< check-new >"
"show all mailboxes"
macro browser n ":mailboxes *< enter >:mailboxes `newmail -m`< enter >< check-new >"
"show only mailboxes containing new mail"
OPTIONS
-a, --all
Count the total number of mails for every folder in DIRECTORY.
-m, --mutt
Output folder names in a mutt friendly way. Using this option the output of newmail can be used by the mailboxes command in mutt (see below).
This options has no effect, if --total is specified.
-n, --no-unseen
Do not treat unseen mails as new. This may be used to speed up newmail, especially on slow file systems. Only use this option if you are sure that no other process watches the structure and moves mails out of the new/ to the cur/ directory of the mail folders. IMAP servers typically do this, once they told clients about those mails.
This options has no effect, if --all is specified.
-t, --total
Sum up the total number of mails (according to the other options, of course) and display nothing but this number.
Download (0.004MB)
Added: 2006-11-22 License: BSD License Price:
1066 downloads
XCmail 2.2
XCmail is a MIME and multi POP3 server capable mailtool for X11 using the Xclasses layout library. more>>
XCmail is a MIME and multi POP3 server capable mailtool for X11 using the Xclasses layout library. XCmail was designed completely object orientated and by this may be improved easily.
The main purpose of XCmail is to read and write mails which may have any kind of data added (attached). For this XCmail can handle MIME types and has so called "helpers" to show different types. And XCmail offers "encoders" which encode and decode binary data into ASCII to allow the transport as mail over the Internet.
The GUI (graphical user interface) was designed to be mostly self explaining but of course there may be some things which are not explaining them self like settings or standard names that are unknown to first users.
The GUI was designed to be as simple as it can be and self explaining. Though, there are a few buttons which are not so easy to understand fo first users because are not standard.
XCmail also offers "encoders" which encode and decode binary data into ASCII to allow the transport via mail over the Internet.
The program works with a local mailbox (eg. /var/spool/mail) and multiple POP3 servers. With POP3 XCmail uses the faster UIDL function of POP3 servers (may be disabled if servers dont support this) and has a so called "UIDL history": If you get mails from your POP3 server but dont want to remove them there and later remove them only locally other mailers will read this mails again. Not XCmail! The UIDL history keeps a history of the mails read from the server so it wont read them again.
XCmail supports multiple mailboxes, has an address book for your favority email addresses and XCmail may start external programs to encode mails or handle MIME types.
XCmail also supportes PGP within PGP MIME (RFC 2015)!
Main features:
- allows the user to add multiple parts on one mail, eg. send files together with a text (called attachment)
- get mails from multiple remote mail servers
- send mails to a remote mail server using simple message transfer protokol (SMTP)
- authenticate on SMTP servers - is sometimes required on SMTP servers to stop spammers from relaying
- authenticate at POP3 server before sending mails via SMTP - this is required by some mail servers if they dont offer SMTP AUTH
- encrypt mails so unwanted persons can not read them
- encrypt complete MIME mails - including the attachments. This is a standard specified in RFC 2015
- send a nice and small picture of yourself with any mail - this is shown if the mail is read
- speedup for POP3
- this avoids XCmail from reading the same mails multiple times from the mail server
- to send files (eg. binaries) with a mail they must be encoded - XCmail offers various encoders, from standard uuencode and base64 to Mac HQX
- because not all attached files are programs XCmail offers an open interface to handle those data - eg. open an external viewer for pictures
- with plugins XCmail may be tuned - eg. some encoders and helpers are plugins so they may not be installed if a users doesnt need them - this required less space on disk and memory
- ever send a mail and later seen that it had some words misspelled? With ISpell this is no longer a problem. ISpell offers checks in many langauges!
- Put extra headers in every mail you send, eg some more information on you or some extra settings for mail agents
- put your favorite recipients in XCmails addressbook
- keeps an second internal addressbook for faster choosing an email recipient
- searches your addressbooks for a matching name or address during you type the recipient
- group different folder to one visible vfolder - for better overview
- Dont understand the language of a mail? XCmail may translate it for you by using altavistas babelfish service!
- You want to archiv many or every mail? This takes a lot of disk space?! Use XCmails folder archiv which compresses archived folders using GZIP standard
- sort or remove your mails before you "must" read them
- put are your favorite addresses in the addressbook
- dont know how to translate a word? use the dictionarys in the Web within the XCmail GUI
- using Spam Bouncer as spam filter plugin
- delete selected mails from your POP3 server
- big mails can be transfered explicitely from your POP3 server
- vCards can be read and a personal or official (from your job) vCard can be sent with every mail (you may choose which of them)
- mails of the incoming folder may be moved to a received folder automatically by many options (after reading, replying, forwarding a mail or if it is some days old)
- helps first time users to setup XCmail
<<lessThe main purpose of XCmail is to read and write mails which may have any kind of data added (attached). For this XCmail can handle MIME types and has so called "helpers" to show different types. And XCmail offers "encoders" which encode and decode binary data into ASCII to allow the transport as mail over the Internet.
The GUI (graphical user interface) was designed to be mostly self explaining but of course there may be some things which are not explaining them self like settings or standard names that are unknown to first users.
The GUI was designed to be as simple as it can be and self explaining. Though, there are a few buttons which are not so easy to understand fo first users because are not standard.
XCmail also offers "encoders" which encode and decode binary data into ASCII to allow the transport via mail over the Internet.
The program works with a local mailbox (eg. /var/spool/mail) and multiple POP3 servers. With POP3 XCmail uses the faster UIDL function of POP3 servers (may be disabled if servers dont support this) and has a so called "UIDL history": If you get mails from your POP3 server but dont want to remove them there and later remove them only locally other mailers will read this mails again. Not XCmail! The UIDL history keeps a history of the mails read from the server so it wont read them again.
XCmail supports multiple mailboxes, has an address book for your favority email addresses and XCmail may start external programs to encode mails or handle MIME types.
XCmail also supportes PGP within PGP MIME (RFC 2015)!
Main features:
- allows the user to add multiple parts on one mail, eg. send files together with a text (called attachment)
- get mails from multiple remote mail servers
- send mails to a remote mail server using simple message transfer protokol (SMTP)
- authenticate on SMTP servers - is sometimes required on SMTP servers to stop spammers from relaying
- authenticate at POP3 server before sending mails via SMTP - this is required by some mail servers if they dont offer SMTP AUTH
- encrypt mails so unwanted persons can not read them
- encrypt complete MIME mails - including the attachments. This is a standard specified in RFC 2015
- send a nice and small picture of yourself with any mail - this is shown if the mail is read
- speedup for POP3
- this avoids XCmail from reading the same mails multiple times from the mail server
- to send files (eg. binaries) with a mail they must be encoded - XCmail offers various encoders, from standard uuencode and base64 to Mac HQX
- because not all attached files are programs XCmail offers an open interface to handle those data - eg. open an external viewer for pictures
- with plugins XCmail may be tuned - eg. some encoders and helpers are plugins so they may not be installed if a users doesnt need them - this required less space on disk and memory
- ever send a mail and later seen that it had some words misspelled? With ISpell this is no longer a problem. ISpell offers checks in many langauges!
- Put extra headers in every mail you send, eg some more information on you or some extra settings for mail agents
- put your favorite recipients in XCmails addressbook
- keeps an second internal addressbook for faster choosing an email recipient
- searches your addressbooks for a matching name or address during you type the recipient
- group different folder to one visible vfolder - for better overview
- Dont understand the language of a mail? XCmail may translate it for you by using altavistas babelfish service!
- You want to archiv many or every mail? This takes a lot of disk space?! Use XCmails folder archiv which compresses archived folders using GZIP standard
- sort or remove your mails before you "must" read them
- put are your favorite addresses in the addressbook
- dont know how to translate a word? use the dictionarys in the Web within the XCmail GUI
- using Spam Bouncer as spam filter plugin
- delete selected mails from your POP3 server
- big mails can be transfered explicitely from your POP3 server
- vCards can be read and a personal or official (from your job) vCard can be sent with every mail (you may choose which of them)
- mails of the incoming folder may be moved to a received folder automatically by many options (after reading, replying, forwarding a mail or if it is some days old)
- helps first time users to setup XCmail
Download (0.77MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1235 downloads
Clean_Mail 2.60
Clean_Mail provides scripts to help maintain mail spool files on a large system. more>>
Clean_Mail provides scripts to help maintain mail spool files on a large system.
Clean_mail is a series of shell and Perl scripts that help a system administrator maintain mail spool files on a large system.
They offer deleting of old mails, backup, deleting of spam, automatic mails to users, etc.
What does Clean_Mail do ?
If you works with a version earlier than 2.59, you must not run several session of Clean_Mail at the same time. The different parts of the programm communicate with files and it would have impredictable results.
There is now a lock file (clean_mail.lock in /tmp) that avoid risks of data loss.
This software is particularly useful when a lot of users does not erase their mails from the server.
The program can manage backups, optional automatic mails to users, and anti-spam mode.
<<lessClean_mail is a series of shell and Perl scripts that help a system administrator maintain mail spool files on a large system.
They offer deleting of old mails, backup, deleting of spam, automatic mails to users, etc.
What does Clean_Mail do ?
If you works with a version earlier than 2.59, you must not run several session of Clean_Mail at the same time. The different parts of the programm communicate with files and it would have impredictable results.
There is now a lock file (clean_mail.lock in /tmp) that avoid risks of data loss.
This software is particularly useful when a lot of users does not erase their mails from the server.
The program can manage backups, optional automatic mails to users, and anti-spam mode.
Download (0.051MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
924 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
wmckgmail 1.1
wmckgmail is a very simple program used to monitor the number of unread mails in a gmail inbox. more>>
wmckgmail is a very simple program used to monitor the number of unread mails in a gmail inbox. wmckgmail project uses the wget command to get the gmail atom feed and reads the number of new mails from this feed.
This app is based on the wmgeneral code.
wmckgmail is a very simple program used to monitor the number of unread mails
in a gmail inbox. It uses the wget command to get the gmail atom feed and reads
the number of new mails from this feed. It is a dockapp that is supported by X
window managers such as Window Maker, AfterStep, BlackBox, Fluxbox and
Enlightenment.
This dockapp is quite simple. It contains the gmail M icon and a small counter.
When the program is unable to access gmail, the counter shows the "ERR" string
and the M icon is greyed. When gmail is accessible and your configuration file
contains a valid username/password combo, the counter indicate the number of
new mails in the gmail inbox. If there is no unread mails in the gmail inbox,
the M icon stays greyed. If there is unread mails in the gmail inbox, the M iconthen takes its real colors and the counter indicates the number of unread mails.
<<lessThis app is based on the wmgeneral code.
wmckgmail is a very simple program used to monitor the number of unread mails
in a gmail inbox. It uses the wget command to get the gmail atom feed and reads
the number of new mails from this feed. It is a dockapp that is supported by X
window managers such as Window Maker, AfterStep, BlackBox, Fluxbox and
Enlightenment.
This dockapp is quite simple. It contains the gmail M icon and a small counter.
When the program is unable to access gmail, the counter shows the "ERR" string
and the M icon is greyed. When gmail is accessible and your configuration file
contains a valid username/password combo, the counter indicate the number of
new mails in the gmail inbox. If there is no unread mails in the gmail inbox,
the M icon stays greyed. If there is unread mails in the gmail inbox, the M iconthen takes its real colors and the counter indicates the number of unread mails.
Download (0.017MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1073 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
nmzmail 0.1.3
nmzmail is a tool to use the namazu2 search engine from within the mutt mail reader to search mail stored in maildir folders. more>>
nmzmail is a tool to use the namazu2 search engine from within the mutt mail reader to search mail stored in maildir folders. Based on the result of the namazu query, nmzmail generates a maildir folder containing symbolic links to the mails matching the query.
Main features:
- fast mail searching even with large number of mails; I use it currently on about 10000 emails
- incremental index building
- rich query language including regular expressions (see the namazu documentation)
- integrates nicely into mutt
- query history
Enhancements:
- Fix getopt on PPC platform (patch by Sebastien Cevey).
- Change commandline syntax for indexing (the -m option is deprecated now), simply use "nmzmail -i ..." (noticed by Tom Martin on zsh mailing list).
- Use automake/autoconf.
<<lessMain features:
- fast mail searching even with large number of mails; I use it currently on about 10000 emails
- incremental index building
- rich query language including regular expressions (see the namazu documentation)
- integrates nicely into mutt
- query history
Enhancements:
- Fix getopt on PPC platform (patch by Sebastien Cevey).
- Change commandline syntax for indexing (the -m option is deprecated now), simply use "nmzmail -i ..." (noticed by Tom Martin on zsh mailing list).
- Use automake/autoconf.
Download (0.081MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1228 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
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
kShowmail 3.2.1
kShowmail is a KDE tool for watching for email on POP3 servers. more>>
Kshowmail project is a KDE tool to watch mails on a POP3 server. Headers and complete mails can be viewed without loading them to the local mail client. Unpleasant mail can be deleted from the server.
The list of displayed mails can be refreshed via configurable timers. Filters can be assigned to mark known spam for deletion. Multiple accounts are supported.
A sound can be played if new mail arrives. A command menu allows user configurable commands like fetchmail or sendmail. A special command can be defined to send complain mail against spam.
The modifications I provided are mainly Qt/KDE stuff to generate a nice GUI interface. I am using the great development tool kDevelop V2.1.
Enhancements:
- Fixed bug where if you configure 2 accounts, retrieve mail, and then deactivate one of the accounts, its number of messages still reflects in the tray icon.
- Fixed sort of message number and size columns in message list to be numerical rather than alpha.
- Corrected version displayed in the About dialog.
<<lessThe list of displayed mails can be refreshed via configurable timers. Filters can be assigned to mark known spam for deletion. Multiple accounts are supported.
A sound can be played if new mail arrives. A command menu allows user configurable commands like fetchmail or sendmail. A special command can be defined to send complain mail against spam.
The modifications I provided are mainly Qt/KDE stuff to generate a nice GUI interface. I am using the great development tool kDevelop V2.1.
Enhancements:
- Fixed bug where if you configure 2 accounts, retrieve mail, and then deactivate one of the accounts, its number of messages still reflects in the tray icon.
- Fixed sort of message number and size columns in message list to be numerical rather than alpha.
- Corrected version displayed in the About dialog.
Download (1.5MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
831 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
Mozilla New Mail Icon 1.2.2
Mozilla New Mail Icon is an extension which displays an icon in the system tray when new mail arrives. more>>
Mozilla New Mail Icon is an extension which displays an icon in the system tray when new mail arrives in your Mozilla or Mozilla Thunderbird .
Mozilla New Mail Icon supports the standard (FreeDesktop.org) system tray, as used by GNOME, KDE and IceWM.
<<lessMozilla New Mail Icon supports the standard (FreeDesktop.org) system tray, as used by GNOME, KDE and IceWM.
Download (0.029MB)
Added: 2006-04-25 License: GPL (GNU General Public License) Price:
1283 downloads
tidyup-mail 0.12
tidyup-mail software is especially useful for russian/ukrainian/belarusian users but however can help those who reads mail... more>>
tidyup-mail software is especially useful for russian/ukrainian/belarusian users but however can help those who reads mail from people that uses such brain-damaged web-mailers as yahoo mail.
Fatigue with xterm when reading mail from mutt? Tired to press "Do Full reset" every time when terminal becames full of garbage? This program is for you! It removes unsafe characters for email & makes xterm happy!
Note that all documentation comes in russian language. Check for your local russian hacker.
<<lessFatigue with xterm when reading mail from mutt? Tired to press "Do Full reset" every time when terminal becames full of garbage? This program is for you! It removes unsafe characters for email & makes xterm happy!
Note that all documentation comes in russian language. Check for your local russian hacker.
Download (0.007MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 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 mails 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