Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / libpam / modules / pam_userdb / README
1 # $FreeBSD: src/contrib/libpam/modules/pam_userdb/README,v 1.1.1.1.2.2 2001/06/11 15:28:33 markm Exp $
2 pam_userdb:
3         Look up users in a .db database and verify their password against
4         what is contained in that database.
5
6 RECOGNIZED ARGUMENTS:
7         debug           write a message to syslog indicating success or
8                         failure.
9
10         db=[path]       use the [path] database for performing lookup. There
11                         is no default; the module will return PAM_IGNORE if
12                         no database is provided.
13                         
14         icase           make the password verification to be case insensitive
15                         (ie when working with registration numbers and such)
16
17         dump            dump all the entries in the database to the log (eek,
18                         don't do this by default!)
19
20 MODULE SERVICES PROVIDED:
21         auth            _authetication and _setcred (blank)
22
23 EXAMPLE USE:
24         auth  sufficient pam_userdb.so icase db=/tmp/dbtest.db
25
26 AUTHOR:
27         Cristian Gafton <gafton@redhat.com>
28
29
30
31 $Id: README,v 1.1.1.1 2000/06/20 22:12:09 agmorgan Exp $