17 lines
434 B
Text
17 lines
434 B
Text
#!/bin/sh
|
|
#
|
|
# $NetBSD: INSTALL,v 1.2 2001/11/24 20:49:42 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
${CAT} << EOF
|
|
===========================================================================
|
|
Please also refer to:
|
|
|
|
${PKG_PREFIX}/share/doc/html/cyrus-imapd/install.html
|
|
|
|
to set up the necessary directories before starting the Cyrus IMAP server.
|
|
===========================================================================
|
|
EOF
|
|
;;
|
|
esac
|