blob: bdfd8232f7524d12317274585b77e45800751495 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/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/*.default ; do
b=`basename $file .default`
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
|