2

I have successfully setup ProFTPD to use mod_sql for authentication. But I can still login with linux user's credentials, even though I've set AuthPAM off. How can I make ProFTPD to not use PAM?

Castaglia
  • 3,349
  • 3
  • 21
  • 42
Markus Hedlund
  • 1,127
  • 2
  • 19
  • 33

3 Answers3

2

Try restricting authentication to just sql

AuthOrder mod_sql.c

user9517
  • 115,471
  • 20
  • 215
  • 297
1

Use both AuthPAM and AuthOrder, like this:

AuthOrder       mod_sql.c
AuthPAM         off
Luke404
  • 5,826
  • 4
  • 47
  • 58
0

try:

AuthPAMAuthoritative            off
bindbn
  • 5,211
  • 2
  • 26
  • 24
  • `Fatal: unknown configuration directive 'AuthPAMAuthoritative'`. Which is weird, the docs says it should exist from 1.2.0pre3. I'm using 1.3.2 – Markus Hedlund Sep 27 '10 at 15:33