exim and custombuild 1.2

mmgenius

Verified User
Joined
Jan 20, 2004
Messages
180
You can update exim with custombuild 1.2.

But is there a reason why you don't put it in ./build versions (and ./build update_versions)?
I added this to the function doVersions and it worked.
Code:
        if [ "${EXIM_OPT}" = "yes" ]; then
                if [ -e /usr/sbin/exim ]; then
                        EXIMV="`/usr/sbin/exim -bV | grep built | awk '{ print $3 }'`"
                        if [ "${VERSIONS}" = "1" ]; then
				echo "Latest version of Exim: ${EXIM_VER}"
                                echo "Installed version of Exim: ${EXIMV}"
                                echo ""
                        fi
			if [ "${EXIM_VER}" != "${EXIMV}" ]; then
				if [ "${VERSIONS}" = "0" ]; then
					echo "${boldon}Updating Exim${boldoff}"
					doExim
				elif [ "${VERSIONS}" = "1" ]; then
					echo "${boldon}Exim ${EXIMV} to ${EXIM_VER} update is available.${boldoff}"
					echo ""
				fi
			fi
                fi
        fi

Thanx,
Maarten
 
Back
Top