mail yahoo
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1367
Mail::Client::Yahoo 1.0
Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email. more>>
Mail::Client::Yahoo is a Perl module with programmatically access Yahoos web-based email.
SYNOPSIS
use Mail::Client::Yahoo;
$y = Mail::Client::Yahoo->login(
username => bob,
password => secret,
secure => 1, # for the paranoid and patient
);
$y->select_folder(Inbox);
$m = $y->message(0); # is equivalent to...
@ids = $y->message_list();
$y->message($id[0]);
$y->delete_message(0);
$y->logout();
This module allows you to access your web-based Yahoo Mail account programatically. Similar in function to Mail::Webmail::Yahoo, this module is more geared towards manipulation of individual messages, rather than simple bulk download. This module is also probably more reliable than Mail::Webmail::Yahoo, as well.
<<lessSYNOPSIS
use Mail::Client::Yahoo;
$y = Mail::Client::Yahoo->login(
username => bob,
password => secret,
secure => 1, # for the paranoid and patient
);
$y->select_folder(Inbox);
$m = $y->message(0); # is equivalent to...
@ids = $y->message_list();
$y->message($id[0]);
$y->delete_message(0);
$y->logout();
This module allows you to access your web-based Yahoo Mail account programatically. Similar in function to Mail::Webmail::Yahoo, this module is more geared towards manipulation of individual messages, rather than simple bulk download. This module is also probably more reliable than Mail::Webmail::Yahoo, as well.
Download (0.006MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
Mail::Webmail::Yahoo 0.601
Mail::Webmail::Yahoo is a Perl module that enables bulk download of yahoo.com -based webmail. more>>
Mail::Webmail::Yahoo is a Perl module that enables bulk download of yahoo.com -based webmail.
SYNOPSIS
use Mail::Webmail::Yahoo;
$yahoo = Mail::Webmail::Yahoo->new(%options);
@folders = $yahoo->get_folder_list();
@messages = $yahoo->get_mail_messages(Inbox, all);
# Write messages to disk here, or do something else.
This module grew out of the need to download a large archive of web mail in bulk. As of the modules creation Yahoo did not provide a simple method of performing bulk operations.
This module is intended to make up for that shortcoming.
METHODS
$yahoo = new Mail::Webmail::Yahoo(...)
Creates a new Mail::Webmail::Yahoo object. Pass parameters in key => value form, and these must include, at a minimum:
username
password
You may also pass an optional cookie file as cookie_file => /path/to/file.
$yahoo->connect();
Connects the application with the site. Really this is not necessary, but its in here for hysterical raisins.
$yahoo->login();
Method which performs the login stage of connecting to the site. This method can take a while to complete since there are at least several re-directs when logging in to Yahoo.
Returns 0 if already logged in, 1 if successful, otherwise sets $@ and returns undef.
@headers = $yahoo->get_mail_headers($folder);
***REMOVED***
@messages = $yahoo->get_mail_messages($folder);
Returns an array of message headers for the $folder folder. These are mostly in Mail::Internet format, which is nice but involves constructing them from what Yahoo provides -- which aint much. When an individual message is requested, we can get more info via turning on the headers, so this method requests each method in turn (caching for future use, unless cache_messages is turned off) and builds a Mail::Internet object from each message.
You can get the raw headers from get_folder_index().
Note that for reasons of efficiency this method collects headers and the full text of the message, and this is cached to avoid having to go back to the network each time. To force a refresh, set the Snagmail objects cache to 0 with
$yahoo->cache_messages(0);
$yahoo->cache_headers(0);
Note: There used to be a $callback parameter to this method, but since it was never used it has been removed.
my $msg = $yahoo->_process_message($page, $yahoo_msg_id);
Extracts and returns as a Mail::Internet object the headers and message body from the provided HTML ($page).
my $msg = $yahoo->_extract_headers($page, $yahoo_msg_id);
Performs the actual extraction of the message headers from the given HTML in $page. Pushes the $yahoo_msg_id into the headers as X-Yahoo-MsgId. Also adds a version header.
my $ok = $yahoo->_extract_body($mhdr, $page);
Extracts and adds to the Mail::Internet object in $mhdr the message body, including any attachments parsed out of $page. Returns 1 to indicate success, although no error conditions are currently checked for/ handled.
$page = $yahoo->download_attachment($download_uri, $mailmsg);
Downloads an attachment from the specified URI. $mailmsg is a reference to a Mail::Internet object. The downloaded attachment is added to the mailmsg via add_attachment_to_message()
$yahoo->add_attachment_to_message($msg, $attachment, $filename);
Adds the $attachment to $msg, adjusting Content-Type and MIME-Version as necessary.
$yahoo->make_multipart_boundary()
Currently does nothing useful. So far all messages have had correct types.
$yahoo->get_folder_action_link($mbox, $linktype, $force);
Returns and stores the action link for the given $linktype. This is a URI that will cause an action to be performed on a message set, such as DELETE or MOVE.
@message_headers = $yahoo->get_folder_index($folder);
Returns a list of all the messages in the specified folder. These messages are stored as URIs. Logs the user in if necessary.
@messages = $yahoo->_get_message_links($page)
(Private instance method)
Returns the actual links (as an array) needed to pull down the messages. This method is used internally and is not intended to be used from applications, since the messages returned are not in a very friendly form. This method returns only the messages referenced on a given page, and is called from get_folder_index() to build up a complete list of all messages in a folder.
@folders = $yahoo->get_folder_list();
Returns a list of folders in the account. Logs the user in if necessary. Also stores the two special folders (Trash and Bulk) so they can be emptied later.
$ok = $yahoo->send($to, $subject, $body, $cc, $bcc, $flags);
Attempts to send a message to the recipients listed in $to, $cc, and $bcc, with the specified subject and body text. $to,$cc, and $bcc can be scalars or arrayrefs containing lists of recipients.
Logs the user in if necessary.
$flags may contain any combination of the constants exported by this package. Currently, these constants are:
SAVE_COPY_TO_SENT_FOLDER : saves a copy of a sent message
ATTACH_SIG : attaches the senders Yahoo signature
SEND_AS_HTML : sends the message in HTML format.
cc and bcc come after subject and body in the parameter list (instead of with to) since it is expected that
send(to, subject, body)
will be more common than sending to Cc or BCc recipients - at least, this is how it is in my experience.
As of this version, address-book lookups are not supported.
As of this version, mail attachments are not supported.
$resp = $yahoo->_get_a_page($uri, $method, $params);
(Private instance method)
Requests and returns a page found at the specified $uri via the specified $method. If $params (an arrayref) is present it will be formatted according to the method.
If method is empty or undefined, it defaults to GET. The ordering of the parameters, while seemingly counter-intuitive, allows one of the great virtues of programming (laziness) by not requiring that the method be passed for every call.
Returns the response object if no error occurs, undef on error.
$current_trace_level = $yahoo->trace($new_trace_level);
if $new_trace_level exists, sets the new level for tracing the operation of the object. Returns the current trace level (i.e. before setting a new one).
Trace levels are:
0 no tracing output; warning messages only.
> 0 informative messages ("what I am doing")
> 1 URIs being fetched
> 2 request response codes
> 3 request parameters
> 4 any other extra debugging info.
> 9 request response content
$yahoo->debug(...);
Sends debugging messages to STDERR, appended with a newline.
$yahoo->make_host($uri) or Yahoo::make_host($uri)
Returns a string consisting of just the scheme, host, and port parts of the URI. The URI::URL::as_string method returns the full URI (including path) but leaves out the port number, which is why its unsuitable here.
<<lessSYNOPSIS
use Mail::Webmail::Yahoo;
$yahoo = Mail::Webmail::Yahoo->new(%options);
@folders = $yahoo->get_folder_list();
@messages = $yahoo->get_mail_messages(Inbox, all);
# Write messages to disk here, or do something else.
This module grew out of the need to download a large archive of web mail in bulk. As of the modules creation Yahoo did not provide a simple method of performing bulk operations.
This module is intended to make up for that shortcoming.
METHODS
$yahoo = new Mail::Webmail::Yahoo(...)
Creates a new Mail::Webmail::Yahoo object. Pass parameters in key => value form, and these must include, at a minimum:
username
password
You may also pass an optional cookie file as cookie_file => /path/to/file.
$yahoo->connect();
Connects the application with the site. Really this is not necessary, but its in here for hysterical raisins.
$yahoo->login();
Method which performs the login stage of connecting to the site. This method can take a while to complete since there are at least several re-directs when logging in to Yahoo.
Returns 0 if already logged in, 1 if successful, otherwise sets $@ and returns undef.
@headers = $yahoo->get_mail_headers($folder);
***REMOVED***
@messages = $yahoo->get_mail_messages($folder);
Returns an array of message headers for the $folder folder. These are mostly in Mail::Internet format, which is nice but involves constructing them from what Yahoo provides -- which aint much. When an individual message is requested, we can get more info via turning on the headers, so this method requests each method in turn (caching for future use, unless cache_messages is turned off) and builds a Mail::Internet object from each message.
You can get the raw headers from get_folder_index().
Note that for reasons of efficiency this method collects headers and the full text of the message, and this is cached to avoid having to go back to the network each time. To force a refresh, set the Snagmail objects cache to 0 with
$yahoo->cache_messages(0);
$yahoo->cache_headers(0);
Note: There used to be a $callback parameter to this method, but since it was never used it has been removed.
my $msg = $yahoo->_process_message($page, $yahoo_msg_id);
Extracts and returns as a Mail::Internet object the headers and message body from the provided HTML ($page).
my $msg = $yahoo->_extract_headers($page, $yahoo_msg_id);
Performs the actual extraction of the message headers from the given HTML in $page. Pushes the $yahoo_msg_id into the headers as X-Yahoo-MsgId. Also adds a version header.
my $ok = $yahoo->_extract_body($mhdr, $page);
Extracts and adds to the Mail::Internet object in $mhdr the message body, including any attachments parsed out of $page. Returns 1 to indicate success, although no error conditions are currently checked for/ handled.
$page = $yahoo->download_attachment($download_uri, $mailmsg);
Downloads an attachment from the specified URI. $mailmsg is a reference to a Mail::Internet object. The downloaded attachment is added to the mailmsg via add_attachment_to_message()
$yahoo->add_attachment_to_message($msg, $attachment, $filename);
Adds the $attachment to $msg, adjusting Content-Type and MIME-Version as necessary.
$yahoo->make_multipart_boundary()
Currently does nothing useful. So far all messages have had correct types.
$yahoo->get_folder_action_link($mbox, $linktype, $force);
Returns and stores the action link for the given $linktype. This is a URI that will cause an action to be performed on a message set, such as DELETE or MOVE.
@message_headers = $yahoo->get_folder_index($folder);
Returns a list of all the messages in the specified folder. These messages are stored as URIs. Logs the user in if necessary.
@messages = $yahoo->_get_message_links($page)
(Private instance method)
Returns the actual links (as an array) needed to pull down the messages. This method is used internally and is not intended to be used from applications, since the messages returned are not in a very friendly form. This method returns only the messages referenced on a given page, and is called from get_folder_index() to build up a complete list of all messages in a folder.
@folders = $yahoo->get_folder_list();
Returns a list of folders in the account. Logs the user in if necessary. Also stores the two special folders (Trash and Bulk) so they can be emptied later.
$ok = $yahoo->send($to, $subject, $body, $cc, $bcc, $flags);
Attempts to send a message to the recipients listed in $to, $cc, and $bcc, with the specified subject and body text. $to,$cc, and $bcc can be scalars or arrayrefs containing lists of recipients.
Logs the user in if necessary.
$flags may contain any combination of the constants exported by this package. Currently, these constants are:
SAVE_COPY_TO_SENT_FOLDER : saves a copy of a sent message
ATTACH_SIG : attaches the senders Yahoo signature
SEND_AS_HTML : sends the message in HTML format.
cc and bcc come after subject and body in the parameter list (instead of with to) since it is expected that
send(to, subject, body)
will be more common than sending to Cc or BCc recipients - at least, this is how it is in my experience.
As of this version, address-book lookups are not supported.
As of this version, mail attachments are not supported.
$resp = $yahoo->_get_a_page($uri, $method, $params);
(Private instance method)
Requests and returns a page found at the specified $uri via the specified $method. If $params (an arrayref) is present it will be formatted according to the method.
If method is empty or undefined, it defaults to GET. The ordering of the parameters, while seemingly counter-intuitive, allows one of the great virtues of programming (laziness) by not requiring that the method be passed for every call.
Returns the response object if no error occurs, undef on error.
$current_trace_level = $yahoo->trace($new_trace_level);
if $new_trace_level exists, sets the new level for tracing the operation of the object. Returns the current trace level (i.e. before setting a new one).
Trace levels are:
0 no tracing output; warning messages only.
> 0 informative messages ("what I am doing")
> 1 URIs being fetched
> 2 request response codes
> 3 request parameters
> 4 any other extra debugging info.
> 9 request response content
$yahoo->debug(...);
Sends debugging messages to STDERR, appended with a newline.
$yahoo->make_host($uri) or Yahoo::make_host($uri)
Returns a string consisting of just the scheme, host, and port parts of the URI. The URI::URL::as_string method returns the full URI (including path) but leaves out the port number, which is why its unsuitable here.
Download (0.028MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1058 downloads
mechanoid.send_yahoo 0.1.7
mechanoid.send_yahoo it sends your email using your Yahoo! Web mail account. more>>
send_yahoo is a sendmail substitute for clients like mutt.
It sends your email using your Yahoo! Web mail account. send_yahoo is a mechanoid script.
Enhancements:
- This release adds a missing lib_rharris module.
<<lessIt sends your email using your Yahoo! Web mail account. send_yahoo is a mechanoid script.
Enhancements:
- This release adds a missing lib_rharris module.
Download (0.015MB)
Added: 2005-08-29 License: GPL (GNU General Public License) Price:
1517 downloads
Kwiki::Yahoo 0.04
Kwiki::Yahoo is a Wafl Phrase for including RSS feeds in a Kwiki Page. more>>
Kwiki::Yahoo is a Wafl Phrase for including RSS feeds in a Kwiki Page.
{yahoo-doc < query > |args}
Kwiki::Yahoo uses the Yahoo::Search module to use the Yahoo API for web, video, image, news, local, spelling, and related searches.
This is a simple proof of concept that probably has many roads for improvement. A lot of flexibility would be gained by accessing the Results directly rather than using the generated HTML.
DEMONSTRATION
Theres a demonstration, with some explanatory text at http://www.burningchrome.com/wiki/index.cgi?KwikiYahoo
<<less{yahoo-doc < query > |args}
Kwiki::Yahoo uses the Yahoo::Search module to use the Yahoo API for web, video, image, news, local, spelling, and related searches.
This is a simple proof of concept that probably has many roads for improvement. A lot of flexibility would be gained by accessing the Results directly rather than using the generated HTML.
DEMONSTRATION
Theres a demonstration, with some explanatory text at http://www.burningchrome.com/wiki/index.cgi?KwikiYahoo
Download (0.009MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1051 downloads
Mail::Action 0.40
Mail::Action is a Perl module for building modules that act on incoming mail. more>>
Mail::Action is a Perl module for building modules that act on incoming mail.
SYNOPSIS
use base Mail::Action;
Sometimes, you just need a really simple mailing address to last for a few days. You want it to be easy to create and easy to use, and you want it to be sufficiently anonymous that your real address isnt ever exposed.
Mail::TempAddress, Mail::TempAddress::Addresses, and Mail::TempAddress::Address make it easy to create a temporary mailing address system.
<<lessSYNOPSIS
use base Mail::Action;
Sometimes, you just need a really simple mailing address to last for a few days. You want it to be easy to create and easy to use, and you want it to be sufficiently anonymous that your real address isnt ever exposed.
Mail::TempAddress, Mail::TempAddress::Addresses, and Mail::TempAddress::Address make it easy to create a temporary mailing address system.
Download (0.011MB)
Added: 2006-09-05 License: Perl Artistic License Price:
1144 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
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
Text::Emoticon::Yahoo 0.02
Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger. more>>
Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger.
SYNOPSIS
use Text::Emoticon::Yahoo;
my $emoticon = Text::Emoticon::Yahoo->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::Yahoo is a text filter that replaces text emoticons like ":)", ";P", etc. to the icons of Yahoo! Messenger, detailed in http://messenger.yahoo.com/emoticons.php
<<lessSYNOPSIS
use Text::Emoticon::Yahoo;
my $emoticon = Text::Emoticon::Yahoo->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::Yahoo is a text filter that replaces text emoticons like ":)", ";P", etc. to the icons of Yahoo! Messenger, detailed in http://messenger.yahoo.com/emoticons.php
Download (0.003MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1069 downloads
tideup_mail 0.12
tideup_mail is especially useful for russian/ukrainian/belarusian users but however can help those who reads mail from people. more>>
tideup_mail 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 on 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 on russian language. Check for your local russian hacker.
Download (0.007MB)
Added: 2006-05-03 License: GPL (GNU General Public License) Price:
1269 downloads
FetchYahoo 2.10.4
FetchYahoo is a Perl script that downloads mail from a Yahoo! account to a local mail spool. more>>
FetchYahoo is a Perl script that downloads mail from a Yahoo! account to a local mail spool. It is meant to replace fetchmail for people using Yahoo! mail since Yahoo!s POP service is no longer free.
FetchYahoo downloads messages to a local mail spool, including all parts and attachments. It then deletes messages unless requested not to. It can also optionally forward messages to a specified email address and repeat with a given interval.
Note:
If you are having trouble using FetchYahoo, try logging into your Yahoo! mail manually using a web browser and click the button to clear the splash screen. FetchYahoo should continue to work as normal after clearing the splash screen.
Enhancements:
- This release works with the new Yahoo Mail Beta interface.
- It also fixes an uninitialized variable bug and updates the "es" translation.
<<lessFetchYahoo downloads messages to a local mail spool, including all parts and attachments. It then deletes messages unless requested not to. It can also optionally forward messages to a specified email address and repeat with a given interval.
Note:
If you are having trouble using FetchYahoo, try logging into your Yahoo! mail manually using a web browser and click the button to clear the splash screen. FetchYahoo should continue to work as normal after clearing the splash screen.
Enhancements:
- This release works with the new Yahoo Mail Beta interface.
- It also fixes an uninitialized variable bug and updates the "es" translation.
Download (0.040MB)
Added: 2006-09-17 License: GPL (GNU General Public License) Price:
1132 downloads
Sethi Yahoo News Grabber 1.0
Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo. more>>
Sethi Yahoo News Grabber is a small script used for fetching news from Yahoo.
Quick and dirty routine to get Yahoo news
Should save result to a text file and then SSI the sucker where you want
<<lessQuick and dirty routine to get Yahoo news
Should save result to a text file and then SSI the sucker where you want
Download (MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
946 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
WWW::Search::Yahoo 2.405
WWW::Search::Yahoo is a Perl backend for searching www.yahoo.com more>>
WWW::Search::Yahoo is a Perl backend for searching www.yahoo.com
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo);
my $sQuery = WWW::Search::escape_query("sushi restaurant Columbus Ohio");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo specialization of WWW::Search. It handles making and interpreting Yahoo searches http://www.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo);
my $sQuery = WWW::Search::escape_query("sushi restaurant Columbus Ohio");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo specialization of WWW::Search. It handles making and interpreting Yahoo searches http://www.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Download (0.027MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1049 downloads
Yahoo Messenger 1.0.4
Yahoo! Messenger for UNIX is an instant messenger. more>>
Yahoo! Messenger for Unix sends instant messages to your Windows and Unix friends!
Enhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
<<lessEnhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
Download (0.91MB)
Added: 2005-06-15 License: LGPL (GNU Lesser General Public License) Price:
1171 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
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 mail yahoo 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