Main > Free Download Search >

Free netscape mail software for linux

netscape mail

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1210
Netscape::Cache 0.45

Netscape::Cache 0.45


Netscape::Cache is a Perl object class for accessing Netscape cache files. more>>
Netscape::Cache is a Perl object class for accessing Netscape cache files.

SYNOPSIS

The object oriented interface:

use Netscape::Cache;

$cache = new Netscape::Cache;
while (defined($url = $cache->next_url)) {
print $url, "n";
}

while (defined($o = $cache->next_object)) {
print
$o->{URL}, "n",
$o->{CACHEFILE}, "n",
$o->{LAST_MODIFIED}, "n",
$o->{MIME_TYPE}, "n";
}

The TIEHASH interface:

use Netscape::Cache;

tie %cache, Netscape::Cache;
foreach (sort keys %cache) {
print $cache{$_}->{URL}, "n";
}

The Netscape::Cache module implements an object class for accessing the filenames and URLs of the cache files used by the Netscape web browser.

Note: You can also use the undocumented pseudo-URLs about:cache, about:memory-cache and about:global-history to access your disk cache, memory cache and global history.
There is also an interface for using tied hashes.

Netscape uses the old Berkeley DB format (version 1.85) for its cache index index.db. Version 2.x.x is incompatible with the old format (db_intro(3)), so you have either to downgrade or to convert the database using db_dump185 and db_load. See convert_185_2xx for a (experimental) converter function.

<<less
Download (0.016MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
Netscape::Bookmarks 1.94

Netscape::Bookmarks 1.94


Netscape::Bookmarks is a Perl module to parse, manipulate, or create Netscape Bookmarks files. more>>
Netscape::Bookmarks is a Perl module to parse, manipulate, or create Netscape Bookmarks files.

SYNOPSIS

use Netscape::Bookmarks;

# parse an existing file
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );

# -- OR --
# start a new Bookmarks structure
my $bookmarks = Netscape::Bookmarks->new;

# print a Netscape compatible file
print $bookmarks->as_string;

[ Note: I wrote this a long time ago. Although this should still work with "Netscape" browsers, Mozilla browsers do the same thing. When the docs say "Netscape", I mean either branch of browsers. ]

The Netscape bookmarks file has several basic components:

title
folders (henceforth called categories)
links
aliases
separators

On disk, Netscape browsers store this information in HTML. In the browser, it is displayed under the "Bookmarks" menu. The data can be manipulated through the browser interface.

This module allows one to manipulate the bookmarks file programmatically. One can parse an existing bookmarks file, manipulate the information, and write it as a bookmarks file again. Furthermore, one can skip the parsing step to create a new bookmarks file and write it in the proper format to be used by a Netscape browser.

The Bookmarks module simply parses the bookmarks file passed to it as the only argument to the constructor:

my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );

The returned object is a Netscape::Bookmarks::Category object, since the bookmark file is simply a collection of categories that contain any of the components listed above. The top level (i.e. root) category is treated specially and defines the title of the bookmarks file.

HTML::Parser is used behind the scenes to build the data structure (a simple list of lists (of lists ...)). Netscape::Bookmarks::Category, Netscape::Bookmarks::Link, Netscape::Bookmarks::Alias, or Netscape::Bookmarks::Separator objects can be stored in a Netscape::Bookmarks::Category object. Netscape::Bookmarks::Alias objects are treated as references to Netscape::Bookmarks::Link objects, so changes to one affect the other.

Methods for manipulating this object are in the Netscape::Bookmarks::Category module. Methods for dealing with the objects contained in a Netscape::Bookmarks::Category object are in their appropriate modules.

new( [filename] )

The constructor takes a filename as its single (optional) argument. If you do not give new an argument, an empty Netscape::Bookmarks::Category object is returned so that you can start to build up your new Bookmarks file. If the file that you name does not exist, undef is returned in scalar context and an empty list is returned in list context. If the file does exist it is parsed with HTML::Parser with the internal parser subclass defined in the same package as new. If the parsing finishes without error a Netscape::Bookmarks::Category object is returned.

parse_string

Method for HTML::Parser subclass method

start

Method for HTML::Parser subclass method

text

Method for HTML::Parser subclass method

end

Method for HTML::Parser subclass method

my_init

Method for HTML::Parser subclass method

<<less
Download (0.023MB)
Added: 2007-03-24 License: Perl Artistic License Price:
947 downloads
Netscape::HistoryURL 3.01

Netscape::HistoryURL 3.01


Netscape::HistoryURL is a URI::URL subclass with Netscape history information. more>>
Netscape::HistoryURL is a URI::URL subclass with Netscape history information.

SYNOPSIS

use Netscape::HistoryURL;

$url = new Netscape::HistoryURL(http://foobar.com/,
LAST, FIRST, COUNT, EXPIRE, TITLE);

The Netscape::HistoryURL module subclasses URI::URL to provide a URL class with methods for accessing the information which is stored in Netscapes history database.

The history database is used to keep track of all URLs you have visited. This is used to color previously visited URLs different, for example. The information stored in the history database depends on the version of Netscape being used.

<<less
Download (0.008MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
Netscape Navigator 9.0 Beta 1

Netscape Navigator 9.0 Beta 1


Netscape Navigator offers improved pop-up blocking and enhanced security. more>>
Netscape Navigator offers improved pop-up blocking and enhanced security. Netscape Navigator 9 is available as a standalone installation for Linux, Mac OS, and Windows.
The automatic update feature in your current Netscape browser will not upgrade to 9.0. Please download the new version now for the newest updates.
Main features:
Social Integration
- Share and vote for webpages that you find interesting.
- Add friends and get their favorite stories in your sidebar.
News in the Browser
- Follow the latest news directly from your browser.
- Customize your News menu to only show your favorite sections.
URL correction
- Let Navigator fix common typing mistakes in URLs.
- No more .cmo, .ogr, or htp:// !
Link Pad
- Save interesting links for later without cluttering your bookmarks.
<<less
Download (8.9MB)
Added: 2007-06-05 License: NPL (Netscape Public License) Price:
169492 downloads
Netscape::History 3.01

Netscape::History 3.01


Netscape::History is a Perl object class for accessing Netscape history database. more>>
Netscape::History is a Perl object class for accessing Netscape history database.

SYNOPSIS

use Netscape::History;

$history = new Netscape::History();
while (defined($url = $history->next_url() ))
{
}

The Netscape::History module implements an object class for accessing the history database maintained by the Netscape web browser. The history database keeps a list of all URLs you have visited, and is used by Netscape to change the color of URLs which you have previously visited, for example.

With this module, you can get at the URLs stored in a Netscape history file, delete URLs, and add new ones. With the associated Netscape::HistoryURL module you can access the information which is associated with each URL.

Please Note: the database format for the browser history was changed with Netscape 4. Previously only the time of most recent visit was available; now you can also get at the time of your first visit, the number of visits, the title of the referenced page, and another value.

<<less
Download (0.009MB)
Added: 2007-03-24 License: Perl Artistic License Price:
949 downloads
Fetch and deliver mail 1.3

Fetch and deliver mail 1.3


Fetch and deliver mail is a simple, lightweight replacement for mail fetching, filtering, and delivery programs. more>>
Fetch and deliver mail is a simple, lightweight replacement for mail fetching, filtering, and delivery programs such as fetchmail and procmail.
It can fetch using POP3, POP3S, IMAP, IMAPS, or stdin, and deliver to a pipe, file, maildir, mbox, or SMTP server, based on a set of regexps.
Fetch and deliver mail can be used for both single user and multiuser setups, and is designed with privilege separation when running as root.
Enhancements:
- Mostly configuration file enhancements and code cleanup were done since 1.2. ifdef/endif blocks and inline shell commands are allowed in the configuration file.
- A built-in string cache using TDB was added.
- Some extra default tags were added. NNTPS fetching was implemented.
<<less
Download (0.040MB)
Added: 2007-07-31 License: BSD License Price:
816 downloads
Netscape Navigator for Linux 9.0b2

Netscape Navigator for Linux 9.0b2


Surf the Web quickly and securely with Netscape Navigator for Linux. more>> Surf the Web quickly and securely with Netscape Navigator for Linux.
In addition to high-speed browsing and instant-messaging capabilities, Netscape features one-click searching from the address bar; Quick Launch, which reduces the browser start-up time; Click-to-Search, which allows users to select a word within a Web page and search; improved instant messaging, including support for buddy icons, file transfers, and buddy alerts; and tabbed browsing, which allows users to view multiple Web pages in a single browser window.
Version 9.0b2 adds URL correction for common typos, in-browser voting on popular, a sidebar minibrowser, and compatibility with Firefox 2 extensions.
<<less
Download (8.86MB)
Added: 2009-04-26 License: Freeware Price: Free
180 downloads
NeoMail 1.29

NeoMail 1.29


NeoMail is a free web-based e-mail client that can be installed on any UNIX mail server that is also running a web server. more>>
NeoMail project is a web-based mail client which can be installed on any UNIX mail server that is also running a web server. With thousands of installations worldwide, anyone who has used their share of webmail has probably used NeoMail at some point.
In fact, theres a good chance that you arrived at this page by clicking a link on your NeoMail providers login page. Welcome! Feel free to browse around and see what others are saying about the webmail interface youve used for years.
But be advised: we cant help you with end-user issues such as login timeouts, password reset requests, and the like. We dont administer your e-mail server, we just provide the webmail software that powers it!
Main features:
- Sending/receiving messages with multiple attachments
- Inline image attachment display
- Friendly, attractive, icon-based user interface -- If you dont agree, you can create your own using the built-in interface template support!
- Multiple language support, including English, Spanish, German, French, Hungarian, Italian, Dutch, Polish, Portuguese, Norwegian, Romanian, Russian, Slovak, and more can be added easily
- Configurable limits on outgoing attachment size, folder disk usage, addressbook size...
- Users can import their address book from Outlook Express or Netscape Mail in CSV format.
NeoMail is not related to the web-based messaging service at NeoPets.com.
Enhancements:
- This release has a fix to check the session before a folder add/delete in case of a maliciously constructed request.
- This upgrade is highly recommended for all users.
<<less
Download (0.54MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1353 downloads
Shohei Mail 0.1.0

Shohei Mail 0.1.0


Shohei is a multi-language, multi-function, multi-server, multi-user, multi-context, multi-media web-based mail client. more>>
Shohei is a multi-language, multi-function, multi-server, multi-user, multi-context, multi-media web-based mail client, news client, calendar and note server.
Shohei is a pop3 client which meets the requirements of Stockholm public network.
Main features:
- Sends mail using SMTP
- Receives mail using POP
- Handles users in any number of domains on any number of servers
- Web based administration with different admins for different domains
- MIME aware
- Usenet News client
- Online context-sensitive help
- Customizable using HTML templates with embedded macros
- Calendar
- Write simple notes
- English and Swedish message catalogs, new ones are easily added
<<less
Download (0.16MB)
Added: 2006-06-10 License: GPL (GNU General Public License) Price:
1231 downloads
tidyup-mail 0.12

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.

<<less
Download (0.007MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 downloads
Netscape Address Book Recovery 0.1.0

Netscape Address Book Recovery 0.1.0


A tool to take that corrupted Netscape Address Book and get your information out of it more>>
A tool to take that corrupted Netscape Address Book and get your information out of it. This is a tool to take that corrupted Netscape Address Book and get your information out of it. After the third time my book got corrupted, I gave up trying to fix it by hand and wrote this program. This program attempts to get as much information out of the address book as is possible. But as with all programs of this type, it will always need to change to keep track of the different ways in which the address book can be corrupted. It can output .csv (Comma Separated Values) or .ldi (LDAP Date Interchange Format) files.Dont output .csv files, you will lose all mailing list information.
Enhancements:
- Major bugfixes with handling indexes
- Major bugfixes with handling edits
- Added LDIF support
- Added support for mailling lists
<<less
Download (0.047MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1224 downloads
Netscape Friends Activity Sidebar 1.1

Netscape Friends Activity Sidebar 1.1


Netscape Friends Activity Sidebar is a Firefox extension that helps you keep tabs about your friends stories on Netscape... more>>
Netscape Friends Activity Sidebar is a Firefox extension that helps you keep tabs on what stories your Netscape friends are submitting, commenting, and voting on. A new toolbar button (shown in the extension preview image) features Chad, the older, more mature brother of AOLs little yellow chat mascot. When there is new activity by your friends (i.e., a new comment, story submission, or vote, depending on your settings), the button will be activated and Chad will send a friendly wave your way. Clicking on the activated button will open a list of your friends activity in the sidebar, allowing you to easily browse their stories and comments. Each time you view your friends activity, you will only be shown activity that is new since the last time you opened the sidebar.

Note: The sidebar limits activity to five items for each friend. If there are more than five items to view, a "View all of Chads activity" link will be shown at the bottom of the friends section. You can always view all of a friends activity by clicking on their name or avatar.

To make use of this extension, you must be logged into Netscape.com. If you do not have a Netscape.com account, sign up at http://www.netscape.com/signup Accounts are free, and it only takes a few minutes to create one. Once you have a Netscape.com account, you can submit stories and videos, vote for other peoples stories, rate comments, comment on stories you find interesting, as well as use this extension.

<<less
Download (0.016MB)
Added: 2007-05-29 License: MPL (Mozilla Public License) Price:
878 downloads
Masswire Mail 0.17 Beta

Masswire Mail 0.17 Beta


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

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

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

<<less
Download (0.039MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
942 downloads
Display mail route 0.2.1

Display mail route 0.2.1


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

Enhancements: Compatible with TB 1.5.0.*

Requirements: Thunderbird 1.0 - 1.5.0.* ALL

<<less
Added: 2006-09-12 License: MPL Price: FREE
1 downloads
conceptRM (Rss Mail) 0.04

conceptRM (Rss Mail) 0.04


ConceptRM (RssMail) is an email client using RSS as a means to deliver the list of email to the user. more>>
ConceptRM (RssMail) project is an email client using RSS as a means to deliver the list of email to the user.
Main features:
- Support pop3 mailbox
- Support for multiple mailboxes (display a preferred format e.g. html as opposed to plain email format)
- multipart email
- email deletion
- RSS 1.0 and 2.0 support
<<less
Download (0.019MB)
Added: 2006-09-12 License: Freeware Price:
1138 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5