Edit

IABSD.fr/ports/mail/fetchmail/files

Branch :

  • Show log

    Commit

  • Author : sthen
    Date : 2020-02-15 15:55:51
    Hash : 894d97f3
    Message : update to fetchmail-6.4.2

  • fetchmailconf
  • #!/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 ${MODPY_BIN} -a -d ${MODPY_LIBDIR}/tkinter -a -d ${MODPY_LIBDIR}/site-packages/future ]; then
    	exec ${PREFIX}/libexec/fetchmailconf.bin
    else
    	cat <<EOF
    Please install the python3, python-tkinter and py3-future packages, then try
    running fetchmailconf again.
    EOF
    	exit 1
    fi