1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-07 22:58:11 +00:00
freebsd-ports/mail/popa3d/pkg-deinstall
Chris D. Faulhaber dc2053998b popa3d is a POP3 server with the following goals:
1. Security (to the extent that is possible with POP3 at all, of course).
2. Reliability (again, as limited by the mailbox format and the protocol).
3. RFC compliance (slightly relaxed to work with real-world POP3 clients).
4. Performance (limited by the more important goals, above).

PR:		16652
Submitted by:	Sergey Samoyloff <techline@hotmail.ru>
2000-02-19 13:21:54 +00:00

21 lines
226 B
Bash

#!/bin/sh
USER=popa3d
GROUP=popa3d
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
pw groupdel $GROUP
pw userdel $USER
;;
*)
echo "usage: $0 <pkg-name>
{DEINSTALL|POST-DEINSTALL}"
exit 64
esac
exit 0