Displaying 2 results from an estimated 2 matches for "no_ccache".
Did you mean:
no_cache
2007 Mar 08
1
dovecot sasl auth (pam) + postfix doesn't work...
...en {
client {
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}
}
dict {
}
plugin {
}
--------------------------------
-----/etc/pam.d/dovecot------
auth required pam_krb5.so no_ccache ignore_root debug
account required pam_permit.so
-----------------------------
from syslog i only get:
Mar 8 10:52:38 muletto dovecot: auth(default): client in: AUTH^I1^Iplain^Iservice=smtp^Iresp=<hidden>
Mar 8 10:52:38 muletto dovecot: auth(default): passdb(username at MYCORP.LOCAL,maste...
2005 Nov 11
0
pam_krb5 pam_sm_authenticate question
...was looking at the pam_krb5.c code and noticed that for authentication
to succeed getpwnam() has to succeed.
Previously I had setup a web site using mod_auth_pam to authenticate
against an active directory (AD) server using a pam config like:
# auth
auth required pam_krb5.so no_ccache no_warn
# account
account required pam_permit.so
Using security/pam_krb5 this was OK. I didn't need to have AD users in
my local /etc/passwd for authentication to be successful. This is not
possible using FreeBSD's pam_krb5.so because of the getpwnam in the
authentication...