diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2004-11-15 19:10:40 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2004-11-15 19:10:40 +0000 |
commit | 958eb62757a1ffdd5fe0f77544c9246cfa0d51cd (patch) | |
tree | 27aa5cf3ba2ac160f3e0b7ffb909b96bc2315f71 /mail/courier-imap/Makefile | |
parent | 8baded03eb7bf8533a2df5b6e5f9e90350b46477 (diff) | |
download | ports-958eb62757a1ffdd5fe0f77544c9246cfa0d51cd.tar.gz ports-958eb62757a1ffdd5fe0f77544c9246cfa0d51cd.zip |
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/Makefile')
-rw-r--r-- | mail/courier-imap/Makefile | 9 |
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." |