diff options
author | hubertf <hubertf@pkgsrc.org> | 1998-09-27 23:21:56 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1998-09-27 23:21:56 +0000 |
commit | a48fd6c8ee0a6e7f0702952ec7cb84e1af33f3b9 (patch) | |
tree | 7a2b3bbe57112fc1ea1690e576348337ff2a110f /mail/imap-uw | |
parent | a87ad3b8523507c63672e3410477676dba93e4ea (diff) | |
download | pkgsrc-a48fd6c8ee0a6e7f0702952ec7cb84e1af33f3b9.tar.gz |
Add post installation note on what to add in /etc/services and
/etc/inetd.conf. Reported by Udo Steinegger <udo@noc.franken.de>
Diffstat (limited to 'mail/imap-uw')
-rw-r--r-- | mail/imap-uw/Makefile | 5 | ||||
-rw-r--r-- | mail/imap-uw/pkg/MESSAGE | 15 |
2 files changed, 19 insertions, 1 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 60021e6edf5..2ad9d578ec8 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 1998/08/20 15:17:09 tsarna Exp $ +# $NetBSD: Makefile,v 1.6 1998/09/27 23:21:56 hubertf Exp $ # DISTNAME= imap-4.2 @@ -16,9 +16,12 @@ INST_PROG= ${LIBTOOL} ${INSTALL_PROGRAM} INST_LIB= ${LIBTOOL} ${INSTALL_DATA} CONFLICTS= imap-uw-4.1 +MESSAGE_FILE= ${WRKDIR}/.MESSAGE + do-configure: @${SED} -e 's|@PREFIX@|${PREFIX}|' ${WRKSRC}/src/imapd/imapd.8c >${WRKSRC}/imapd.8 @${SED} -e 's|@PREFIX@|${PREFIX}|' ${WRKSRC}/src/ipopd/ipopd.8c >${WRKSRC}/ipopd.8 + @${SED} -e 's|@PREFIX@|${PREFIX}|' ${PKGDIR}/MESSAGE >${MESSAGE_FILE} do-build: cd ${WRKSRC} && ${MAKE} neb PREFIX=${PREFIX} CC="${LIBTOOL} ${CC}" diff --git a/mail/imap-uw/pkg/MESSAGE b/mail/imap-uw/pkg/MESSAGE new file mode 100644 index 00000000000..13da5472988 --- /dev/null +++ b/mail/imap-uw/pkg/MESSAGE @@ -0,0 +1,15 @@ +=========================================================================== + +Add the following to /etc/services: + imap2 143/tcp # Interim Mail Access Proto v2 + imap2 143/udp + +Add the following to /etc/inetd.conf: + imap2 stream tcp nowait root @PREFIX@/bin/imapd imapd + pop2 stream tcp nowait root @PREFIX@/bin/pop2d pop2d + pop3 stream tcp nowait root @PREFIX@/bin/pop3d pop3d + +To put the changes into effect, reboot the machine or "kill -HUP" +your identd. + +=========================================================================== |