views:

758

answers:

2

I'm working on a Django-based application in a corporate environment and would like to use the existing Active Directory system for authentication of users (so they don't get yet another login/password combo). I would also like to continue to use Django's user authorization / permission system to manage user capabilities.

Does anyone have a good example of this?

+4  A: 

How about that? Did you try that one?

http://www.djangosnippets.org/snippets/501/

lpfavreau
+3  A: 

Here's another more recent snippet (July 2008):

[http://www.djangosnippets.org/snippets/901/]

Jeff Bauer