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.

info.xml 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0"?>
  2. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  4. <id>user_ldap</id>
  5. <name>LDAP user and group backend</name>
  6. <summary>This application enables administrators to connect Nextcloud to an LDAP-based user directory.</summary>
  7. <description>This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.
  8. A user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation.
  9. </description>
  10. <version>1.11.0</version>
  11. <licence>agpl</licence>
  12. <author>Dominik Schmidt</author>
  13. <author>Arthur Schiwon</author>
  14. <namespace>User_LDAP</namespace>
  15. <types>
  16. <authentication/>
  17. </types>
  18. <documentation>
  19. <admin>admin-ldap</admin>
  20. </documentation>
  21. <category>integration</category>
  22. <bugs>https://github.com/nextcloud/server/issues</bugs>
  23. <dependencies>
  24. <lib>ldap</lib>
  25. <nextcloud min-version="21" max-version="21"/>
  26. </dependencies>
  27. <background-jobs>
  28. <job>OCA\User_LDAP\Jobs\UpdateGroups</job>
  29. <job>OCA\User_LDAP\Jobs\CleanUp</job>
  30. <job>OCA\User_LDAP\Jobs\Sync</job>
  31. </background-jobs>
  32. <repair-steps>
  33. <post-migration>
  34. <step>OCA\User_LDAP\Migration\UUIDFixInsert</step>
  35. <step>OCA\User_LDAP\Migration\RemoveRefreshTime</step>
  36. </post-migration>
  37. </repair-steps>
  38. <commands>
  39. <command>OCA\User_LDAP\Command\CheckUser</command>
  40. <command>OCA\User_LDAP\Command\CreateEmptyConfig</command>
  41. <command>OCA\User_LDAP\Command\DeleteConfig</command>
  42. <command>OCA\User_LDAP\Command\Search</command>
  43. <command>OCA\User_LDAP\Command\SetConfig</command>
  44. <command>OCA\User_LDAP\Command\ShowConfig</command>
  45. <command>OCA\User_LDAP\Command\ShowRemnants</command>
  46. <command>OCA\User_LDAP\Command\TestConfig</command>
  47. </commands>
  48. <settings>
  49. <admin>OCA\User_LDAP\Settings\Admin</admin>
  50. <admin-section>OCA\User_LDAP\Settings\Section</admin-section>
  51. </settings>
  52. </info>