__manifest__.py 680 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Mail Plugin',
  5. 'version': '1.0',
  6. 'category': 'Sales/CRM',
  7. 'sequence': 5,
  8. 'summary': 'Allows integration with mail plugins.',
  9. 'description': "Integrate Odoo with your mailbox, get information about contacts directly inside your mailbox, log content of emails as internal notes",
  10. 'depends': [
  11. 'web',
  12. 'contacts',
  13. 'iap'
  14. ],
  15. 'data': [
  16. 'views/mail_plugin_login.xml',
  17. 'views/res_partner_iap_views.xml',
  18. 'security/ir.model.access.csv',
  19. ],
  20. 'installable': True,
  21. 'license': 'LGPL-3',
  22. }