blob: a2687d0f55dabf17688186d35f9e424d7d74ca6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
If PAM authentication support has been compiled in you may need to add the
following lines to /etc/pam.conf:
imap auth required pam_unix.so try_first_pass
imap account required pam_unix.so try_first_pass
pop auth required pam_unix.so try_first_pass
pop account required pam_unix.so try_first_pass
|