freebsd-ports/mail/roundcube/pkg-install
Florent Thoumie 3b117d5dc8 - Add Roundcube 0.1-20051007, a webmail written in PHP, following XHTML and
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.
2005-10-21 18:16:17 +00:00

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