.
--other than a refresh/reload of the server-manager page, I don't know off-hand how to get 'contacts' to appear
--I do know that FormMagic has been updated from the version provided on the CD (check the UPDATES directory shown in the script below)
--I tested to ensure that smeserver-ldap-contacts-0.3.1-01hm cleanly installs and uninstalls with SME 6.0.1-01
--I got it to work with a Mitel supported SME 6.0 server but not cleanly (meaning additional steps are required after the scripts are run--if your production server is one on those, reread the RELEASE_NOTES)
--the uninstall script (below) will restore packages to the versions installed with a 'prestine' 6.0.0-01 server
--however, I notice from the error messages listed above that...
e-smith-imp-1.10.0-02
...has been superceded on your server by
e-smith-imp-1.10.0-04dm
...probably from a package by Darrel May
--therefore you should probably edit the uninstall script (below) to restore the e-smith-imp-1.10.0-04dm package
--even if the refresh/reload worked and smeserver-ldap-contacts installed cleanly, you would need to reconcile the changes in the version of the files...
/etc/e-smith/events/actions/conf-imp
/etc/e-smith/templates/home/httpd/html/horde/imp/config/prefs.php/410addressbook
...provided in
smeserver-ldap-contacts-0.3.1-01hm
...with the versions of those files provided in...
e-smith-imp-1.10.0-04dm
...in order to get the desired functionality from both packages
--its a good thing that you first tried to manually install the RPM, because you got the above error messages telling which files would be over-written with the --force option in my install script
--the unistall scripts attempts to restore the over-written files, but it assumes a prestine 6.0.1-01 installation (at least regarding the smeserver-ldap-contacts relevant packages)
--in the case of non-prestine installations, the uninstall script needs to edited to account for other add-ons
--even though this situation is explained in the RELEASE_NOTES, its probably a good idea for the next version of my install script to a) explicitly list the about-to-be-over-written files, to b) required an explicit acknowledgement from the sysadmin, and to c) backup those files somewhere
--I hope the above tips are helpful in getting your production server to work the way you need
==============================================================
smeserver-ldap-contacts-0.3.1-02hm.uninstall.sh
==============================================================
#!/bin/bash
HMUHAMMAD='
http://mirror.contribs.org/smeserver/contribs/hmuhammad/'
RELEASES601='
http://mirror.contribs.org/smeserver/releases/6.0.1/os/e-smith/RPMS/'
UPDATES60='
http://mirror.contribs.org/smeserver/releases/6.0.1/updates-common/i386/'
echo
rpm -e smeserver-ldap-contacts
echo
rpm -Uvh --force ${RELEASES601}imp-3.2.1-2es01.noarch.rpm
rpm -Uvh --force ${RELEASES601}turba-1.2-1es00.noarch.rpm
rpm -Uvh --force ${RELEASES601}e-smith-imp-1.10.0-02.noarch.rpm
rpm -Uvh --force ${UPDATES60}e-smith-turba-1.4.0-01.noarch.rpm
rpm -Uvh --force ${RELEASES601}e-smith-ldap-4.10.0-03.noarch.rpm
echo
echo -e "About to run the following command, please wait until it completes..."
echo
echo -e "\t/sbin/e-smith/signal-event bootstrap-console-save"
/sbin/e-smith/signal-event bootstrap-console-save
echo
echo Completed.
exit 0
==============================================================