freebsd-ports/mail/qpopper/scripts/pre-install
Alexander Langer 84e177390e Use a "q"-prefix everywhere, to avoid conflicts with the popper
and popper3 ports.

The manpages are patched accordingly.

Pointed out by:		sobomax
2000-07-19 07:31:26 +00:00

16 lines
433 B
Bash

#!/bin/sh
if ! id -u pop > /dev/null 2>&1; then
echo "You need an account \"pop\" to install this package."
echo "Please add it by hand (try \"man vipw\") and try again."
echo ""
echo "An example passwd entry is:"
echo "pop:*:68:6::0:0:Post Office Owner:/nonexistent:/nonexistent"
echo ""
exit 1
fi
usrdir=${PREFIX}/etc/qpopper
if [ ! -d $usrdir ]; then
mkdir -p $usrdir
fi
chown pop.daemon $usrdir
chmod 700 $usrdir