Odoo18-Base/addons/project_mail_plugin/__manifest__.py
2025-01-06 10:57:38 +07:00

23 lines
633 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Project Mail Plugin',
'version': '1.0',
'category': 'Services/Project',
'sequence': 5,
'summary': 'Integrate your inbox with projects',
'description': "Turn emails received in your mailbox into tasks and log their content as internal notes.",
'data': [
'views/project_task_views.xml'
],
'website': 'https://www.odoo.com/app/project',
'depends': [
'project',
'mail_plugin',
],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}