addressbook
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 52
PHP iAddressbook 0.98
PHP iAddressBook is an Web-based address book. more>>
PHP iAddressBook is an address book for a single user that aims at 100% compatibility with the AddressBook application in Mac OS X.
PHP iAddressbook provides a very intuitive interface and a powerful search function similar to that found in Apples AddressBook. You can import and export your contacts using the vCard format.
The Import/Export functions work completely transparent meaning that all data entered in the addressbook is exported to the vCard and can be imported again.
Main features:
- contact fields (99.8%) identical to AddressBook.app in Mac OS X (click here for details)
- add/edit/view contacts
- search/filter contacts
- template support
- multilanguage support
- transparent vCard import/export
- supports photos in contacts
- uses ADOdb Database Abstraction Library to access MySQL, PostgreSQL and others
Enhancements:
- This release adds Skype support, advanced access controls, an alphabet to quickly filter contacts that begin with the same letter, custom labels for phone numbers, email messages, URLs, related names, and instant messaging handles, an option to change the image format in vCard exports, and support for phonetic firstname/lastname (for Japanese users).
- It improves importation of non-RFC-compliant vCards.
- The contact list can now be divided into several subpages.
- The search function now supports multiple keywords.
<<lessPHP iAddressbook provides a very intuitive interface and a powerful search function similar to that found in Apples AddressBook. You can import and export your contacts using the vCard format.
The Import/Export functions work completely transparent meaning that all data entered in the addressbook is exported to the vCard and can be imported again.
Main features:
- contact fields (99.8%) identical to AddressBook.app in Mac OS X (click here for details)
- add/edit/view contacts
- search/filter contacts
- template support
- multilanguage support
- transparent vCard import/export
- supports photos in contacts
- uses ADOdb Database Abstraction Library to access MySQL, PostgreSQL and others
Enhancements:
- This release adds Skype support, advanced access controls, an alphabet to quickly filter contacts that begin with the same letter, custom labels for phone numbers, email messages, URLs, related names, and instant messaging handles, an option to change the image format in vCard exports, and support for phonetic firstname/lastname (for Japanese users).
- It improves importation of non-RFC-compliant vCards.
- The contact list can now be divided into several subpages.
- The search function now supports multiple keywords.
Download (0.22MB)
Added: 2007-01-12 License: GPL (GNU General Public License) Price:
1015 downloads
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
<<lessSYNOPSIS
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
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
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;
<<lessSYNOPSIS
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;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
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;
<<lessSYNOPSIS
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;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1179 downloads
Mail::Addressbook::Convert::Spry 1.1
Mail::Addressbook::Convert::Spry is a Perl module from Spry Mail Addressbook. more>>
Mail::Addressbook::Convert::Spry is a Perl module from Spry Mail Addressbook.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Spry;
my $SPRY = new Mail::Addressbook::Convert::Spry();
my $SpryInFile ="spry.als"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Spry to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $SPRY->scan($SpryInFile);
# This will also work
#my @SpryInArray = @arrayContainingTheSpryData;
#my $raIntermediate = $SPRY->scan(@SpryInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Spry;
my $SPRY = new Mail::Addressbook::Convert::Spry();
my $SpryInFile ="spry.als"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Spry to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $SPRY->scan($SpryInFile);
# This will also work
#my @SpryInArray = @arrayContainingTheSpryData;
#my $raIntermediate = $SPRY->scan(@SpryInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-08 License: Perl Artistic License Price:
1172 downloads
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;
<<lessSYNOPSIS
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;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
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
<<lessSYNOPSIS
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
Download (0.030MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
Mail::Addressbook::Convert::Mailrc 1.1
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook. more>>
Mail::Addressbook::Convert::Mailrc is a Perl module from Unix Mailrc Addressbook.
SYNOPSIS
use strict;
use Mail::Addressbook::Convert::Mailrc;
my $Mailrc = new Mail::Addressbook::Convert::Mailrc();
my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Mailrc to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Mailrc->scan($MailrcInFile);
# This will also work
#my @MailrcInArray = @arrayContainingTheMailrcData;
#my $raIntermediate = $Mailrc->scan(@MailrcInArray);
print join "", @$raIntermediate;
<<lessSYNOPSIS
use strict;
use Mail::Addressbook::Convert::Mailrc;
my $Mailrc = new Mail::Addressbook::Convert::Mailrc();
my $MailrcInFile ="mailrc"; # name of the file containing the Spry data # it is found in the Spry folder
# Convert Mailrc to Standard Intermediate format
# see documentation for details on format.
my $raIntermediate = $Mailrc->scan($MailrcInFile);
# This will also work
#my @MailrcInArray = @arrayContainingTheMailrcData;
#my $raIntermediate = $Mailrc->scan(@MailrcInArray);
print join "", @$raIntermediate;
Download (0.030MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 downloads
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 ;
<<lessSYNOPSIS
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 ;
Download (0.030MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1180 downloads
Mail::Addressbook::Convert::Utilities 1.1
Mail::Addressbook::Convert::Utilities is a Perl module for addressbook conversion. more>>
Mail::Addressbook::Convert::Utilities is a Perl module for addressbook conversion.
SYNOPSIS
This module is not designed to be used by the user.
It provides utility methods with for Mail::Addressbook::Convert
<<lessSYNOPSIS
This module is not designed to be used by the user.
It provides utility methods with for Mail::Addressbook::Convert
Download (0.030MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1163 downloads
KAddressBook to iPod Synchronisation 1.0
KAddressBook to iPod Synchronisation lets you synchronise your KAddressBook to your iPod by executing this simple script. more>>
KAddressBook to iPod Synchronisation lets you synchronise your KAddressBook to your iPod by executing this simple script.
The script makes a few modifications to the addressbook file to make it readable by the iPod.
Amarok recently released the ability to synchonise music to your iPod, so I was finally able to stop using iTunes to transfer my songs. However I was still stuck using the Mac to sync my addressbook.
Well not anymore, after some quick poking around, and a simple script, I am now able to transfer my complete KDE addressbook (including photo), with a simple command line.
Just mount the ipod, and execute the script, passing the ipod’s root directory as a parameter. That’s it! The script loads your KDE addressbook, makes a few simple modifications the iPod requires, and copies it across.
<<lessThe script makes a few modifications to the addressbook file to make it readable by the iPod.
Amarok recently released the ability to synchonise music to your iPod, so I was finally able to stop using iTunes to transfer my songs. However I was still stuck using the Mac to sync my addressbook.
Well not anymore, after some quick poking around, and a simple script, I am now able to transfer my complete KDE addressbook (including photo), with a simple command line.
Just mount the ipod, and execute the script, passing the ipod’s root directory as a parameter. That’s it! The script loads your KDE addressbook, makes a few simple modifications the iPod requires, and copies it across.
Download (0.004MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1168 downloads
Convert::Addressbook::Mozilla2Blackberry 0.0.1
Convert::Addressbook::Mozilla2Blackberry is a Perl extension for converting a CSV comma delimited addressbook from Mozilla. more>>
Convert::Addressbook::Mozilla2Blackberry is a Perl extension for converting a CSV comma delimited addressbook from Mozilla to Blackbery csv import format.
SYNOPSIS
use Mozilla::Mork;
use Convert::Addressbook::Mozilla2Blackberry;
#get the file from the command line or quit with an error
$file = $ARGV[0];
unless ($file) { die "Useage: $0 n"; }
#access the address book and setup the memory structure
my $MorkDetails = Mozilla::Mork->new($file);
#get a reference to an array of hashs
my $results = $MorkDetails->ReturnReferenceStructure();
#create an instance of the converter code
my $converter = Convert::Addressbook::Mozilla2Blackberry->new();
#print the Blackberry File headers
$converter->PrintBlackberryHeaders();
#process those results
# for each line in the database
# each line in the database corresponds to an address book record
# pass this reference to the StreamConvert routine which will
# convert and print it
for my $record_array ( @{$results} )
{
$converter->StreamConvert($record_array);
}
This is a module that builds on the Mozilla::Mork module to translate the Mozilla address book to a CSV format suitable for importing into a Blackberry via the Desktop Manager (i.e. even the CSv fields are in the correct order).
<<lessSYNOPSIS
use Mozilla::Mork;
use Convert::Addressbook::Mozilla2Blackberry;
#get the file from the command line or quit with an error
$file = $ARGV[0];
unless ($file) { die "Useage: $0 n"; }
#access the address book and setup the memory structure
my $MorkDetails = Mozilla::Mork->new($file);
#get a reference to an array of hashs
my $results = $MorkDetails->ReturnReferenceStructure();
#create an instance of the converter code
my $converter = Convert::Addressbook::Mozilla2Blackberry->new();
#print the Blackberry File headers
$converter->PrintBlackberryHeaders();
#process those results
# for each line in the database
# each line in the database corresponds to an address book record
# pass this reference to the StreamConvert routine which will
# convert and print it
for my $record_array ( @{$results} )
{
$converter->StreamConvert($record_array);
}
This is a module that builds on the Mozilla::Mork module to translate the Mozilla address book to a CSV format suitable for importing into a Blackberry via the Desktop Manager (i.e. even the CSv fields are in the correct order).
Download (0.006MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1178 downloads
KSMS-Tool 1.0
KSMS-Tool is a tool for sending SMS via your mobile phone. more>>
KSMS-Tool is a tool for sending SMS via your mobile phone. In principle, every modern mobile phone should be supported; these have been explicitely tested so far:
- Siemens S55
- Sony-Ericsson K700i
The connection to the mobile phone is established via the serial interface. In principle, every serial emulation (e.g. via USB, IrDA, Bluetooth) should also work if an error-free connection is guaranteed (especially in the wireless cases IrDA resp. Bluetooth).
Details on choosing a non-default connection to the mobile phone or on how to populate the user-defined addressbook can be found on the KSMS-Tool homepage.
<<less- Siemens S55
- Sony-Ericsson K700i
The connection to the mobile phone is established via the serial interface. In principle, every serial emulation (e.g. via USB, IrDA, Bluetooth) should also work if an error-free connection is guaranteed (especially in the wireless cases IrDA resp. Bluetooth).
Details on choosing a non-default connection to the mobile phone or on how to populate the user-defined addressbook can be found on the KSMS-Tool homepage.
Download (0.030MB)
Added: 2006-06-05 License: GPL (GNU General Public License) Price:
1239 downloads
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
<<lessMain features:
- 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
Download (MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
891 downloads
Other version of eGroupWare: Enterprise Collaboration
License:GPL (GNU General Public License)
imsptool 0.98
Imsptool is a command line tool to communicate with an IMSP server. more>>
Imsptool is a command line tool to communicate with an IMSP server. It allows you to create, delete, import, and export address books.
imsptool imports and exports using the LDIF format. Netscape Messenger and LDAP directory servers such as OpenLDAP use this file format directly.
IMSP is an internet protocol designed to complement IMAP. It stores additional mail user agent configuration information, including address books. IMSP is supported by very few mailers (Simeon by Esys Corp. and Mulberry are two I know of) and is considered obsolete. The ACAP protocol was designed to replace IMSP, but caught on yet.
X.500/LDAP is becoming the standard way to store large e-mail directories.
imsptool was developed to provide an easy way to use IMSP address books in Netscape Messenger. Additionally, it can be used to migrate IMSP address books to LDAP directories.
imsptool has been compiled and tested on Linux 2.2 and Solaris 2.7. It has been tested and works with the Cyrus IMSP server version 1.5a6.
Enhancements:
- imsptool.c: fixed buggy read_literal again, implemented mailing lists on import addressbook, implemented rename command
<<lessimsptool imports and exports using the LDIF format. Netscape Messenger and LDAP directory servers such as OpenLDAP use this file format directly.
IMSP is an internet protocol designed to complement IMAP. It stores additional mail user agent configuration information, including address books. IMSP is supported by very few mailers (Simeon by Esys Corp. and Mulberry are two I know of) and is considered obsolete. The ACAP protocol was designed to replace IMSP, but caught on yet.
X.500/LDAP is becoming the standard way to store large e-mail directories.
imsptool was developed to provide an easy way to use IMSP address books in Netscape Messenger. Additionally, it can be used to migrate IMSP address books to LDAP directories.
imsptool has been compiled and tested on Linux 2.2 and Solaris 2.7. It has been tested and works with the Cyrus IMSP server version 1.5a6.
Enhancements:
- imsptool.c: fixed buggy read_literal again, implemented mailing lists on import addressbook, implemented rename command
Download (0.019MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1211 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 addressbook 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