From 1dbbe46ed053db8e40d59ca1a2950378982d92a6 Mon Sep 17 00:00:00 2001 From: octo Date: Sun, 24 Apr 2005 22:52:43 +0000 Subject: [PATCH] A first, short, incomplete ReadMe has been added Tried to use FindBin with mutt-licom, but it doesn't work with setgid, apparently.. --- ReadMe | 42 ++++++++++++++++++++++++++++++++++++++++++ mutt-licom.pl | 4 +++- 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 ReadMe diff --git a/ReadMe b/ReadMe new file mode 100644 index 0000000..6b7f546 --- /dev/null +++ b/ReadMe @@ -0,0 +1,42 @@ + Lightweight Contact Manager - LiCoM +-===================================- + +LiCoM is a contact manager I started writing because my family, my friends and +myself were not very comfortable with the many existing address book scripts. +The demands were: +- High compatibility with existing e-mail readers +- Read and write operations +- Export to vCards +- Print lists of groups and/or all contacts +- Multi-user capable + +These requirements are tried to be met with the following approach: +- Data is kept in an LDAP database (the overall layout is shown in "The big + picture") +- The LDAP-server is accessed through perl modules which prodide a high-level + interface to the database. +- On top of these modules a CGI-script has been written. + + + +The big picture +--------------- + +[dc=org] + | + `->[dc=verplant] + | + `->[ou=addresses] + | + +->[cn=Forster Florian] + | | + | +->[cn=Test Person] + | +->[cn=Someone Else] + | : ... + | `->[cn=Last Person] + | + +->[cn=Another User] + | | + | +->[cn=Still More Entries] + : : + diff --git a/mutt-licom.pl b/mutt-licom.pl index 07e669c..c4d5750 100755 --- a/mutt-licom.pl +++ b/mutt-licom.pl @@ -2,7 +2,9 @@ use strict; use warnings; -use lib (qw(lib)); + +use FindBin (qw($Bin)); +use lib ("$Bin/lib"); use LiCoM::Config (qw(get_config)); use LiCoM::Person; -- 2.11.0