ee6f2a419f
Teapop is an RFC1939 and RFC2449 compliant POP3-server, which is quickly gaining world-wide recognition. With its' flexible virtual domain support, Teapop distinguishes itself from other POP3-servers. The possibility to authenticate users in several different ways, for example PostgreSQL-databases and Apache htpasswd files, lets Teapop adapt itself to Your setup, rather than the other way around as with traditional POP3-servers. Maintainer Lurene Grenier <lurene@daemonkitty.net>
26 lines
601 B
Bash
26 lines
601 B
Bash
#!/bin/sh
|
|
# $OpenBSD: DEINSTALL,v 1.1.1.1 2002/06/08 05:58:24 pvalchev Exp $
|
|
#
|
|
# teapop de-installation
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
CONFIG_FILE=${SYSCONFDIR}/teapop.passwd
|
|
|
|
if [ -f $CONFIG_FILE ]; then
|
|
echo
|
|
echo "+---------------"
|
|
echo "| To completely deinstall the $1 package you need to perform"
|
|
echo "| this step as root:"
|
|
echo "|"
|
|
echo "| rm -f $CONFIG_FILE"
|
|
echo "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
fi
|
|
|
|
exit 0
|