diff options
Diffstat (limited to 'mail/imap-uw/pkg/MESSAGE')
-rw-r--r-- | mail/imap-uw/pkg/MESSAGE | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mail/imap-uw/pkg/MESSAGE b/mail/imap-uw/pkg/MESSAGE index 0ff7c64b368..41e0f16a23c 100644 --- a/mail/imap-uw/pkg/MESSAGE +++ b/mail/imap-uw/pkg/MESSAGE @@ -1,16 +1,23 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.5 2000/05/19 03:58:58 jlam Exp $ +$NetBSD: MESSAGE,v 1.6 2000/12/17 18:25:44 jlam Exp $ Add the following to /etc/services: - imap 143/tcp # Internet Message Access Protocol - imap 143/udp + + imap 143/tcp # Internet Message Access Protocol + imap 143/udp + imaps 993/tcp # imap4 protocol over TLS/SSL + imaps 993/udp # imap4 protocol over TLS/SSL + pop3s 995/tcp # pop3 protocol over TLS/SSL (was spop3) + pop3s 995/udp # pop3 protocol over TLS/SSL (was spop3) Add the following to /etc/inetd.conf: + imap stream tcp nowait root @PREFIX@/libexec/imapd imapd + imaps stream tcp nowait root @PREFIX@/libexec/imapd imapd pop2 stream tcp nowait root @PREFIX@/libexec/ipop2d ipop2d pop3 stream tcp nowait root @PREFIX@/libexec/ipop3d ipop3d + pop3s stream tcp nowait root @PREFIX@/libexec/ipop3d ipop3d To put the changes into effect, reboot the machine or "kill -HUP" your inetd. - =========================================================================== |