2001-02-12 07:42:58 +01:00
|
|
|
The ipop2d, ipop3d, and imapd daemons should be invoked by your
|
|
|
|
/etc/inetd.conf file with lines such as:
|
|
|
|
|
|
|
|
pop2 stream tcp nowait root /usr/local/libexec/ipop2d ipop2d
|
|
|
|
pop3 stream tcp nowait root /usr/local/libexec/ipop3d ipop3d
|
|
|
|
imap4 stream tcp nowait root /usr/local/libexec/imapd imapd
|
|
|
|
|
2001-04-25 07:43:33 +02:00
|
|
|
If PAM authentication support has been compiled in you will need to add
|
2001-04-05 05:21:41 +02:00
|
|
|
something like the following lines to /etc/pam.conf (PAM authentication is
|
|
|
|
default):
|
2001-02-12 07:42:58 +01:00
|
|
|
|
2001-04-25 07:43:33 +02:00
|
|
|
imap auth required pam_unix.so
|
2001-02-12 07:42:58 +01:00
|
|
|
imap account required pam_unix.so try_first_pass
|
2001-04-25 07:43:33 +02:00
|
|
|
imap session required pam_deny.so
|
|
|
|
pop3 auth required pam_unix.so
|
2001-04-05 05:21:41 +02:00
|
|
|
pop3 account required pam_unix.so try_first_pass
|
2001-04-25 07:43:33 +02:00
|
|
|
pop3 session required pam_deny.so
|
|
|
|
|
|
|
|
The pam_unix module does not have session support, so we do not use it for
|
|
|
|
session management. Be sure to read up on pam.conf(5).
|
2002-12-23 04:27:48 +01:00
|
|
|
|
|
|
|
===> NB: IMAP-UW now rejects non-encrypted logins by default. To change this
|
|
|
|
===> behaviour, recompile and reinstall cclient and imap-uw ports with one of
|
|
|
|
===> the following make variables defined:
|
|
|
|
|
|
|
|
WITHOUT_SSL - build without SSL/encryption support.
|
|
|
|
WITH_SSL_AND_PLAINTEXT - build with SSL/encryption support, but allow
|
|
|
|
non-encrypted logins.
|