summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd/DEINSTALL
blob: f449695f9dae4f28cf0fae08419db91ee23eb128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2001/11/01 00:59:46 zuntum Exp $
#

PKGNAME=$1
STAGE=$2

AWK="@AWK@"
CAT="@CAT@"
RM="@RM@"

IMAPDCONF=/etc/imapd.conf

case ${STAGE} in
DEINSTALL)
	;;

POST-DEINSTALL)
	existing_dirs=''
	if [ -f ${IMAPDCONF} ]
	then
		imap_dirs=`\
			${AWK} '/configdirectory:/      { print $2 }; \
				/partition-.*:/         { print $2 }; \
				/sievedir:/             { print $2 }' \
				${IMAPDCONF}`
		for dir in ${imap_dirs}
		do
			if [ -d ${dir} ]
			then
				existing_dirs="${existing_dirs} ${dir}"
			fi
		done
	fi

	${CAT} << EOF
===========================================================================
If you won't be using ${PKGNAME} any longer, you may want
to remove:

  * the following files:

	${IMAPDCONF}
EOF
	if [ -n "${existing_dirs}" ]
	then
		${CAT} << EOF

  * the following directories:

EOF
		for dir in ${existing_dirs}
		do
			echo "	${dir}"
		done
	fi
		${CAT} << EOF
===========================================================================
EOF
        ;;

*)
	echo "Unexpected argument: ${STAGE}"
	exit 1
	;;
esac
exit 0