mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
c03786b7ad
PR: ports/10119 Reviewed by: jkoshy Submitted by: Scott Blachowicz <sab@seanet.com>
21 lines
580 B
Bash
21 lines
580 B
Bash
#!/bin/sh
|
|
|
|
case "$2" in
|
|
""|POST-INSTALL) 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
|