__manifest__.py 706 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'CRM Mail Plugin',
  5. 'version': '1.0',
  6. 'category': 'Sales/CRM',
  7. 'sequence': 5,
  8. 'summary': 'Turn emails received in your mailbox into leads and log their content as internal notes.',
  9. 'description': "Turn emails received in your mailbox into leads and log their content as internal notes.",
  10. 'website': 'https://www.odoo.com/app/crm',
  11. 'depends': [
  12. 'crm',
  13. 'mail_plugin',
  14. ],
  15. 'data': [
  16. 'views/crm_mail_plugin_lead.xml',
  17. 'views/crm_lead_views.xml'
  18. ],
  19. 'installable': True,
  20. 'auto_install': True,
  21. 'license': 'LGPL-3',
  22. }