#!/bin/sh
#
# Wrapper for the real fetchmailconf. Checks whether Python is installed,
# and runs the real fetchmailconf or alerts the user, as appropriate.
#

if [ -x /usr/local/bin/python2.7 -a -d /usr/local/lib/python2.7/lib-tk ]; then
	exec /usr/local/libexec/fetchmailconf.bin
else
	cat <<EOF
Please install the python and python-tkinter packages, then try running
fetchmailconf again.
EOF
	exit 1
fi
