forked from Lainports/freebsd-ports
CSS2 standards. This webmail is an IMAP client and it has support for mysql, postgresql and sqlite database. Although it is a development version, it is working quite well.
18 lines
335 B
Bash
18 lines
335 B
Bash
#! /bin/sh
|
|
|
|
case $2 in
|
|
|
|
POST-INSTALL)
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${RCUBEROOT}/
|
|
chown -R ${WWWOWN}:${WWWGRP} ${RCUBEROOT}/logs
|
|
chown -R ${WWWOWN}:${WWWGRP} ${RCUBEROOT}/temp
|
|
for i in ${RCUBEROOT}/config/db.inc.php ${RCUBEROOT}/config/main.inc.php; do
|
|
[ -f ${i} ] || cp ${i}.sample ${i}
|
|
done
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|