45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Mailcow Integration',
|
|
'version': '17.0.1.0.1',
|
|
'category': 'Administration',
|
|
'summary': 'Module for integrating Mailcow email server with Odoo.',
|
|
'description': """
|
|
Mailcow Integration
|
|
|
|
This module integrates the Mailcow email server with Odoo, providing a seamless email communication solution for your Odoo instance. It allows for syncing of mailboxes and email aliases from Mailcow to Odoo and vice versa.
|
|
|
|
Main Features:
|
|
Synchronize Mailcow mailboxes with Odoo users.
|
|
Synchronize Mailcow email aliases with Odoo.
|
|
Configuration of Mailcow API credentials in Odoo settings.
|
|
Automatically create and manage mailboxes and aliases in Mailcow when they are created in Odoo.
|
|
""",
|
|
'sequence': 10,
|
|
'license': 'LGPL-3',
|
|
'author': 'Bemade',
|
|
'website': 'https://www.bemade.org',
|
|
'depends': [
|
|
'hr',
|
|
'mail',
|
|
'bemade_user_password_bundle'
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/res_config_settings_views.xml',
|
|
'views/mailcow_mailbox_views.xml',
|
|
'views/mailcow_alias_views.xml',
|
|
'views/mailcow_blacklist_views.xml',
|
|
'views/res_users_views.xml',
|
|
],
|
|
"assets": {
|
|
"web.assets_backend": [
|
|
# BV: Commented out the following lines to avoid errors when installing the module.
|
|
# "bemade_mailcow_integration/static/src/js/mailcow.js",
|
|
# "bemade_mailcow_integration/static/src/xml/mailcow_templates.xml",
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False
|
|
}
|