Main > Free Download Search >

Free addressbooks software for linux

addressbooks

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 16
Mail::Addressbook::Convert 1.1

Mail::Addressbook::Convert 1.1


Mail::Addressbook::Convert is a Perl module that can convert to and from many e-mail addressbooks. more>>
Mail::Addressbook::Convert is a Perl module that can convert to and from many e-mail addressbooks.

SYNOPSIS

These modules allow to to convert between the following e-mail addressbook formats
From To csv csv ( Note: MS Outlook. Outlook Express and many other mailers will export and import into this format) tsv tsv (tab-separated ascii, Outlook and OE also do these) pine pine ccMail Eudora Eudora Pegasus Pegasus Juno Lidf Ldif (Netscape 4 exports in this format ) Mailrc Spry

This distribution will convert email addressbooks between many common formats. Some examples are Pine, Eudora, Pegasus, csv.

The documentation here is general. For details on conversion, each module has pod documentation specific to its conversion

As an example

To use to convert between Pine and Eudora as an example, you would do the following

use Mail::Addressbook::Convert::Pine;

use Mail::Addressbook::Convert::Eudora;

my $Pine = new Mail::Addressbook::Convert::Pine();

my $Eudora = new Mail::Addressbook::Convert::Eudora();

my $PineInFile ="pineSample.txt"; # name of the file containing the Pine data

my $raIntermediate = $Pine->scan($PineInFile);

my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook

All modules follow this template except Pegasus. Pegasus stores its address books in multiple files. See the documentation in Pegasus.pm

<<less
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Mail::Addressbook::Convert::Tsv 1.1

Mail::Addressbook::Convert::Tsv 1.1


Mail::Addressbook::Convert::Tsv is a Perl module that can convert to and from Tsv ( Tab Separated )formatted addressbooks. more>>
Mail::Addressbook::Convert::Tsv is a Perl module that can convert to and from Tsv ( Tab Separated )formatted addressbooks.

SYNOPSIS

use strict;
use Mail::Addressbook::Convert::Tsv;
my $TSV = new Mail::Addressbook::Convert::Tsv();
my $TsvInFile ="csvSample.txt"; # name of the file containing the csv data
# Convert Tsv to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $TSV->scan($CsvInFile);
# This will also work
#my @TsvInArray = @arrayContainingTheCsvData;
#my $raIntermediate = $csv->scan(@TsvInArray);
# Convert back to Tsv
my $raTsvOut = $TSV->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raTsvOut;

<<less
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
Mail::Addressbook::Convert::Juno 1.1

Mail::Addressbook::Convert::Juno 1.1


Mail::Addressbook::Convert::Juno can convert from Juno addressbooks. more>>
Mail::Addressbook::Convert::Juno can convert from Juno addressbooks.

SYNOPSIS

use strict;
use Mail::Addressbook::Convert::Juno;
my $Juno = new Mail::Addressbook::Convert::Juno();
my $JunoInFile ="junoSample.nv"; # name of the file containing the Juno data # it is found in the Spry folder
# Convert Juno to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Juno->scan($JunoInFile.nv);
# This will also work
#my @JunoInArray = @arrayContainingTheJunoData;
#my $raIntermediate = $Juno->scan(@JunoInArray);
print join "", @$raIntermediate;

<<less
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
Mail::Addressbook::Convert::Ldif 1.1

Mail::Addressbook::Convert::Ldif 1.1


Mail::Addressbook::Convert::Ldif is a Perl module that can convert to and from Ldif formatted addressbooks. more>>
Mail::Addressbook::Convert::Ldif is a Perl module that can convert to and from Ldif formatted addressbooks.

SYNOPSIS

use strict;
use Mail::Addressbook::Convert::Ldif;
my $LDIF = new Mail::Addressbook::Convert::Ldif();
my $LdifInFile ="ldifSample.txt"; # name of the file containing the Ldif data
# Convert Ldif to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $LDIF->scan($LdifInFile);
# This will also work
#my @LdifInArray = @arrayContainingTheLdifData;
#my $raIntermediate = $LDIF->scan(@LdifInArray);
# Convert back to Ldif
my $raLdifOut = $LDIF->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raLdifOut;

<<less
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Mail::Addressbook::Convert::Pine 1.1

Mail::Addressbook::Convert::Pine 1.1


Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks. more>>
Mail::Addressbook::Convert::Pine is a Perl module that convert to and from Pine formatted addressbooks.

SYNOPSIS

use strict;
use Mail::Addressbook::Convert::Pine;
my $pine = new Mail::Addressbook::Convert::Pine();
my $PineInFile ="pineSample.txt"; # name of the file containing the Ldif data
# Convert Pine to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $pine->scan($PineInFile);
# This will also work
#my @PineInArray = @arrayContainingThePineData;
#my $raIntermediate = $pine->scan(@PineInArray);
# Convert back to Pine
my $raPineOut = $pine->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raPineOut;
REQUIRES ^
Perl, version 5.001 or higher
Carp

This module is meant to be used as part of the Mail::Addressbook::Convert distribution.
It can convert a Pine addressbook to a Standard Intermediate format(STF) and a STF to Pine As part of the larger distribution, it will allow conversion between Pine and many other formats.

To use to convert between Pine and Eudora as an example, you would do the following

use Mail::Addressbook::Convert::Pine;
use Mail::Addressbook::Convert::Eudora;
my $Pine = new Mail::Addressbook::Convert::Pine();
my $Eudora = new Mail::Addressbook::Convert::Eudora();
my $PineInFile ="pineSample.txt"; # name of the file containing the Pine data
my $raIntermediate = $Pine->scan($PineInFile);
my $raEudora = $Eudora->output($raIntermediate); # reference to an array containing a Eudora addressbook

<<less
Download (0.030MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
Mail::Addressbook::Convert::Eudora 1.1

Mail::Addressbook::Convert::Eudora 1.1


Mail::Addressbook::Convert::Eudora is a Perl module that can convert to and from Eudora addressbooks. more>>
Mail::Addressbook::Convert::Eudora is a Perl module that can convert to and from Eudora addressbooks.

SYNOPSIS

use strict;
use Eudora;
my $Eudora = new Eudora();
my $EudoraInFile ="eudoraSample.txt"; # name of the file containing the Eudora data
# Convert Eudora to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Eudora->scan($EudoraInFile);
# This will also work
#my @EudoraInArray = @arrayContainingTheEudoraData;
#my $raIntermediate = $Eudora->scan(@EudoraInArray);
# Convert back to Eudora
my $raEudorafOut = $Eudora->output($raIntermediate);
print join "", @$raIntermediate;
print "nnnn";
print join "", @$raEudorafOut ;

<<less
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1180 downloads
eGroupWare: Enterprise Collaboration 1.4.001

eGroupWare: Enterprise Collaboration 1.4.001


eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs. more>>
eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs.
Main features:
- email
- addressbook
- calendar
- infolog (notes, to-dos, phone calls)
- content management
- forum
- bookmarks
- wiki
Version restrictions:
- EGW does not need to be compiled. EGW is composed only of PHP, HTML and image files
- EGW needs a Database server. MySQL or PostgreSQL or MSSQL preferred. Can be local or remote.
- EGW needs a php4 enabled web server. Apache1.3.x with PHP4.3.x preferred.
- EGW may need an e-mail server. Can be local or remote and IMAP or POP.
- Please read the requirements and install-how-to in the download area.
Enhancements:
- addressbook completly rewritten (Group-addressbooks, Organisation-views, improved LDAP support)
- new fully integrated tracker application used by the project itself since some time
- new imap backend and many improvments for FMail
- Gallery2 port for eGroupWare
- many improvments in nearly all applicatons
<<less
Download (MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
891 downloads
phpwsContacts 0.9.4

phpwsContacts 0.9.4


phpwsContacts provides contact information module for phpWebSite. more>>
phpwsContacts provides contact information module for phpWebSite.

phpwsContacts is a module for the phpWebSite CMS.

It provides extended user contact information, CSV exporting, and vCard exporting/importing.

Suggested uses are for corporate addressbooks or alumni Websites.

<<less
Download (MB)
Added: 2007-01-31 License: GPL (GNU General Public License) Price:
996 downloads
RH Email Server 2.0a

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
<<less
Download (19.44MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1642 downloads
D_store 0.2.20070119

D_store 0.2.20070119


D_store is an in memory database. more>>
D_store is an in memory database. A good mental model for d_store is a programmatic spreadsheet; there are rows and rows contain fields with values.

D_store is mostly row oriented, all stores represent either all the rows in the spreadsheet or a subset thereof (or the empty set). The query powers of d_store come from the set operations you can do with stores, like and, or, sub, etc.

Why D_store ?

D_store is good for storing highly related data and performing queries on that data. It can however only scale to the amount of memory available. But, this fits very well for GUI applications that let users interact with a lot of interrelated data; d_store is ment as an enabler of rich applications like iTunes, or addressbooks, or bookmark managers etc.

D_store supports tagging, full text searching, hierarchies, and almost any relation you can define on your data. The API provides very direct access to the data, unlike, for instance SQL engines, but it still has the query power as SQL.

In d_store, all data is stored as values, but every value is stored only once per store, which is good for memory usage. And this is where the second part of the querying power of d_store comes from: every value knows in which rows it appears.

A last powerful concept that d_store has is that everything operates on stores, and the results sets are always stores. So when you get the results of a query, you can query that result again and again, refining the results further and further.

The project is written in plain C and released under the GPL.
<<less
Download (0.070MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
955 downloads
Infotrope ACAP Server 0.2.1

Infotrope ACAP Server 0.2.1


Infotrope ACAP Server provides an RFC2244-conformant ACAP server. more>>
Infotrope ACAP Server provides an RFC2244-conformant ACAP server.
The Infotrope ACAP Server is an implementation of RFC2244, complete with asynchronous notification of changes, stored search results, ACLs, and data inheritance, etc. It supports TLS and SASL encryption as well as the entire base standard, plus a few optional extensions.
ACAP allows applications to store configuration data in a way that is standard, fully interoperable, and easily managed by users, administrators, and technical support teams alike.
Infotropes key features include the ability to randomly crash the server without data loss, and backing up of data (even while its being written) without losing integrity.
Main features:
- Its got the finest grained ACLs available anywhere!
- Its got data inheritance, AKA stacking, for all your configuration management and prepopulation needs!
- Itll do personal addressbooks, bookmarks, and all in client-independent ways!
- Its got notifications with filters, and schemaless searching!
- Fully namespaced, so no chance of clients clobbering each other!
- Yes, welcome to the power and technology of, erm, 1997.
<<less
Download (0.19MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
966 downloads
Turba H3 2.1.4

Turba H3 2.1.4


Turba is the Horde contact management application. more>>
Turba is a production level address book, and makes heavy use of the Horde framework to provide integration with IMP and other Horde applications. Turba is the Horde contact management application.
Turba is a complete basic contact management application. SQL, LDAP, IMSP, Kolab, and Horde Preferences backends are available and are well tested. You can define the fields in your address books in a very flexible way, just by changing the config files.
You can import/export from/to Pine, Mulberry, CSV, TSV, and vCard contacts. You can create distribution lists from your addressbooks, which are handled transparently by IMP and other Horde applications. And there are Horde API functions to add and search for contacts.
Additional backends are easy to add - all you need to do is to implement a Turba_Driver subclass that implements a few simple methods and talks to your storage method of choice.
Enhancements:
- vCard support was improved.
- The Catalan, Finnish, German, Portuguese, and Traditional Chinese translations were updated.
- Small bugfixes and improvements were made.
<<less
Download (1.3MB)
Added: 2007-03-15 License: The Apache License Price:
954 downloads
libral 0.9.6

libral 0.9.6


Libral is the rubrica engine. more>>
Libral is the rubrica engine. libral library allows you create your addressbooks and to add personal and company cards to them.

Data managed in personal card are: personal data (name, surname, address, etc.), Web links, email addresses, irc uris, telephone numbers, job information (company where contact works, his manager, his collaborator,...), notes.

In company card you can manage Web links, email addresses, telephone numbers, notes. XML is used to store data. Libral can import addressbooks from GnomeCard, Kaddressbook, VCard, Evolution, CSV.

<<less
Download (0.52MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
XCmail 2.2

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
<<less
Download (0.77MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1235 downloads
MultiSync 0.82

MultiSync 0.82


MultiSync is a free modular program to synchronize calendars, addressbooks and other PIM data between programs. more>>
MultiSync is a free modular program to synchronize calendars, addressbooks and other PIM data between programs on your computer and other computers, mobile devices, PDAs or cell phones. MultiSync works on any Gnome platform, such as Linux.
Currently MultiSync has plugins for
- Ximian Evolution synchronization, supporting calendar, ToDos and contacts. Multisync also support Evolution 2
- IrMC Mobile Client synchronization (supported by e.g. SonyEricsson T68i/T610/Z600, Siemens S55 phones etc.) via Bluetooth or IR on Linux, or cable connection.
- Windows CE / Pocket PC synchronization. This plugin is part of the SynCE project, and can be downloaded there.
- Opie and Zaurus synchronization.
- SyncML support (supported by e.g. SonyEricsson P800/P900 and many other phones and devices, for example the SyncML server Sync4j). SyncML also allows you to do remote connection of two MultiSync programs via an encrypted connection over the net.
- Palm synchronization.
- LDAP synchronization.
- Backup of your PIM data.
<<less
Download (0.073MB)
Added: 2005-09-05 License: GPL (GNU General Public License) Price:
1513 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2