I've just switched an internal django site to the multi-auth branch and I can authenticate nicely using LDAP. Took all of ten minutes to implement. For the curious here is the code I used (based off authentication.txt in the docs): import ldap from django.conf import settings from django.contrib.auth.models import User, check_password class LdapBackend: """Authenticate using LDAP """ def authentic