If you'd like to populate a user from LDAP without having them log in, you can use the populate_user API[1], which was added by request in 1.0.3. There is currently no way to scan the LDAP directory and pre-populate all possible users, although you should be able to whip something like that up fairly quickly if you'd like.
[1] http://packages.python.org/django-auth-ldap/#django_auth_ldap.backend.LDAPBackend.populate_user
connection = ldap.initialize(uri)
connection.simple_bind_s(dn, password)
results = connection.search_s(base_dn, scope, filterstr)
Sent from my iPhone
Upstream is very helpful and responsive. I even managed to get a small patch merged in it. Very well written code.
http://opensource.bolloretelecom.eu/projects/django-ldapdb/
Sent from my iPhone