It's possible to install zimbra network edition on debian lenny
You have to downgrade perl before installation and modify util/utilfunc.sh
Code:
if [ $PLATFORM = "DEBIAN5" ]; then
PREREQ_PACKAGES="sudo libidn11 libpcre3 libgmp3c2 libexpat1 libstdc++6 libstdc++5"
PRESUG_PACKAGES="perl-5.8.0 sysstat"
fi must be
Code:
if [ $PLATFORM = "DEBIAN5" ]; then
PREREQ_PACKAGES="sudo libidn11 libpcre3 libgmp3c2 libexpat1 libstdc++6 libstdc++5"
PRESUG_PACKAGES="perl-5.08.0 sysstat"
fi for amd64 you have to do the same thing
