aboutsummaryrefslogtreecommitdiff
path: root/mail/imap-uw/pkg-message
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2001-04-25 05:43:33 +0000
committerDoug Barton <dougb@FreeBSD.org>2001-04-25 05:43:33 +0000
commit79ba115da82388d097ef5d5db6c167e5d063b949 (patch)
tree86b577dbeb2192714b5deb3eaaa281b2f55c819d /mail/imap-uw/pkg-message
parente62943f72a39c6ab60be0518e1e1aa1af33f3f12 (diff)
Update to 0104241750. The maintainer submitted an update for the previous
version, however they _just_ updated the version today. The only thing I did differently from the maintainer's patch was to regen patch-ai. PR: ports/26808 Submitted by: Anders Nordby <anders@fix.no> (maintainer)
Notes
Notes: svn path=/head/; revision=41887
Diffstat (limited to 'mail/imap-uw/pkg-message')
-rw-r--r--mail/imap-uw/pkg-message13
1 files changed, 8 insertions, 5 deletions
diff --git a/mail/imap-uw/pkg-message b/mail/imap-uw/pkg-message
index 550396dfa8e4..d3dabd93576a 100644
--- a/mail/imap-uw/pkg-message
+++ b/mail/imap-uw/pkg-message
@@ -5,13 +5,16 @@ 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
+If PAM authentication support has been compiled in you will need to add
something like the following lines to /etc/pam.conf (PAM authentication is
default):
-imap auth required pam_unix.so try_first_pass
+imap auth required pam_unix.so
imap account required pam_unix.so try_first_pass
-imap session required pam_unix.so try_first_pass
-pop3 auth required pam_unix.so try_first_pass
+imap session required pam_deny.so
+pop3 auth required pam_unix.so
pop3 account required pam_unix.so try_first_pass
-pop3 session required pam_unix.so try_first_pass
+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).