You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
813 B

  1. # -*- coding: utf-8 -*-
  2. # © Daniel Reis (https://launchpad.com/~dreis-pt)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
  4. {
  5. 'name': "LDAP mapping for user name and e-mail",
  6. 'version': "10.0.1.0.0",
  7. 'depends': ["auth_ldap"],
  8. 'author': "Daniel Reis (https://launchpad.com/~dreis-pt),"
  9. "Odoo Community Association (OCA)",
  10. 'license': 'AGPL-3',
  11. 'description': """\
  12. Allows to define the LDAP attributes to use to retrieve user name and e-mail
  13. address.
  14. The default attribute used for the name is "cn".
  15. For Active Directory, you might prefer to use "displayName" instead.
  16. AD also supports the "mail" attribute, so it can be mapped into OpenERP.
  17. """,
  18. 'category': "Tools",
  19. 'data': [
  20. 'views/users_ldap_view.xml',
  21. ],
  22. 'installable': True,
  23. }