1998-01-05 19:11:14 +00:00
|
|
|
#!/bin/sh
|
1997-08-04 06:51:46 +00:00
|
|
|
|
|
|
|
case "$2" in
|
|
|
|
""|POST-INSTALL) cat <<EOF
|
|
|
|
=============================================================
|
|
|
|
|
|
|
|
Some files you might need to customize include the following:
|
|
|
|
|
1999-02-23 03:17:12 +00:00
|
|
|
${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).
|
1997-08-04 06:51:46 +00:00
|
|
|
|
|
|
|
=============================================================
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
esac
|