2002-02-10 08:23:04 +01:00
|
|
|
#!/bin/sh
|
2004-01-03 12:26:54 +01:00
|
|
|
if [ "$2" != "DEINSTALL" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2005-05-13 17:15:31 +02:00
|
|
|
for x in addressbooks/global calendar.book; do
|
|
|
|
if [ ! -s "${PKG_PREFIX}/www/cgi-bin/openwebmail/etc/${x}" ]; then
|
|
|
|
rm ${PKG_PREFIX}/www/cgi-bin/openwebmail/etc/${x}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2002-02-10 08:23:04 +01:00
|
|
|
rm -fr ${PKG_PREFIX}/www/cgi-bin/openwebmail/etc/sessions/*
|