summaryrefslogtreecommitdiff
path: root/mail/courier-imap
diff options
context:
space:
mode:
authorOliver Lehmann <oliver@FreeBSD.org>2004-11-15 19:10:40 +0000
committerOliver Lehmann <oliver@FreeBSD.org>2004-11-15 19:10:40 +0000
commit958eb62757a1ffdd5fe0f77544c9246cfa0d51cd (patch)
tree27aa5cf3ba2ac160f3e0b7ffb909b96bc2315f71 /mail/courier-imap
parentUpdate to 0.6.5 (diff)
adjust the message what to do, to get courier-imap working with pam on FreeBSD >=5
Notes
Notes: svn path=/head/; revision=121678
Diffstat (limited to 'mail/courier-imap')
-rw-r--r--mail/courier-imap/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/mail/courier-imap/Makefile b/mail/courier-imap/Makefile
index 043357e62858..a83ebf01dadc 100644
--- a/mail/courier-imap/Makefile
+++ b/mail/courier-imap/Makefile
@@ -226,10 +226,17 @@ post-install:
@${ECHO_MSG} "in ${CONFDIR}."
@${ECHO_MSG} ""
@${ECHO_MSG} "In case you use authpam, you should put the following lines"
- @${ECHO_MSG} "in your /etc/pam.conf or /etc/pam.d/imap"
+.if ${OSVERSION} >= 500000
+ @${ECHO_MSG} "in your /etc/pam.d/imap"
+ @${ECHO_MSG} "auth required pam_unix.so try_first_pass"
+ @${ECHO_MSG} "account required pam_unix.so try_first_pass"
+ @${ECHO_MSG} "session required pam_permit.so"
+.else
+ @${ECHO_MSG} "in your /etc/pam.conf"
@${ECHO_MSG} "imap auth required pam_unix.so try_first_pass"
@${ECHO_MSG} "imap account required pam_unix.so try_first_pass"
@${ECHO_MSG} "imap session required pam_permit.so"
+.endif
@${ECHO_MSG} ""
@${ECHO_MSG} "In case you are upgrading an existing Installation, you need to run"
@${ECHO_MSG} "'make install-configure' to update your old configuration files."