mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
dc2053998b
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>
21 lines
226 B
Bash
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
|