blob: da31e54820755bdf595036894a0ae874f26d6fdf (
plain)
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
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1.1.1 2002/10/27 16:08:52 chris Exp $
case ${STAGE} in
POST-INSTALL)
${CAT} << EOF
===========================================================================
Please also refer to:
${PKG_PREFIX}/share/doc/html/cyrus-imapd/install.html
for more detailed instructions on setting up the environment before
starting the Cyrus IMAP server. In particular, several services will
probably need to be added to /etc/services.
Note anyone upgrading from an earlier version of cyrus should read:
${PKG_PREFIX}/share/doc/html/cyrus-imapd/install-upgrade.html
Also note that cyrus-imapd now uses saslauthd rather then pwcheck by
default.
===========================================================================
EOF
;;
esac
|