info.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-License-Identifier: AGPL-3.0-or-later
  5. -->
  6. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  7. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  8. <id>contactsinteraction</id>
  9. <name>Contacts Interaction</name>
  10. <summary>Manages interaction between accounts and contacts</summary>
  11. <description>Collect data about accounts and contacts interactions and provide an address book for the data</description>
  12. <version>1.12.0</version>
  13. <licence>agpl</licence>
  14. <author>Christoph Wurst</author>
  15. <author homepage="https://github.com/nextcloud/groupware">Nextcloud Groupware Team</author>
  16. <namespace>ContactsInteraction</namespace>
  17. <types>
  18. <dav/>
  19. </types>
  20. <category>integration</category>
  21. <category>social</category>
  22. <bugs>https://github.com/nextcloud/server/issues</bugs>
  23. <dependencies>
  24. <nextcloud min-version="31" max-version="31"/>
  25. </dependencies>
  26. <background-jobs>
  27. <job>OCA\ContactsInteraction\BackgroundJob\CleanupJob</job>
  28. </background-jobs>
  29. <sabre>
  30. <address-book-plugins>
  31. <plugin>OCA\ContactsInteraction\AddressBookProvider</plugin>
  32. </address-book-plugins>
  33. </sabre>
  34. </info>