diff options
author | jmmv <jmmv> | 2003-09-16 19:16:44 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2003-09-16 19:16:44 +0000 |
commit | c20e4ce27434a67bee412858c649145617ccd2dc (patch) | |
tree | d0c91f30fec93c7ec28ead5a1ebc8c4faca3142d /mail | |
parent | 326f54e358b851e149aff64a48d4b9211b2163f9 (diff) | |
download | pkgsrc-c20e4ce27434a67bee412858c649145617ccd2dc.tar.gz |
Add a minor note about SSL certificates in the MESSAGE file, as requested
in PR pkg/22375.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/imap-uw/MESSAGE | 7 | ||||
-rw-r--r-- | mail/imap-uw/Makefile | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/mail/imap-uw/MESSAGE b/mail/imap-uw/MESSAGE index 1c04ffd710e..84036930dc9 100644 --- a/mail/imap-uw/MESSAGE +++ b/mail/imap-uw/MESSAGE @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.1 2001/11/01 01:00:12 zuntum Exp $ +$NetBSD: MESSAGE,v 1.2 2003/09/16 19:16:44 jmmv Exp $ Add the following to /etc/services (if not already there): @@ -18,6 +18,11 @@ Add the following to /etc/inetd.conf: pop3 stream tcp nowait root ${PREFIX}/libexec/ipop3d ipop3d pop3s stream tcp nowait root ${PREFIX}/libexec/ipop3d ipop3d +In order to use SSL, you will need to configure a certificate and store it +in the ${SSLCERTS} directory, using the imapd.pem name. +If you want to use an existing certificate, say from Apache, just copy it +there (you may need to concatenate .key and .crt files together). + To put the changes into effect, make inetd reload its configuration: On NetBSD 1.5 or later: /etc/rc.d/inetd reload diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index d89b0ae6a14..fe73f702289 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.68 2003/09/13 18:31:32 kim Exp $ +# $NetBSD: Makefile,v 1.69 2003/09/16 19:16:44 jmmv Exp $ # ATTENTION: # The Kerberos support in this software is known to be problematic. If you # upgrade this package you *must* test it on a system *without* Kerberos @@ -58,6 +58,7 @@ CCLIENT_MFILES= src/imapd/Makefile \ src/mtest/Makefile \ src/osdep/unix/Makefile +MESSAGE_SUBST+= SSLCERTS="${SSLCERTS}" PLIST_SUBST+= CCLIENT_MAJOR="${CCLIENT_MAJOR}" PLIST_SUBST+= CCLIENT_MINOR="${CCLIENT_MINOR}" |