#!/bin/sh case "$2" in ""|POST-INSTALL) echo "Changing ${PKG_PREFIX}/bin/inc to group 'mail'" chgrp mail ${PKG_PREFIX}/bin/inc echo "Enabling setgid for ${PKG_PREFIX}/bin/inc" chmod g+s ${PKG_PREFIX}/bin/inc for file in ${PKG_PREFIX}/etc/nmh/*-dist ; do b=`basename $file -dist` if [ \! -f ${PKG_PREFIX}/etc/nmh/$b ] ; then cp $file ${PKG_PREFIX}/etc/nmh/$b chmod u+w ${PKG_PREFIX}/etc/nmh/$b fi done cat <<EOF ============================================================= Some files you might need to customize include the following: ${PKG_PREFIX}/etc/nmh/mhn.defaults - For example, you may want to adjust the programs used to handle various MIME content types. ${PKG_PREFIX}/etc/nmh/mts.conf - For example, you may need to adjust the "servers" setting if you don't have a locally installed sendmail (or other MTA). ============================================================= EOF ;; esac