359be7f3c4
+ Add an INSTALL script that detects the presence of the old sqwebmail state directory and that informs the admin to move it to the new location. + Install some more of the HTML documentation in the location expected by courier-mta. * Complete re-implementation of the LDAP addressbook. * Increase the maximum size of the CGI environment to avoid certain classes of browser/website problems.
22 lines
594 B
Text
22 lines
594 B
Text
# $NetBSD: INSTALL,v 1.3 2006/04/28 18:16:25 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if ${TEST} -d "@VARBASE@/sqwebmail"; then
|
|
${CAT} << EOF
|
|
===========================================================================
|
|
|
|
If you are upgrading SqWebMail from a previous version, please note
|
|
that the Courier directory for keeping local state has moved. In
|
|
order to preserve your existing users' calendar information, you will
|
|
need to move:
|
|
|
|
@VARBASE@/sqwebmail
|
|
to
|
|
@SQWEBMAIL_STATEDIR@/sqwebmail
|
|
|
|
===========================================================================
|
|
EOF
|
|
fi
|
|
;;
|
|
esac
|