1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/mail/pop3vscan/pkg-install
2014-09-24 20:09:49 +00:00

16 lines
249 B
Bash

#!/bin/sh
case $2 in
POST-INSTALL)
user=pop3vscan
group=mail
spooldir=/var/spool/pop3vscan
echo "Fixing ownerships and modes in \"${spooldir}\"."
chown -R ${user}:${group} ${spooldir}
chmod -R go= ${spooldir}
;;
esac