summaryrefslogtreecommitdiff
path: root/addons/iap_mail/__manifest__.py
blob: 340908f12484c95f4d4fef7a1bb4c3b3ed2a5795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.


{
    'name': "IAP / Mail",
    'summary': """Bridge between IAP and mail""",
    'description': """Bridge between IAP and mail""",
    'category': 'Hidden/Tools',
    'version': '1.0',
    'depends': [
        'iap',
        'mail',
    ],
    'application': False,
    'installable': True,
    'auto_install': True,
    'data': [
        'views/mail_templates.xml',
    ],
    'license': 'LGPL-3',
}