mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
12 lines
268 B
Python
12 lines
268 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import ldap
|
|
import ldap.modlist as modlist
|
|
import yunohost_ldap
|
|
|
|
# Initialize LDAP
|
|
yldap = yunohost_ldap.YunoHostLDAP()
|
|
|
|
def user_list(args):
|
|
result = yldap.search('ou=users,dc=gavoty,dc=org', attrs=['mail', 'dn', 'cn'])
|
|
print(result)
|